클래스부에 requestMapping은 하단의 중복을 없애 주는 것을 위해서 되는거라고 알고있엇고
간단하게 테스트하기 위해서 아래를 만들었었다
//잘돌아가나 확인할려고
//@Controller == component
@RestController
@Component
@RequestMapping("/user")
public class User {
//@GetMapping("/A") 이거를 지우니 왜 /user에서 안되는거지 ?
@ResponseBody
@RequestMapping
public String findUser(Model model) {
model.addAttribute("add", "ad");
return "ok";
}
}
- 에러 1
- 클래스부에만 requestMappingm을 달아주면 findUser를 못찾는다 리플렉션관련 문제로.. 그래서 -> 메소드에도 RequestMapping 선언
'springmvc' 카테고리의 다른 글
MessageConverter, 요청 매핑 핸들러 어댑터 (0) | 2021.12.03 |
---|---|
valdation(2) (0) | 2021.08.19 |
validation(1) (0) | 2021.08.19 |
메시지 국제화 (0) | 2021.08.19 |
controller, model, view (0) | 2021.08.01 |