创建 Hibernate JPA 视图

发布于 2025-01-08 17:52:08 字数 186 浏览 1 评论 0原文

我希望使用休眠实体从主表创建几个不同的视图。我认为这将是一个非常标准的场景,但是我还没有找到关于这个主题的太多信息。

主表将由位置组成,视图将是位置类型,例如州、国家/地区等。我知道这可以通过简单的查询限制轻松处理,但是管理层希望看到它使用视图来完成。

我想知道是否可以在 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 技术交流群。

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

发布评论

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

评论(1

时光与爱终年不遇 2025-01-15 17:52:08

如果模式看起来像

id|locationtype|name|...

您可以使用 TPH(每个层次结构表)映射您的实体

@Entity
@Table(name="Location")
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name="locationtype", discriminatorType=DiscriminatorType.STRING)
abstract class Location
{
    private int id;
    private String name;
}

@Entity
@DiscriminatorValue("state")
class State extends Location
{
    private String someOtherProp;
}

if the schema looks like

id|locationtype|name|...

you could map your entities using TPH (Table per Hierarchy)

@Entity
@Table(name="Location")
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name="locationtype", discriminatorType=DiscriminatorType.STRING)
abstract class Location
{
    private int id;
    private String name;
}

@Entity
@DiscriminatorValue("state")
class State extends Location
{
    private String someOtherProp;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文