问题
我想用 SSL 设置 Artemis
我的 etc/bootstrap.xml 文件如下所示:
- <broker xmlns="http://activemq.org/schema">
- <web bind="https://0.0.0.0:8161" path="web" keystorePath="keystore.p12" keystorePassword="123" truststorePath="trusstore.p12" truststorePassword="123">
- <app url="activemq-branding" war="activemq-branding.war"/>
- <app url="artemis-plugin" war="artemis-plugin.war"/>
- <app url="console" war="console.war"/>
- </web>
- </broker>
复制代码
我确实喜欢它写在文档中,但是当我运行 artemis 服务时,我得到一个错误:
- javax.xml.bind.UnmarshalException
- - with linked exception:
- [org.xml.sax.SAXParseException; lineNumber: 28; columnNumber: 188; cvc-complex-type.3.2.2: Attribute 'keystorePath' is not allowed to appear in element 'web'.]
复制代码
我不明白我做错了什么?
回答
我使用以下方法修复了此错误:keystrepath、keystrepassword、trustStorePath 和 trustStorePassword。
|