1

WebSphere Liberty 中的嵌入式消息传递服务器支持对队列的访问控制。在 中server.xml,可以在messagingEngine部分下添加以下结构:

<messagingSecurity>
       <role name="queueAccess">
          <group name="admin"></group>
          <queuePermission queueRef="myQueues.queue_1">
             <action>ALL</action>
          </queuePermission>
       </role>
</messagingSecurity>

这将授予管理员用户对队列的访问权限,myQueues.queue_1但是,如果我想授予对多个队列的访问权限myQueues.queue_1myQueues.queue_n似乎我必须为每个队列创建一个部分。

我尝试了几个通配符,例如myQueues*或正则表达式myQueues.* - 但没有运气。我一直找不到任何有关使用通配符的文档,所以有人可以确认或否认在这种情况下是否可以使用通配符吗?

4

1 回答 1

0

据我所见(深入研究 openliberty 的代码),它没有通配符处理程序。

我知道 jboss 使用这个通配符进行 jms 安全处理:

. (a single period) Denotes the space between words in a wildcard expression.
# (a pound or hash symbol) Matches any sequence of zero or more words.
* (an asterisk) Matches a single word.

也许对自由社区有所暗示;)

于 2018-09-18T20:34:16.587 回答