Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 맛집
- Laravel
- 우분투
- 우분투 20.04
- upbit
- php
- TiL
- 제주도
- 옵지
- ubuntu
- Raspberry Pi
- FMS
- Ubuntu 20.04
- C
- 옵티머스 g
- 라즈비안
- 코드이그나이터
- 회고
- 라즈베리파이
- codeigniter
- 옵G
- 셀레니움
- 라라벨
- 업비트
- 프레임워크
- 옵티머스g
- 맥
- MySQL
- 20.04
- Selenium
Archives
- Today
- Total
평범한 이야기들
[Java/Spring] Lombok : variable name not initialized in the default constructor 오류 본문
평범한 개발 이야기/Java
[Java/Spring] Lombok : variable name not initialized in the default constructor 오류
songsariya 2022. 7. 14. 15:29728x90
Lombok(이하 롬복)을 이용해서 생성자를 만들었는데 variable name not initialized in the default constructor라는 에러가 발생했습니다. 즉 롬복이 정상적으로 실행이 되지 않은 것으로 판단하고 어떤 오류인지 인터넷으로 찾아봤습니다. 대부분 내용은 Gradle 버전을 확인하고 그에 맞게 수정을 해주어야 한다고 합니다.
Gradle 5.x 미만
dependencies {
implementation 'org.projectlombok:lombok'
}
Gradle 5.x 이상
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
버전에 맞게 수정을 해주시면 정상적으로 동작하는 것을 보실 수 있습니다.
728x90
Comments