如何在 Intellij 中配置 JBoss 绑定地址不是本地主机而是我的 IP?
How can I configure JBoss in Intellij that bind address is not localhost but my IP?
在 Eclipse 中,您可以为 JBoss 运行时设置主机名。但是我在IDEA Intellij中找不到这个配置
netstat -lnt
显示
tcp 0 0 127.0.0.1:8080 0.0.0.0:* 听
- Intellij > 运行 > 编辑配置
- Select 你的 JBoss 配置
- Startup/Connection>启动脚本(Select你的运行模式运行/调试/覆盖)
- 取消选中 "use default"
- $JBOSS_HOME/bin/run.sh -c default -b 0.0.0.0
"-b 0.0.0.0" 在任何接口上绑定 JBoss。
您也可以在 IntelliJ 中简单地执行此操作:
- Select
Run
> IDE 菜单中的 Edit Configurations
- Select 你的 JBoss 作为
Application server
- 将
-Djboss.bind.address=0.0.0.0
添加到您的VM Options
在 Eclipse 中,您可以为 JBoss 运行时设置主机名。但是我在IDEA Intellij中找不到这个配置
netstat -lnt
显示
tcp 0 0 127.0.0.1:8080 0.0.0.0:* 听
- Intellij > 运行 > 编辑配置
- Select 你的 JBoss 配置
- Startup/Connection>启动脚本(Select你的运行模式运行/调试/覆盖)
- 取消选中 "use default"
- $JBOSS_HOME/bin/run.sh -c default -b 0.0.0.0
"-b 0.0.0.0" 在任何接口上绑定 JBoss。
您也可以在 IntelliJ 中简单地执行此操作:
- Select
Run
> IDE 菜单中的Edit Configurations
- Select 你的 JBoss 作为
Application server
- 将
-Djboss.bind.address=0.0.0.0
添加到您的VM Options