指定 hibernate 搜索中索引文件的位置

发布于 2024-11-08 04:15:32 字数 257 浏览 0 评论 0原文

嗨,大家好 我正在使用休眠搜索 我想指定索引文件的位置 现在我正在项目内部建立索引 通过以下内容:

@Indexed(index="indexes/myDomainClass")

但我想知道如何指定应用程序外部位置的索引 我尝试过类似的方法

@Indexed(index="/home/indexes/myDomainClass")

,但没有成功,有什么想法吗?

hi guys
i am using hibernate search
and i want to specify the location for index files
right now i am indexing inside the project
by the following:

@Indexed(index="indexes/myDomainClass")

but i was wondering how to specify the index to a location outside the app
i tried something like

@Indexed(index="/home/indexes/myDomainClass")

but it didn't work, any ideas ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

动次打次papapa 2024-11-15 04:15:32

我使用 hibernate.search.default.indexBase 属性(在 persistence.xml 或 hibernate.cfg.xml 中)来指定索引的基目录。

使用 AnnotationSessionFactoryBean(或任何会话工厂 bean)时,您可以通过以下方式设置各种属性:(

<property name="hibernateProperties">
    <util:properties>
          <prop key="hibernate.search.default.indexBase">value</prop>
    </util:properties>
</property>

您需要 util: 命名空间)

xmlns:util="http://www.springframework.org/schema/util"

并在架构位置:

http://www.springframework.org/schema/util http://www .springframework.org/schema/util/spring-util-3.1.xsd

I'm using the hibernate.search.default.indexBase property (in persistence.xml or hibernate.cfg.xml) to specify the base directory for the indices.

When using AnnotationSessionFactoryB­ean (or any session factory bean), you can set various properties via:

<property name="hibernateProperties">
    <util:properties>
          <prop key="hibernate.search.default.indexBase">value</prop>
    </util:properties>
</property>

(You'll need the util: namespace)

xmlns:util="http://www.springframework.org/schema/util"

and in the schema locations:

http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd

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