Amazon Ads

2013年8月24日 星期六

[筆記]在GlassFish中建立JMS Physical Destination

為了可以讓一個在Glassfish伺服器上應用程式內執行的message-driven EJB接收訊息,必須對伺服器上的JMS設定做一些調整,第一步就是建立一個JMS Physical Destination。

打開【命令提示字元】切換到Glassfish安裝目錄下的「bin」目錄中,執行「create-jmsdest --desttype queue PSQueueDest」,其中,「--desttype queue」是指要建立的類型為「javax.jms.Queue」,若要建立類型為「javax.jms.Topic」,可以使用指令如:「create-jmsdest --desttype topic MyTopicPhysicalDestination

執行成功後,執行「list-jmsdest」,應可看到剛建立的Physical Destination,如下圖:

2013/08/27發現在GlassFish的Admin Console找到相關設定的地方,如下圖:

請注意版本差別,之前版本好像是在左側選單中【Configuration】下。

參考文件:http://docs.oracle.com/cd/E18930_01/html/821-2416/ablkj.html