注释类型 RestController


  • @Target(TYPE)
    @Retention(RUNTIME)
    @Documented
    @Controller
    @ResponseBody
    public @interface RestController
    A convenience annotation that is itself annotated with @Controller and @ResponseBody.

    Types that carry this annotation are treated as controllers where @RequestMapping methods assume @ResponseBody semantics by default.

    NOTE:@RestController is processed if an appropriate HandlerMapping-HandlerAdapter pair is configured such as the RequestMappingHandlerMapping-RequestMappingHandlerAdapter pair which are the default in the MVC Java config and the MVC namespace. In particular @RestController is not supported with the DefaultAnnotationHandlerMapping-AnnotationMethodHandlerAdapter pair both of which are also deprecated.

    从以下版本开始:
    4.0
    作者:
    Rossen Stoyanchev, Sam Brannen
    • 可选元素概要

      可选元素 
      修饰符和类型可选元素说明
      Stringvalue
      The value may indicate a suggestion for a logical component name, to be turned into a Spring bean in case of an autodetected component.
    • 元素详细资料

      • value

        String value
        The value may indicate a suggestion for a logical component name, to be turned into a Spring bean in case of an autodetected component.
        返回:
        the suggested component name, if any (or empty String otherwise)
        从以下版本开始:
        4.0.1
        默认值:
        ""