在Web应用程序中使用JMS QueueConnectionFactory

时间:2014-12-24 13:55:12

标签: jms websphere

我在Websphere上定义了QueueConnectionFacotry名称jms / testapp / testappQCF。现在如果我想在我的网络应用程序中使用它,我可以直接使用它在下面

@Resource( name="jms/testapp/testappQCF")
private QueueConnectionFactory connectionFactory;

或者我是否需要在web.xml中创建一个条目,如下所示

    <resource-ref>
     <res-ref-name>jms/testapp/testappQCF</res-ref-name>
     <res-type>javax.jms.QueueConnectionFactory</res-type>
    </resource-ref>

0 个答案:

没有答案