0
我嘗試在「行動EJB3」的例子在GlassFish應用服務器(第2章的例子),它有一個MDB從而未能與JMS資源不創建
JMS resource not created : OrderBillingQueue
我已經創建的連接錯誤部署資源和目的地資源在其他職位的建議,但錯誤依然存在。請幫我解決這個問題。
這裏是在GlassFish中創建的JMS資源的快照
的源代碼的相關部分:MDB
@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName="destinationName", propertyValue="OrderBillingQueue"),
@ActivationConfigProperty(propertyName="destinationType", propertyValue="javax.jms.Queue")
},mappedName = "OrderBillingQueue"
)
public class OrderBillingMDB implements MessageListener {
源的相關部分代碼:資源注入部分
@Resource(name = "jms/QueueConnectionFactory")
private ConnectionFactory connectionFactory;
@Resource(name = "jms/OrderBillingQueue", mappedName="OrderBillingQueue")
private Destination billingQueue;