IT 인터넷/소나큐브
[소나큐브] Composed "@RequestMapping" variants should be preferred
바다소년3904
2022. 10. 12. 10:29
728x90
[오류내용]
Why is this an issue? 클릭하면 해결 답안을 직접적으로 볼 수 있다. 아래 참고..
[수정전 코드]
@RequestMapping(path = "/greeting", method = RequestMethod.GET) // Noncompliant
[수정후 코드]
@GetMapping(path = "/greeting") // Compliant
728x90
반응형