带有 IntelliJ 的 Websphere 服务器中 localConnector-1.0 功能的用途

Purpose of localConnector-1.0 feature in Websphere server with IntelliJ

我正在学习设置 WebSphere Liberty Server 的教程 Here,但我并不真正了解该教程的一部分内容。我完成了教程并且效果很好。

在第 3 步,它让我用这两行修改 server.xml,但我真的不知道它们做了什么。

<applicationMonitor updateTrigger="mbean" />

<feature>localConnector-1.0</feature>

我找到了 localConnector-1.0 的文档,但有点难以理解 https://www.ibm.com/support/knowledgecenter/en/SSEQTP_liberty/com.ibm.websphere.liberty.autogen.nd.doc/ae/rwlp_feature_localConnector-1.0.html

我认为 localConnector 允许 IntelliJ 以某种方式 运行 服务器,但我不知道 updateTrigger="mbean" 做了什么。

如果有人能解释一下就好了。谢谢!

localConnector-1.0 功能部件在 Liberty 上启用本地 JMX 连接器,以便 JMX 客户端 (IntelliJ) 可以连接和管理 Liberty。 您可以在此处找到有关该功能的更多文档:https://www.ibm.com/support/knowledgecenter/en/SSEQTP_liberty/com.ibm.websphere.wlp.doc/ae/twlp_admin_localconnector.html

updateTrigger="mbean" 将应用程序更新设置为仅在由 mbean 调用触发时发生(而默认设置是轮询更改)。 您可以在此处找到更多文档: https://www.ibm.com/support/knowledgecenter/SSAW57_liberty/com.ibm.websphere.wlp.nd.multiplatform.doc/ae/twlp_setup_dyn_upd.html