Programming language/Java

[IntelliJ] Actual and formal argument lists differ in length 에러

디스타입 2023. 4. 15. 02:04

IntelliJ Actual and formal argument lists differ in length 에러 해결방법

 

해결방법 1. Enable annotation processing

IntelliJ setting -> Annotation Processors -> Enable annotation processing ✅

 

해결방법 2. Gradle Setting 변경

IntelliJ setting -> Bulid,Execution,Deployment -> [Gradle(Default) ➡️ IntelliJ IDEA] 둘다!

 

모두 행복했으면 좋겠다.

 

참고 자료

1번 -

https://stackoverflow.com/questions/49282471/lombok-causing-actual-and-formal-arguments-lists-differ-in-length-error

 

Lombok causing "Actual and formal arguments lists differ in length error"

I have the following class: @Builder @NoArgsConstructor public class ConsultationPointOfContact { private String fullName; private String phoneNumber; private String userLogin; } W...

stackoverflow.com

2번 -

https://smoh.tistory.com/458