为了账号安全,请及时绑定邮箱和手机立即绑定

H2 - 当 Persistable<ID> isNewObject 设置为 true 时

H2 - 当 Persistable<ID> isNewObject 设置为 true 时

catspeake 2021-07-02 10:03:30
我在 Java Spring Boot 应用程序中使用 H2 作为测试数据库,但是当我想在尝试插入重复的 ID/PK 时捕获“重复键”异常时,H2 不会抛出任何内容。有了邮递员,一切都很好,我就是无法通过测试。真正的数据库是 PostgreSQL,当我与 Postman 集成测试时,它确实抛出异常。但是在单元测试时我认为没有必要加载真正的DB所以我选择了H2。H2配置:spring.datasource.url=jdbc:h2:mem:tesdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;mode=MySQLspring.datasource.driverClassName=org.h2.Driverspring.datasource.username=saspring.datasource.password=spring.datasource.testWhileIdle=truespring.datasource.validationQuery=SELECT 1spring.jpa.datasource.show-sql=truespring.h2.console.enabled=true # if you need console豆定义:@Entity@Data@JsonComponent@Table(name="bin_info")public class BinInfo implements Serializable, Persistable<String>{ //with Persistable we can check ID duplicate    @Id    @Size(min=6, max=8)    @Column(name="bin")    @JsonProperty("bin")    private String bin;    ...    /**     * Property for identifying whether the object is new or old,     * will insert(new) or update(old)     * If is new and id/bin is duplicate, org.hibernate.exception.ConstraintViolationException will be thrown.     * If is old and id/bin is duplicate, just updates. Hibernate save() will upsert and no complain.     */    @Transient    private boolean isNewObject;    @Override    public String getId() {        return this.bin;    }    @Override    public boolean isNew() {        return isNewObject;    }    @Override    public String getId() {        return this.bin;    }    @Override    public boolean isNew() {        return isNewObject;    }
查看完整描述

2 回答

?
缥缈止盈

TA贡献2041条经验 获得超4个赞

如果您调用save()现有实体,Hibernate 不会再次保留它,而只会更新该实体。


查看完整回答
反对 回复 2021-07-14
?
凤凰求蛊

TA贡献1825条经验 获得超4个赞

最后我中止了这个测试,并通过不检查异常来绕过它。它仍然是一个错误。


查看完整回答
反对 回复 2021-07-14
  • 2 回答
  • 0 关注
  • 184 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信