spring--路由
@RestController:
Spring4之后新加入的注解,原来返回json需要@ResponseBody和@Controller配合。
即@RestController是@ResponseBody和@Controller的组合注解。
@RequestMapping 配置url映射@RequestMapping此注解即可以作用在控制器的某个方法上,也可以作用在此控制器类上。
当控制器在类级别上添加@RequestMapping注解时,这个注解会应用到控制器的所有处理器方法上。处理器方法上的@RequestMapping注解会对类级别上的@RequestMapping的声明进行补充。
@RestController // @RequestMapping(value = "/test",method = RequestMethod.GET) public class test { @RequestMapping("/hello") public String hello(){ return "hello world"; } @RequestMapping("/hello/{name}") public String hello(@PathVariable String name){ return "hello "+name; } }
参考:https://blog.csdn.net/u010412719/article/details/69710480