指南针 SearchableDynamicProperty 问题
我有一个项目,我使用 hibernate 和指南针进行索引,现在一切正常 @SearchableProperty @SearchableCompoenet
等。
但是当我尝试实现 @SearchableDynamicProperty 时,我遇到了问题
。
I have a project where I am using hibernate with compass for indexing, now everything is working fine with normal @SearchableProperty @SearchableCompoenet
etc.
But I am facing problem when I have tried to implement @SearchableDynamicProperty
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于找到问题并解决了...
:: PROBLEM ::
插入语句未在单个休眠事务内执行,因此这就是它无法为子表条目建立索引的原因。
::RESOLUTION::
在子表上触发插入语句后,以下语句(当然处于同步状态)将更新当前的罗盘索引。
Finally got the issues and resolved it...
:: PROBLEM ::
The insert statement was not performing inside single hibernate transaction, so that's why it was not being able to index the child table entries.
::RESOLUTION::
After firing the insert statement on child tables, following statement (of course in synchronized state) will update the current compass indexes..