jboss 不支持intellij https管理界面,请禁用它并改用http管理界面
jboss intellij https management interface not supported, please disable it and use http management interface instead
我正在 IntelliJ idea 中构建一个 spring 引导应用程序并尝试在 JBoss 中部署它。当我为应用程序创建新的 JBoss 配置时,我在底部收到此警告说
尚不支持连接到 HTTPS 管理界面。请禁用它并改用 HTTP 管理界面。
我正在使用 JBoss EAP 6.2.0 和具有最新 spring 启动依赖项的 IntelliJ 2018。我的配置开始但没有连接到服务器,当我在 cmd 上执行 netstat 时,我看到服务器应该监听的端口没有任何监听。
谁能告诉我如何解决这个警告。
JBoss 集成不支持与管理界面的 https 连接。相关请求:IDEA-144621.
作为解决方法,您可以更改 standalone.xml 以切换到 http 管理员:
<management-interfaces>
...
<http-interface security-realm="ManagementRealm" http-upgrade-enabled="true">
<socket-binding http="management-http"/> <!-- '-http' instead of '-https' here -->
</http-interface>
</management-interfaces>
我正在 IntelliJ idea 中构建一个 spring 引导应用程序并尝试在 JBoss 中部署它。当我为应用程序创建新的 JBoss 配置时,我在底部收到此警告说
尚不支持连接到 HTTPS 管理界面。请禁用它并改用 HTTP 管理界面。
我正在使用 JBoss EAP 6.2.0 和具有最新 spring 启动依赖项的 IntelliJ 2018。我的配置开始但没有连接到服务器,当我在 cmd 上执行 netstat 时,我看到服务器应该监听的端口没有任何监听。
谁能告诉我如何解决这个警告。
JBoss 集成不支持与管理界面的 https 连接。相关请求:IDEA-144621.
作为解决方法,您可以更改 standalone.xml 以切换到 http 管理员:
<management-interfaces>
...
<http-interface security-realm="ManagementRealm" http-upgrade-enabled="true">
<socket-binding http="management-http"/> <!-- '-http' instead of '-https' here -->
</http-interface>
</management-interfaces>