
롬복이란? 자바 개발할 때 자주 사용하는 코드 Getter, Setter, 기본생성자, toString 등을 어노테이션으로 자동 생성 implementation 'org.projectlombok:lombok' -> build.gradle에 위와 같은 코드 추가 -> gradle refresh 인텔리제이 2020.03 버전 이후에는 롬복 기본 라이브러리로 설치되어 있어 따로 설치할 필요는 없었다 - setting > build > compiler > annotation processer 에서 Enable annotation processing 체크 완료 +) 추가
📁 STUDY/🔘 Spring Boot 2022. 8. 28. 18:35

java.lang.IllegalStateException: Found multiple @SpringBootConfiguration annotated classes 에러 같은 패키지 안에 @SpringBootApplication 어노테이션이 중복으로 선언되어 발생하는 오류 나같은 경우는 자동으로 생성된 ExSpringboot2Application과 직접 생성한 HelloControlloer에 중복 선언되어 있었다 주석 처리를 해준다 해결 완료
📁 STUDY/🔘 Spring Boot 2022. 8. 26. 01:17