我正在为我的应用程序使用 Wildfly 服务器。我正在通过 intellij 插件运行此服务器。每当我运行此应用程序时,我都会收到一条错误消息
"Error running 'JBoss 9.0.1.Final': Unable to connect to the localhost:8080"
这是我在 intellij 中的配置。
我正在为我的应用程序使用 Wildfly 服务器。我正在通过 intellij 插件运行此服务器。每当我运行此应用程序时,我都会收到一条错误消息
"Error running 'JBoss 9.0.1.Final': Unable to connect to the localhost:8080"
这是我在 intellij 中的配置。
编辑您的standalone.xml,将其添加到其中并重试。
另外,请检查您的 Java 版本。Wildfly 9 使用 Java 7/8,可能需要降级 Java 版本或将 Wildfly 更新到 14 或 15。
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
</interface>
<!-- add the code below -->
<interface name="public">
<any-address/>
</interface>
<interface name="any">
<any-address/>
</interface>
</interfaces>
您可以在此处查看每个版本的最佳版本,这样您就可以毫无问题地启动您的服务器。问候。