728x90
[오류내용]
Why is this an issue? 클릭하면 해결 답안을 직접적으로 볼 수 있다. 아래 참고..
[수정전 코드]
@RequestMapping(path = "/greeting", method = RequestMethod.GET) // Noncompliant
[수정후 코드]
@GetMapping(path = "/greeting") // Compliant
728x90
반응형
'IT 인터넷 > 소나큐브' 카테고리의 다른 글
[소나큐브] Format specifiers should be used instead of string concatenation. (0) | 2022.10.13 |
---|---|
[소나큐브] Collection.isEmpty() should be used to test for emptiness (0) | 2022.10.12 |
[소나큐브] Field names should comply with a naming convention (0) | 2022.10.12 |
[소나큐브] String literals should not be duplicated (0) | 2022.10.12 |
[소나큐브] Cognitive Complexity of methods should not be too high (0) | 2022.10.12 |