我在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>