SpringMVC基础03——常用注解之@RequestMapping
1.用法 SpringMVC使用@RequestMapping注解,为控制器指定可以处理哪些URL请求,并且可以指定处理请求的类型(POST/GET),如果@RequestMapping没有指定请求的方式,那么代表这个方法可以同时处理GET/POST请求。 1 @RequestMapping("/helloworld") 2 public String helloWorld() { 3 return SUCCESS; 4 } URL的地址:http://localhost:8082/helloworld 除此之外,@RequestMapping有两种用法,一是标在类上,二是标在方法上。 ① 标记在类上:提供初步的请求映射信息。相对于 WEB 应用的根目录 ② 标记在方法上:提供进一步的细分映射信息。相对于标记在类上的 URL。 1 @Controller 2 @RequestMapping("/springmvc") 3 public class SpringMVCTest { 4 private static final String SUCCESS = "success"; 5 @RequestMapping("/helloworld") 6 public String helloWorld() { 7 return SUCCESS; 8 } 9 } URL的地址:http:/