「Spring MVC」@RequestMappingのvalue、method属性を利用するサンプル

1.value 属性
URLを指定する
@RequestMapping(value = “/test")
public String index() {
//some code
return “index";
}

URLを複数指定する
@RequestMapping(value = { “/", “/test" })

2.method 属性
POSTでリクエストを処理する
@RequestMapping(path = “/create", method = RequestMethod.POST)

GET でリクエストを処理する
@RequestMapping(path = “/create", method = RequestMethod.GET)

Java

Posted by arkgame