JPA XML 查询文件

发布于 2024-09-27 21:08:01 字数 229 浏览 7 评论 0原文

我想将所有命名查询包含在一个单独的 XML 文件中并持久使用它。我怎样才能完成同样的任务?

我在 JSF-Web 应用程序中使用 Toplink JPA。实际上,我无法获取要使用的目录/文件结构。

我尝试在 persistence.xml 中使用 并尝试将查询文件放置在多个位置。每次我都会遇到异常。

I would like to include all named queries in a separate XML file and use it in persistence. How can I accomplish the same?

I am using Toplink JPA in a JSF-Web application. Actually, I am not able to get the directory/file structure to use.

I tried to use <mapping-file> in persistence.xml and tried to place the query file in several locations. Every time I am getting exception.

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

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

发布评论

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

评论(1

烂人 2024-10-04 21:08:01

执行

 EntityManager.createQuey(query)

您可以将查询放置到 XML 文件中,稍后将通过 XML 提供的查询

该查询。或者,更好的方法(!),使用现有的可能性在映射 XML 中声明 JPA 部分(示例请参见 使用 jpa 和 hibernate 在 orm.xml 中定义命名查询)。在最后一种情况下,您甚至可以使用:

 EntityManager.createNamedQuery(queryName)

You can either place to XML file queries that later will be executed by

 EntityManager.createQuey(query)

where query is provided by XML.

Or, the better way(!), use already existing possibility to declare JPA parts in mapping XML (example see define named query in orm.xml with jpa and hibernate). In the last case you can even use:

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