728x90
1. MySQL에서 테이블을 만들어준다.
ID에 적용할 것이므로 AI(Auto Increment) 체크!
2. 자바 코드에서 Model에 @GeneratedValue 어노테이션을 추가해준다.
@GeneratedValue(strategy = GenerationType.IDENTITY)
다음은 코드에 적용한 모습이다.
'Web > SpringBoot' 카테고리의 다른 글
[Spring Boot] 3. Spring Security 권한 설정 (0) | 2021.12.17 |
---|---|
[Spring Boot] 2. Spring Security 로그인 (0) | 2021.12.17 |
[Spring Boot] Entity, DTO, VO 정의 (0) | 2021.12.17 |
[Spring Boot] JPA defalut 값 설정하기 (@DynamicInsert, @DynamicUpdate) (0) | 2021.12.17 |
[Spring Boot] 1. Spring Security 사용 설정, 비밀번호 인코딩 (0) | 2021.12.16 |