最佳答案
我正在使用龙目岛项目和 Spring Data jPA。 有没有办法把龙目岛 ABc0和 JPA 缺省构造函数连接起来?
密码:
@Entity
@Builder
class Person {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
}
据我所知,JPA 需要的缺省构造函数被 @Builder
注释所覆盖。有什么解决办法吗?
这个代码给了我一个错误:
org.hibernate.InstantiationException: No default constructor for entity: : app.domain.model.Person