Apache Jackrabbit - 在 Glassfish v3 中部署时覆盖 Jackrabbit 配置参数
我感觉自己像个白痴,但是在哪里/如何覆盖 Jackrabbit 配置参数 何时部署在 Glassfish v3 中?我尝试在 Glassfish Admin -> 设置
面板,但似乎没有任何影响。rep.home
企业服务器->系统属性
- 我的房产名称正确吗?
- 这不是合适的地方吗 这?
顺便说一句 - 我正在使用与 Sling API 捆绑在一起的 Jackrabbit 版本。
I feel like an idiot, but where/how do I override the Jackrabbit configuration parameters when deployed in Glassfish v3? I've tried setting rep.home
in the Glassfish Admin -> Enterprise Server -> System Properties
panel, but it doesn't seem to have any affect.
- Do I have the property name correct?
- Is this not the right place to do
this?
BTW - I'm using the Jackrabbit release bundled with the Sling API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当读取repository.xml 配置文件时,Jackrabbit 存储库实现会自动设置您的链接指示的 Jackrabbit 配置参数。
要在 Sling 中重新定位 Jackrabbit 存储库,您可以设置“sling.repository.home”框架属性(部署 Sling 的 OSGi 框架的属性)。
或者,您可以在 Web 控制台“配置管理器”页面中编辑存储库服务器配置。选择类似 org.apache.sling.jcr.jackrabbit.server.SlingServerRepository.XXX 的配置,其中“xxx”看起来像 UUID 字符串。在该配置中更改存储库主路径。但请注意,这不会移动现有的存储库目录,而只是告诉 Sling 使用不同的位置。
The Jackrabbit Configuration Parameters indicated by your link are automatically set by the Jackrabbit Repository implementation when reading the repository.xml configuration file.
What you can do to relocate the Jackrabbit Repository inside Sling is either set the "sling.repository.home" framework property (of the OSGi framework into which Sling is deployed).
Alternatively you can edit the Repository Server configuration in the Web Console Configuration Manager page. Select the configuration labeled something like org.apache.sling.jcr.jackrabbit.server.SlingServerRepository.XXX where "xxx" looks like UUID string. In that configuration change the Repository Home path. Please note, though, that this will not move your existing repository directory but just tell Sling to use a different location.