book.naver.com/bookdb/book_detail.nhn?bid=15871738
위 책을 보며 공부하는데 초반 부터 에러 투성이다
@Getter // 선언된 모든 필드의 get 메소드를 생성함
@RequiredArgsConstructor // 선언된 모든 final 필드나 @nonnull이 붙은 필드의 생성자를 생성함
public class HelloResponseDto {
private final String name;
private final int amount;
}
|
위 코드에서 에러가 발생하는데, 한참을 고생하다가 아래의 능력자님 덕분에 비교적 쉽게 해결했다
build.gradle에 아래와 같이 추가해주면 문제 해결
//기존
compile('org.projectlombok:lombok')
//추가
testCompile "org.projectlombok:lombok"
annotationProcessor('org.projectlombok:lombok')
testAnnotationProcessor('org.projectlombok:lombok')
|
아래는 저자 깃 레포지터리
github.com/jojoldu/freelec-springboot2-webservice/issues
'basic > Java' 카테고리의 다른 글
SpringBoot initializer (0) | 2021.04.28 |
---|---|
[Java] String문자열의 ==과 equals()의 차이 (0) | 2021.04.22 |
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.Reason: Failed to determine a suitable driver class (0) | 2021.04.13 |
OpenJDK 설치하기 (0) | 2021.04.12 |
인텔리제이 단축키 (0) | 2021.03.27 |