使用@Enumerated时检查约束? Spring Boot-JPA

发布于 2025-01-09 13:19:00 字数 355 浏览 1 评论 0原文

如果我有以下实体和枚举:

public enum MyEnum {
    VALUE_1,
    VALUE_2
}

@Entity
public class MyEntity {
    @Enumerated(EnumType.STRING)
    private MyEnum myEnum;
}

有没有一种方法可以在数据库上创建约束,而不必在 SQL 中实际编写约束?

这就是我想避免的:

@Column(columnDefinition = "VARCHAR(60) CHECK (myEnum IN ('VALUE_1', 'VALUE_2')))

If I have the following entity and enum:

public enum MyEnum {
    VALUE_1,
    VALUE_2
}

@Entity
public class MyEntity {
    @Enumerated(EnumType.STRING)
    private MyEnum myEnum;
}

Is there a way to have a constraint created on the database without me having to actually write the constraint in SQL?

This is what i want to avoid:

@Column(columnDefinition = "VARCHAR(60) CHECK (myEnum IN ('VALUE_1', 'VALUE_2')))

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

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

发布评论

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

评论(1

浸婚纱 2025-01-16 13:19:00

谈论 columnDefinition 属性

此属性允许您使用数据定义语言 (DDL) 来定义列的结构。然后,我们可以使用具有此定义的 JPA 工具从实体生成表。

来源

以及关于 JPA

(JPA)...极大地简化了 Java 持久性,并提供了一种对象关系映射方法,使您能够以声明方式定义如何以标准、可移植的方式将 Java 对象映射到关系数据库表

[2]

从这些引用中,我认为:

  • 使用 columnDefinition 属性是最佳实践,特别是因为 JPA 是您用来保存数据库的工具

  • 不,没有其他更好的方法来在数据库中创建约束


[2]: https://docs.oracle.com/cd/E16439_01/doc.1013/e13981/undejbs003.htm#:~:text=%20Java%20Persistence%20API%20(JPA,standard%2C%20portable%20way%20that %20作品

Speaking about the columnDefinition attribute

This property allows you to use the Data Definition Language (DDL) to define the structure of a column. Then, we can generate the table from the entity using the JPA Tool with this definition.

source

and about JPA

(JPA)... greatly simplifies Java persistence and provides an object-relational mapping approach that lets you declaratively define how to map Java objects to relational database tables in a standard, portable way that works

[2]

From these citings, I think:

  • using the columnDefinition attribute is the best practice especially since JPA is the tool you are using to persist your DB

  • No, there is no other way better way to create the constraints in the database


[2]: https://docs.oracle.com/cd/E16439_01/doc.1013/e13981/undejbs003.htm#:~:text=The%20Java%20Persistence%20API%20(JPA,standard%2C%20portable%20way%20that%20works

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