博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tomee.xml
阅读量:5351 次
发布时间:2019-06-15

本文共 964 字,大约阅读时间需要 3 分钟。

部署

 

containers (EJB)

  • Session bean
  • Message driven bean

resources

  • DataSource
  • ActiveMQResourceAdapter
  • javax.jms.ConnectionFactory
  • javax.jms.Queue
  • javax.jms.Topic

Deployments(可多个)

To point to a directory 

  • jars should contain 'META-INF/ejb-jar.xml' 
  • relative directory to %TOMCAT_HOME%

 

To include a single jar

 查找使用

injected

public class JmsClient {    @Resource(name="MyQueue")    private Queue queue;    public void sendMessage() {        // implementation here...    }}

 

looked up via JNDI

openejb:Resources/MyQueue

Queue myQueue = (Queue) ctx.lookup("openejb:Resources/MyQueue");

---------------------- tomee.xml       end        -------------

 

----------------------resources.xml start -------------------

还可以通过 openejb:Resource/appname/resource id 引入.war 中的资源(include a WEB-INF/resources.xml)详细见官网

----------------------resources.xml end -------------------

转载于:https://www.cnblogs.com/zno2/p/5968783.html

你可能感兴趣的文章
Git入门--Git&GitHub&Gitee
查看>>
install and compile boost for windows
查看>>
[ckeditor系列]CKEDITOR 通过SERVLET 打开上传功能
查看>>
selenium unittest单元测试框架2(多个文件)
查看>>
0. Design Principle
查看>>
ThinkTemplate模板引擎的设计和使用方法
查看>>
fast-ai lesson1 错误处理(CNN创建)
查看>>
【HDU】1166 敌兵布阵
查看>>
Java集合之ArrayList和LinkedList的实现原理以及Iterator详解
查看>>
Android开机自启动程序
查看>>
Android在layout xml中使用include
查看>>
Java Collection: List、Set、 Map、 HashMap、 Hashtable、 Vector
查看>>
jquery背景backgroundPosition插件
查看>>
gerrit代码简单备份方案分享
查看>>
工作至今
查看>>
11 定时器
查看>>
Webpack之初识
查看>>
智能查寝数据库设计心得
查看>>
What's the use of @ before the path defination
查看>>
拼接上传文件数据
查看>>