@RequestMapping(2)
-
Spring MVC - 요청방식(Get,Post)
Spring에도 jsp와 마찬가지로 요청방식 중 get,post를 가장 많이 사용한다. spring에서는 조금 더 엄격하게 전송의 관리가 이루어진다. 바로 controller에서 미리 어떤 전송으로 받을지 정해두는 것이다. 아래와 같은 index.jsp를 만든다. test1 test1 test2 test2 그리고 controller 메소드를 다음과 같이 작성한다. @Controller public class MappingController { @RequestMapping(value="/test1",method = RequestMethod.GET) public String test1() { return "test1"; } @RequestMapping(value="/test2",method = Request..
2020.09.05 -
Spring MVC - URL Mapping
지난번에 세팅한 Spring에서 아래와 같이 a링크를 통해서 페이지를 이동하면 오류가 난다. test1 지난번 세팅에서 / 는 Controller에서 mapping을 해주었지만 새로만든 test1는 매핑이 되어있지 않아서 나타나는 오류이다. 이 문제를 해결하기 위해 우리는 페이지 이동에 대한 mapping을 컨트롤러에서 해줘야 한다. @Controller public class MappingController { @RequestMapping(value="/test1",method = RequestMethod.GET) public String test1() { return "test1"; } @RequestMapping(value="/test2",method = RequestMethod.GET) publi..
2020.09.05