不支持 jboss intellij https 管理接口,请禁用它并使用 http 管理接口代替

我正在 IntelliJ idea 中构建一个 spring boot 应用程序并尝试在 JBoss 中部署它。当我为应用程序创建新的 JBoss 配置时,我在底部收到此警告说

尚不支持连接到 HTTPS 管理界面。请禁用它并改用 HTTP 管理界面。

我正在使用 JBoss EAP 6.2.0 和 IntelliJ 2018 以及最新的 Spring Boot 依赖项。我的配置开始但没有连接到服务器,当我在 cmd 上执行 netstat 时,我看到服务器应该监听的端口没有任何监听它们。

有人可以告诉我如何解决这个警告。


扬帆大鱼
浏览 192回答 1
1回答

料青山看我应如是

JBoss 集成不支持 https 连接到管理界面。相关请求:IDEA-144621。作为一种解决方法,您可以更改您的 standalone.xml 以切换到 http 管理:<management-interfaces>...&nbsp; &nbsp; <http-interface security-realm="ManagementRealm" http-upgrade-enabled="true">&nbsp; &nbsp; &nbsp; &nbsp; <socket-binding http="management-http"/> <!-- '-http' instead of '-https' here -->&nbsp; &nbsp; </http-interface></management-interfaces>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java