Open Liberty中有没有"feature"连接IBM MQ,相当于Liberty Profile中的wmqJmsClient-2.0?

Is there a "feature" in Open Liberty to connect to IBM MQ, equivalent to wmqJmsClient-2.0 in Liberty Profile?

IBM WebSphere Liberty Profile提供"wmqJmsClient-2.0"IBM MQ交互的功能

是否有 Open Liberty 的等效项?

[更新]

如果没有(看起来),如何将 Open Liberty 连接到 IBM MQ?

我是否应该基于 IBM MQ 官方 RAR 文件(当前 "9.1.0.0-IBM-MQ-Java-InstallRA.jar")开发一个与 WLP 中可用的等效的 Open Liberty "feature"?

或者在 Open Liberty 中是否有 "generic" 配置此类连接的方法?

(我想这个问题出现在其他队列管理器中,例如 ActiveMQArtemisOpenMQ 等)

OpenLiberty 具有 jms-2.0 功能,它允许您配置 JCA 资源适配器,它提供 JMS,例如 WebSphere MQ resource adapter.

server.xml 中的配置如下所示,

<server>
  <featureManager>
    <feature>jms-2.0</feature>
    <feature>jndi-1.0</feature>
    <feature>servlet-3.1</feature>
  </featureManager>

  <resourceAdapter id="wmqjmsra" location="C:/adapters/wmq/wmq.jmsra.rar"/>

  <jmsConnectionFactory jndiName="jms/cf1">
    <properties.wmqjmsra .../>
  </jmsConnectionFactory>

  ...