是否有可能在ActiveMQ Web控制台中创建只读用户,我浏览了这么多网站并找不到答案。
答案 0 :(得分:0)
是的,您可以参考https://issues.apache.org/jira/browse/AMQ-5388中提到的解决方法。如果您引用的是5.13。+,请像下面的代码片段
一样在jetty.xml中进行更改<bean id="securityConstraintMapping" class="org.eclipse.jetty.security.ConstraintMapping">
<property name="constraint" ref="securityConstraint" />
<property name="pathSpec" value="/api/*,*.jsp" />
</bean>
进行了这些更改,并能够拥有仅具有只读访问权限的用户。