-
스프링에서 controller에서 return페이지가 없는 void함수java/스프링공부 2020. 6. 28. 18:53728x90
@RequestMapping("/member/*");
1)
@RequestMapping(value="/register", method=RequestMethod.GET);
public void getRegister() throws Exceptions{
}
2)
@RequestMapping(value="/register", method=RequestMethod.GET);
public String getRegister() throws Exceptions{
return "member/register";
}
두가지의 결과값은 같다.
void 로 설정하면 현재 호출한 url의 경로로 뷰를 찾는다. 알아두면 좋을것 같다.
728x90'java > 스프링공부' 카테고리의 다른 글
스프링에서 ajax요청시 주의사항 (0) 2020.08.18 스프링에서 restapi 만들때 주의할점 (0) 2020.07.10 스프링에서 컨트롤러에서 비동기처리 (0) 2020.07.09 스프링에서 jsp랑 서블릿 역할 (0) 2020.07.09 RedirectAttributes란 (0) 2020.06.25