美文网首页
springboot中 @Autowired @Resource

springboot中 @Autowired @Resource

作者: lucode | 来源:发表于2018-06-12 14:01 被阅读1527次

    1. @Bean

    Spring的@Bean注解用于告诉方法,产生一个Bean对象,然后这个Bean对象交给Spring管理。产生这个Bean对象的方法Spring只会调用一次,随后这个Spring将会将这个Bean对象放在自己的IOC容器中。

    @Service
    public class BeanTest {
        /*
           默认在不指定的时候这个bean的名字就是 getBean
           如果需要指定一下名字就可以
           @Bean("beanlalal")
        */
        @Bean
        public BeanTest getBean(){
            BeanTest bean = new  BeanTest();
            System.out.println("调用方法:"+bean);
            return bean;
        }
    }
    public class Main {
        @SuppressWarnings("unused")
        public static void main(String[] args) {
            ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("application-context.xml");
            Object bean1 = context.getBean("getBean");
            System.out.println(bean1);
            Object bean2 = context.getBean("getBean");
            System.out.println(bean2);
        }
    }
    

    2 . @Autowired

    @Autowired是Spring 提供的,默认按照byType 注入,也就是bean的类型的来传入
    如果需要指定名字,那么需要使@Qualifier("这是bean的名字")

    3. @Resource

    @Resource默认按 byName 自动注入,是J2EE提供的
    @Resource有两个中重要的属性:name和type ,而Spring将@Resource注解的name属性解析为bean的名字,而type属性则解析为bean的类型。所以如果使用name属性,则使用byName的自动注入策略,而使用type属性时则使用 byType自动注入策略。如果既不指定name也不指定type属性,这时将通过反射机制使用byName自动注入策略。
    @Resource装配顺序

    (1). 如果同时指定了name和type,则从Spring上下文中找到唯一匹配的bean进行装配,找不到则抛出异常;
    (2). 如果指定了name,则从上下文中查找名称(id)匹配的bean进行装配,找不到则抛出异常;
    (3). 如果指定了type,则从上下文中找到类型匹配的唯一bean进行装配,找不到或者找到多个,都会抛出异常;
    (4). 如果既没有指定name,又没有指定type,则自动按照byName方式进行装配;如果没有匹配,则回退为一个原始类型进行匹配,如果匹配则自动装配;

    @Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入。

    @Resource(name="loginService") 
    private LoginService loginService;
    

    相关文章

      网友评论

          本文标题:springboot中 @Autowired @Resource

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