從行動應用程式存取本地網路中的 JBoss EAP 6 伺服器

從行動應用程式存取本地網路中的 JBoss EAP 6 伺服器

我有一個在 JBoss EAP 6 上運行的 Java 應用程序,我可以使用以下 url 從 chrome 上的移動應用程序“點擊”該應用程序:127.0.0.1:8280/myAwesomeJavaApp/coolService...所以當我打包應用程序時,我使用這樣的 url

192.168.1.64:8280/myAwesomeJavaApp/coolService //this is not working

192.168.1.64 // this gets me to my localhost

(連接到WiFi(測試目的))

我可以存取 localhost 中的所有其他 Apache Web 應用程序,但無法使用 JBoss EAP 6 服務。

我缺什麼?

答案1

使用 -b 0.0.0.0 啟動 Jboss 伺服器

./standalone.sh -b.0.0.0.0 //this binds server to all network interfaces

相關內容