对于各种注解而言,排第一的当然是“@Controller”,表明某类是一个controller. “@RequestMapping”请求路径映射,如果标注在某个controller的类级别上,则表明访问此类路径下的方法都要加上其配置的路径:最常用是标注在方法上,表明哪个具体的方法来接受处理某次请求. @Controller @RequestMapping(value="/book") public class BookController { @RequestMapping(value…
SpringBoot定义URL处理方法:@Controller和@RequestMapping @Controller标注的类表示的是一个处理HTTP请求的控制器(即MVC中的C),该类中所有被@RequestMapping标注的方法都会用来处理对应URL的请求. 在SpringMVC框架中,使用@RequsetMapping标注可以将URL与处理方法绑定起来,例如: @RestController public class HelloworldRestController { @Request…
先看一个简单的实例: @Controller @RequestMapping("/hello") public class anyTypeController{ @RequestMapping(method={RequestMethod.GET,RequestMethod.POST}) public String processWebRequest(){ return "hello"; } } 上述例子中简单了阐明了Controller以及RequestMappin…
1.1 @Controller是什么 首先看个例子: @Controller @RequestMapping("/blog") public class BlogController { @RequestMapping("/index") public ModelAndView index(HttpServletRequest request){ ModelAndView mav = new ModelAndView("/index"); Str…