1.@Controller主要用来修饰类,用来处理http请求 2.@ResponseBody主要用来修饰类和方法.返回字符串和json数据,不用来返回模板. 3.@RestController主要用来修饰类,用来处理http请求,可以看成是@Controller和@ResponseBody的组合注解,用来返回字符串和json数据. 4.@RequestMapping:主要用来修饰方法.接受请求路径的映射. 5.@RequestParam:主要用来修饰参数,表示GET请求参数. 6.@PathV…