创建 Hibernate JPA 视图
我希望使用休眠实体从主表创建几个不同的视图。我认为这将是一个非常标准的场景,但是我还没有找到关于这个主题的太多信息。
主表将由位置组成,视图将是位置类型,例如州、国家/地区等。我知道这可以通过简单的查询限制轻松处理,但是管理层希望看到它使用视图来完成。
我想知道是否可以在 hibernate JPA 中创建视图(使用注释)。
I'm looking to create a couple different views off from a primary table using a hibernate entity. I thought this would be a pretty standard scenario, however I haven't found much information on this topic.
The primary table will consist of locations and the view will be types of locations like state, country etc. I know this could be easily handled with a simple query restriction, however management would like to see it done using a view.
I'm wondering if the views could be created in hibernate JPA (using annotations).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果模式看起来像
您可以使用 TPH(每个层次结构表)映射您的实体
if the schema looks like
you could map your entities using TPH (Table per Hierarchy)