指南针 SearchableDynamicProperty 问题

发布于 2024-11-08 18:44:28 字数 167 浏览 1 评论 0原文

我有一个项目,我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坏尐絯℡ 2024-11-15 18:44:28

终于找到问题并解决了...

:: PROBLEM ::

插入语句未在单个休眠事务内执行,因此这就是它无法为子表条目建立索引的原因。

::RESOLUTION::

在子表上触发插入语句后,以下语句(当然处于同步状态)将更新当前的罗盘索引。

compassGps.index(Test.class);

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..

compassGps.index(Test.class);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文