백지부터 시작하는 이세계 코딩 생활
에러 : Request method 'POST' not supported 본문
Ref : zzznara2.tistory.com/672
[스프링] spring에서 org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported in
org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported in spring url을 호출하니 이런 오류가 났습니다. POST 방식을 지원하지 않는다는 뜻인데요. 해당 url..
zzznara2.tistory.com
해당 url을 매핑하는 @RequestMapping 부분을 확인 >>
//회원가입 및 로그인 맵핑
@RequestMapping(value = "/userLogin", method = RequestMethod.GET)
public String userLogin(Locale locale, Model model) {
logger.info("This is userLogin... The client locale is {}.", locale);
return "userLogin";
}
@RequestMapping(value = "/userRegister", method = RequestMethod.GET)
public String userRegister(Locale locale, Model model) {
logger.info("This is userRegister... The client locale is {}.", locale);
return "userRegister";
}
@RequestMapping(value = "/userRegisterAction", method = RequestMethod.GET)
public String userRegisterAction(Locale locale, Model model) {
logger.info("This is userRegisterAction... The client locale is {}.", locale);
return "userRegisterAction";
}
@RequestMapping(value = "/userInfo", method = RequestMethod.GET)
public String userInfo(Locale locale, Model model) {
logger.info("This is userInfo... The client locale is {}.", locale);
return "userInfo";
}
RequestMethod.GET >>RequestMethod.POST 로 수정하거나 추가 해준다.
수정 >>
//회원가입 및 로그인 맵핑
@RequestMapping(value = "/userLogin", method = RequestMethod.POST)
public String userLogin(Locale locale, Model model) {
logger.info("This is userLogin... The client locale is {}.", locale);
return "userLogin";
}
@RequestMapping(value = "/userRegister", method = RequestMethod.POST)
public String userRegister(Locale locale, Model model) {
logger.info("This is userRegister... The client locale is {}.", locale);
return "userRegister";
}
@RequestMapping(value = "/userRegisterAction", method = RequestMethod.POST)
public String userRegisterAction(Locale locale, Model model) {
logger.info("This is userRegisterAction... The client locale is {}.", locale);
return "userRegisterAction";
}
@RequestMapping(value = "/userInfo", method = RequestMethod.POST)
public String userInfo(Locale locale, Model model) {
logger.info("This is userInfo... The client locale is {}.", locale);
return "userInfo";
}
추가 >>
1번째 2번재 맵핑 부분은 수정함.
3번째 4번째 맵핑 부분에선 추가함.
//회원가입 및 로그인 맵핑
@RequestMapping(value = "/userLogin", method = RequestMethod.POST)
public String userLogin(Locale locale, Model model) {
logger.info("This is userLogin... The client locale is {}.", locale);
return "userLogin";
}
@RequestMapping(value = "/userInfo", method = RequestMethod.POST)
public String userInfo(Locale locale, Model model) {
logger.info("This is userInfo... The client locale is {}.", locale);
return "userInfo";
}
@RequestMapping(value = "/userRegister", method = {RequestMethod.POST, RequestMethod.GET})
public String userRegister(Locale locale, Model model) {
logger.info("This is userRegister... The client locale is {}.", locale);
return "userRegister";
}
@RequestMapping(value = "/userRegisterAction", method = {RequestMethod.POST, RequestMethod.GET})
public String userRegisterAction(Locale locale, Model model) {
logger.info("This is userRegisterAction... The client locale is {}.", locale);
return "userRegisterAction";
}
'Spring > JSP tutorial' 카테고리의 다른 글
session 값을 받아올 수 없을 때 (0) | 2020.09.22 |
---|---|
JSP 연습에 필요한 정보들1 (0) | 2020.08.20 |
Comments