通过移动应用程序访问本地网络中的 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(测试目的))

我可以访问本地主机中的所有其他 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

相关内容