...
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.
자바 컴파일러에 -parameters 옵션을 넣어주어야 한다.
Settings ➡️ Build, Execution, Deployment → Compiler → Java Compiler 에서 Additional command line parameters 탭에 다음과 같이 입력한다.
-parameters
out 폴더를 삭제하고 다시 실행하면 다시 컴파일이 일어난다.
