반응형 IntelliJ2 [Spring] java.lang.IllegalArgumentException: Name for argument of type 에러 해결 방법 🚨 application run 시 발생한 에러 메시지java.lang.IllegalArgumentException: Name for argument of type [com.example.demo.domain.type.SearchType] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag. ❓에러 발생 이유build를 인텔리제이로 해서 발생한 에러 메시지 입니다.인텔리제이에서 빌드할 때는 -parameters' 플래그가 기본적으로 사용되지 않을 수 있습니다. ✅ 해결 방법인텔리제이에서 Build를 Gradle로 변경해줍니다.. 2024. 4. 10. [ Spring ] 인텔리제이 Lombok(롬복) 추가 하는 방법(gradle, maven) Gradle1. Spring 프로젝트의 build.grade 파일에 해당 코드 추가. dependencies { //lombok 라이브러리 추가. implementation 'org.projectlombok:lombok:1.18.28'} gradle의 경우의 해당 코끼리 아이콘을 클릭해야 합니다. Maven1. Maven의 경우에는 pom.xml 파일에 해당 코드 추가. org.projectlombok lombok true 2. 인텔리제이 메뉴에서 File -> Settings -> Plugins 🔍(검색) -> Installed -> lombok 🔍(검색) -> 설치 3. Settings -> Annotation Processors 🔍(검색) -> Enabl.. 2024. 1. 10. 이전 1 다음 반응형