任何消息選項在Windows OS:Jboss的管理控制檯中沒有顯示下的子系統
我曾嘗試使用獨立全啓動JBoss服務器與出 - * XML文件,在這種情況下,管理控制檯中沒有顯示在任何消息選項。子系統。
任何消息選項在Windows OS:Jboss的管理控制檯中沒有顯示下的子系統
我曾嘗試使用獨立全啓動JBoss服務器與出 - * XML文件,在這種情況下,管理控制檯中沒有顯示在任何消息選項。子系統。
EAP 7.0服務器將帶有嵌入式ActiveMQ服務器。
如果您使用Windows:使用命令提示符啓動Jboss Eap 7.0服務器。 使用-full或full-ha.xml文件從CMD啓動服務器。
$的jboss-EAP-7.0 \ BIN> standalone.bat -c獨立-full.xml
啓動服務器後。去瀏覽器打這個網址。 http://127.0.0.1:9990/
點擊設置選項卡上
- >子系統 - > 「消息 - ActiveMQ的」
- >默認 - >隊列/主題
在這裏,您可以添加或刪除隊列
有這樣做的方法有兩種:
1) command prompt
2) UI
1)Command Prompt:
First start the server
Go to jboss-cli.sh and enter the following commands:
i) connect
ii) jms-queue add --queue-address=test queue --entries=java:/jms/queue/test
iii) You can check the configuration is done in standalone or standalone-full.xml (whatever conf file you are using), go to that file and search for your queue name
2) UI (management console)
1)Start the server and goto localhost:8080 , enter username and pass
2) Goto Configuration - subsystem - messaging and click on add
如果使用JNDI「java:/ jms/queue/test」創建隊列,則只能爲invm連接工廠訪問該隊列。要遠程訪問它,即從遠程機器訪問它,您需要將其標記爲導出,如「java:jboss/exported/jms/queue/test」
歡迎來到SO。這個問題的代碼問題在哪裏? –