我正在 IntelliJ idea 中构建一个 spring boot 应用程序并尝试在 JBoss 中部署它。当我为应用程序创建新的 JBoss 配置时,我在底部收到此警告说尚不支持连接到 HTTPS 管理界面。请禁用它并改用 HTTP 管理界面。我正在使用 JBoss EAP 6.2.0 和 IntelliJ 2018 以及最新的 Spring Boot 依赖项。我的配置开始但没有连接到服务器,当我在 cmd 上执行 netstat 时,我看到服务器应该监听的端口没有任何监听它们。有人可以告诉我如何解决这个警告。
1 回答
![?](http://img1.sycdn.imooc.com/5458655200013d9802200220-100-100.jpg)
料青山看我应如是
TA贡献1772条经验 获得超8个赞
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>
添加回答
举报
0/150
提交
取消