[Project] Spring 오류 : java.lang.IllegalArgumentException: Name for argument of type [java.lang.Long] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag. | 민민의 하드..
자바 스프링 오류 해결 오류 로그 java.lang.IllegalArgumentException: Name for argument of type [java.lang.Long] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag. 오류 내용 스프링이 매개변수 이름을 알 수 없어서 발생하고, 대부분 컴파일러가 메서드의 매개변수 이름을 기본적으로 포함하지 않을 때 발생한다. 해결방법 1. gradle 스크립트에 컴파일 시에 '-parameters' 플래그를 추가하여 매개변수 이름을 포함하도록 설정 build.gradle tasks.w..