728x90
이거 발생하는 이유는 기존에 사용하던
@GeneratedValue
@GeneratedValue(strategy = GenerationType.AUTO)
요것들 때문이다.
mysql을 사용하여 원래 있던 테이블에 사용하는데, 위의 내용들을 사용하면 테이블을 새로 만들어서 진행한다...
그래서 저 위의 내용을
@GeneratedValue(strategy = GenerationType.IDENTITY)
요렇게 바꾸면 내가 만든 DB를 읽어와서 적기 때문에 저 에러가 안나올 것이다.
'백엔드 공부 > 에러정리' 카테고리의 다른 글
Springboot3.0에서 [Spring] Could not resolve all files for configuration ':classpath'. 해결하기!! (0) | 2023.06.08 |
---|---|
Unable to load class 'com.mysema.codegen.model.Type' error 발생 및 해결 (0) | 2022.10.02 |