6

这里有一个相当具体的问题,但它已经困扰了我一天了:
我在 PostgreSQL 8.3 上使用 Hibernate Core、Annotations & Validator。

我有以下课程设置:

@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class Entry {
    @EmbeddedId
    protected EntryPK       entryPK;
    @ManyToMany
    private Set<Comment>    comments    = new HashSet<Comment>();
...

@Embeddable
public class EntryPK implements Serializable {
    @ManyToOne(cascade = CascadeType.ALL)
    private Database    database;

    @Length(max = 50)
    @NotEmpty
    private String      pdbid;
...

我希望在我的 PostgreSQL 数据库中看到长度约束转换为长度约束(它适用于@Entity而不是@Embeddable's中的其他字段)但它似乎不想工作..
即使使用@IdClass代替@EmbeddedId 并在 @Entity 中的匹配字段上应用长度约束并没有解决这个问题:数据库字段仍然是 varchar 255(对于我的需要来说,大约 250 太大了)。
有人可能会说我不应该关心这个级别的细节,但是我的强迫症方面拒绝放手.. ;) 是否不可能在 EmbeddedId 中使用 Hibernate Validator Annotations 并让 hbm2ddl 将约束应用于数据库领域?

4

1 回答 1

0

不是答案。经历相同的行为。请作者识别以下代码是否与问题陈述一致。

实体和复合 ID 类。

@Embeddable
public class MyComposite implements Serializable {
    private static final long serialVersionUID = 5498013571598565048L;

    @Min(0)
    @Max(99999999)
    @Column(columnDefinition = "INT(8) NOT NULL", name = "id", nullable = false)
    private Integer id;

    @NotBlank
    @NotEmpty
    @Column(columnDefinition = "VARCHAR(8) NOT NULL", name = "code", length = 8, nullable = false)
    private String code;
    // plus getters & setters.
}

@Entity
@Table(name = "some_entity_table")
public class MyEntity {
    @EmbeddedId
    private MyComposite composite;

    public MyComposite getComposite() {
        return composite;
    }

    public void setComposite(MyComposite composite) {
        this.composite = composite;
    }
}

类的单元测试

@Test
public void createWithIdOutOfRangeTest(){
    Exception exception = null;
    MyEntity input = new MyEntity();
    MyEntity output = null;
    MyComposite id = new MyComposite();
    // EITHER THIS
    id.setId(123456789);
    id.setCode("ABCDEFG");
    // OR THIS
    id.setId(12345678);
    id.setCode("        ");
    input.setComposite(id);
    try {      
      output = service.create(input);
    } catch (Exception e) {
      exception = e;
    }
    Assert.assertNotNull("No exception inserting invalid id !!", exception);
    Assert.assertTrue("There was some other exception !!", exception instanceof ConstraintViolationException);
}

正如问题中所述,将无效值传递给复合键字段(Hibernate-core:5.0.12, H2:1.4.196)时,我没有遇到任何异常。测试失败。

于 2017-08-10T08:00:19.053 回答