@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody
public @interface RestController {
@AliasFor(
annotation = Controller.class
)
String value() default "";
}
- Controller, RestController的共同点
都是用来表示Spring某个类的是否可以接收HTTP请求
2. Controller, RestController的不同点
@Controller标识一个daoSpring类是Spring MVC controller处理器
@RestController: a convenience annotation that does nothing more than adding the@Controller and@ResponseBody annotations。 @RestController是@Controller和@ResponseBody的结合体,两个标注合并起来的作用。
3、如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,配置的视图解析器InternalResourceViewResolver不起作用,返回的内容就是Return 里的内容。
4、如果需要返回到指定页面,则需要用 @Controller配合视图解析器InternalResourceViewResolver才行。
5、如果需要返回JSON,XML或自定义mediaType内容到页面,则需要在对应的方法上加上@ResponseBody注解。
下面两端代码等价
@RestController
public class HelloWorldController {
@RequestMapping("/hello")
public String hello(){
return "hello world!";
}
@RequestMapping("/map")
public Map<String, Object> map(){
Map<String, Object> map = new HashMap<>();
map.put("msg", "helloworld");
return map;
}
}
@Controller
public class HelloWorldController {
@RequestMapping("/hello")
@ResponseBody
public String hello(){
return "hello world!";
}
@RequestMapping("/map")
@ResponseBody
public Map<String, Object> map(){
Map<String, Object> map = new HashMap<>();
map.put("msg", "helloworld");
return map;
}
}