美文网首页
Spring Boot注解

Spring Boot注解

作者: jhl2018 | 来源:发表于2018-01-23 12:06 被阅读0次

    @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到Configuration类并把它加入到程序上下文。
    @Configuration 等同于spring的XML配置文件;使用Java代码可以检查类型安全。
    @EnableAutoConfiguration 自动配置。
    @ComponentScan 组件扫描,可自动发现和装配一些Bean。
    @Component可配合CommandLineRunner使用,在程序启动后执行一些基础任务。
    @RestController注解是@Controller和@ResponseBody的合集,表示这是个控制器bean,并且是将函数的返回值直 接填入HTTP响应体中,是REST风格的控制器。
    @Autowired自动导入。
    @PathVariable获取参数。
    @JsonBackReference解决嵌套外链问题。
    @RepositoryRestResourcepublic配合spring-boot-starter-data-rest使用。

    注解详解

    @SpringBootApplication:申明spring boot自动给程序进行必要的配置,这个配置等同于@Configuration,@EnableAutoConfiguration 和@ComponentScan三个配置

    package com.example.myproject; 
    import org.springframework.boot.SpringApplication; 
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    注解详解
    @SpringBootApplication // same as @Configuration @EnableAutoConfiguration @ComponentScan 
    public class Application { 
    public static void main(String[] args) { 
    SpringApplication.run(Application.class, args); 
    } 
    }
    

    @ResponseBody:表示该方法的返回结果直接写入HTTP response body中,一般在异步获取数据时使用,用于构建RESTful 的api。在使用@RequestMapping后,返回值通常解析为跳转路径,加上@ResponseBody后返回结果不会解析为跳转路径,而是直接写入HTTP response body中,会直接返回json数据,一般配合@RequestMapping使用:

    @RequestMapping(“/test”) 
    @ResponseBody 
    public String test(){ 
    return”ok”; 
    }
    

    @Controller:用于定义控制器,在Spring项目中由控制器负责将用户发来的yurl请求转发到对应的service层,需要配合注解@RequestMapping使用

    @Controller 
    @RequestMapping(“/demoInfo”) 
    publicclass DemoController { 
    @Autowired 
    private DemoInfoService demoInfoService;
    
    @RequestMapping("/hello")
    public String hello(Map<String,Object> map){
       System.out.println("DemoController.hello()");
       map.put("hello","from TemplateController.helloHtml");
       //会使用hello.html或者hello.ftl模板进行渲染显示.
       return"/hello";
    }
    }
    

    @RestController:用于标注控制层组件(如struts中的action),@ResponseBody和@Controller的合集。示例代码:

    package com.kfit.demo.web;
    
    import org.springframework.web.bind.annotation.RequestMapping; 
    import org.springframework.web.bind.annotation.RestController;
    
    
    @RestController 
    @RequestMapping(“/demoInfo2”) 
    publicclass DemoController2 {
    
    @RequestMapping("/test")
    public String test(){
       return"ok";
    }
    }
    

    @RequestMapping:提供路由信息,负责URL到Controller中的具体函数的映射。

    @EnableAutoConfiguration:Spring Boot自动配置(auto-configuration):尝试根据你添加的jar依赖自动配置你的Spring应用。例如,如果你的classpath下存在HSQLDB,并且你没有手动配置任何数据库,MySQL知识库")连接beans,那么我们将自动配置一个内存型(in-memory)数据库”。你可以将@EnableAutoConfiguration或者@SpringBootApplication注解添加到一个@Configuration类上来选择自动配置。如果发现应用了你不想要的特定自动配置类,你可以使用@EnableAutoConfiguration注解的排除属性来禁用它们。

    @ComponentScan:表示将该类自动发现扫描组件。个人理解相当于,如果扫描到有@Component、@Controller、@Service等这些注解的类,并注册为Bean,可以自动收集所有的Spring组件,包括@Configuration类。我们经常使用@ComponentScan注解搜索beans,并结合@Autowired注解导入。可以自动收集所有的Spring组件,包括@Configuration类。我们经常使用@ComponentScan注解搜索beans,并结合@Autowired注解导入。如果没有配置的话,Spring Boot会扫描启动类所在包下以及子包下的使用了@Service,@Repository等注解的类。

    @Configuration:相当于传统的xml配置文件,如果有些第三方库需要用到xml文件,建议仍然通过@Configuration类作为项目的配置主类——可以使用@ImportResource注解加载xml配置文件。

    @Autowired:自动导入依赖的bean
    @Service:一般用于修饰service层的组件
    @Repository:使用@Repository注解可以确保DAO或者repositories提供异常转译,这个注解修饰的DAO或者repositories类会被ComponetScan发现并配置,同时也不需要为它们提供XML配置项。
    @Bean:用@Bean标注方法等价于XML中配置的bean。
    @AutoWired:自动导入依赖的bean。byType方式。把配置好的Bean拿来用,完成属性、方法的组装,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。当加上(required=false)时,就算找不到bean也不报错

    相关文章

      网友评论

          本文标题:Spring Boot注解

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