데이터베이스1 [Spring, JPA] PK의 auto_increment가 범위를 벗어날 경우 안녕하세요. 😃 JPA와 데이터베이스 관련해서 새로 알게 된 내용이 있어서 간단하게 정리해보려고 합니다. 스프링에서 엔티티 클래스를 만들 때 아래와 같이 Long 값을 pk로 잡고 @GeneratedValue를 이용하여 auto increment 되도록 많이 사용하실거라고 생각합니다. @NoArgsConstructor @Entity public class Book() { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String title; private String content; @Builder public User(String title, String content) { this.title = titl.. 2020. 5. 18. 이전 1 다음