JPA XML 查询文件
我想将所有命名查询包含在一个单独的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行
您可以将查询放置到 XML 文件中,稍后将通过 XML 提供的查询
该查询。或者,更好的方法(!),使用现有的可能性在映射 XML 中声明 JPA 部分(示例请参见 使用 jpa 和 hibernate 在 orm.xml 中定义命名查询)。在最后一种情况下,您甚至可以使用:
You can either place to XML file queries that later will be executed by
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: