결론 부터이야기 하면 저 Ensure that the compiler uses the '-parameters' flag. 이 에러가 언제 나오냐면 controller에서@어노테이션이 붙은 값에 대한 매핑시에 오류가 나온다 예를 들어 get이나 post에서 @GetMapping("/{id}") public ResponseEntity getUserById(@PathVariable Long id) 이런 형태가 있다고 할때 boot 3부터 gradle 사용시는 안된다 저 이유는 검색해보면 spring 6부터 파라미터 맞추는 저 부분을 뺏다고 하는데 동일 버전의 maven에서는 이상이 없다 물론 명시적으로 주면 해결은 된다 @PathVariable Long id 이 부분을 => @PathVariable("..