개발 기록

Table 'tableName_seq' doesn't exist, @Slf4j cannot find symbol 본문

TIL

Table 'tableName_seq' doesn't exist, @Slf4j cannot find symbol

수염차 2023. 2. 17. 23:21

https://stackoverflow.com/questions/49813666/table-dbname-hibernate-sequence-doesnt-exist\

 

Table 'DBNAME.hibernate_sequence' doesn't exist

I have a SpringBoot 2.0.1.RELEASE application using spring data / jpa <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-...

stackoverflow.com

 

서비스단 테스트를 돌리는데 테이블 이름 뒤에 _seq 를 붙여 찾는다.

시퀀스 생성 종류를 AUTO에 IDENTITY로 변경하여 해결

 

원인 관련 참고 글

https://hibernate.atlassian.net/browse/HHH-11014

 

[HHH-11014] - Hibernate JIRA

회사에서 관리하는 프로젝트에 참여하고 있습니다

hibernate.atlassian.net

 


 

https://cotak.tistory.com/271

 

[트러블슈팅] 테스트 코드에서 @Slf4j cannot find symbol 에러

개요 우분투 서버 내에 배포된 프로젝트 내에서 gradle wrapper를 사용해서 빌드를 시도했는데, 다음과 같은 에러가 발생했다. > Task :compileTestJava FAILED ... : error: cannot find symbol log.info("chatRoomEntity = {}"

cotak.tistory.com

 테스트코드에서도 lombok을 인식할 수 있도록 의존성 추가

testAnnotationProcessor 'org.projectlombok:lombok' //추가

'TIL' 카테고리의 다른 글

mongoDB object 검색  (0) 2024.02.14
Cannot change the ExecutorType when there is an existing transaction  (0) 2024.02.13
20221128 JVM의 메모리 모델  (0) 2022.11.28
20221124 NHN FORWARD 후기  (0) 2022.11.24
20221109 JVM  (0) 2022.11.09
Comments