美文网首页
sping boot 注解

sping boot 注解

作者: stevenlife | 来源:发表于2018-08-29 14:53 被阅读0次

    @SpringBootApplication=@Configuration+@EnableAutoConfiguration+@ComponentScan

    @RestController,@ReuqestMapping是MVC的注解,不是spring boot 特有的

    @RestController=@Controller+@ResponseBody

    @RestController,这被称为构造型(stereotype)注解
    @RestController注解告诉Spring以字符串的形式渲染结果,并直接返回给调用者

    @RequestMapping注解提供路由信息

    @EnableAutoConfiguration 根据添加的一类配置spring

    相关文章

      网友评论

          本文标题:sping boot 注解

          本文链接:https://www.haomeiwen.com/subject/apzhwftx.html