Entity1 [JPA] @Entity는 기본 생성자를 왜 가져야 하는가? @Entity는 기본 생성자를 왜 가져야 하는가? @Entity(name = "user_datails") public class User { @Id @GeneratedValue private Integer id; private String name; private LocalDate birthDate; @OneToMany(mappedBy = "user") private List posts; public User(Integer id, String name, LocalDate birthDate) { this.id = id; this.name = name; this.birthDate = birthDate; } public User() { } // getter, setter, toString 생략 } 위와 같이 .. 2023. 11. 22. 이전 1 다음