Spring中通过注解配置bean(2)--@Autowired

Spring中通过注解配置bean(2)--@Autowired


一、说在前面

1、如果bean和bean之间有引用关系,那么这时候就需要利用注解建立bean和Bean之间的关系。

2、@Autowired 注解,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。通过 @Autowired的使用来消除 set ,get方法。
(1)@Autowired注解自动装配具有兼容类型的单个bean属性构造器,普通字段(即使是非public),一切具有参数的方法都可以应用@Autowired注解。
(2)默认情况下,有使用 @Autowired 注解的属性都需要被设置。当Spring找不到匹配的bean装配属性时,会抛出异常,若某一属性允许不被设置,可以设置@Autowired注解的required属性为 false 。
(3)默认情况下,当IOC容器里存在多个类型兼容的bean时,通过类型的自动装配将无法工作。此时可以在@Qualifier注解里提供 bean 的名称。Spring允许对方法的入参标注@Qualifiter 已指定注入bean的名称。
(4)@Autowired 注解也可以应用在数组类型的属性上, 此时 Spring 将会把所有匹配的 bean 进行自动装配。
(5)@Autowired 注解也可以应用在集合属性上, 此时 Spring 读取该集合的类型信息, 然后自动装配所有与之兼容的 bean 。
(6)@Autowired 注解用在 java.util.Map 上时, 若该 Map 的键值为 String, 那么 Spring 将自动装配与之 Map 值类型兼容的 bean, 此时 bean 的名称作为键值。

3、Spring 还支持 @Resource 和 @Inject 注解,这两个注解和 @Autowired 注解的功用类似。
(1)@Resource 注解要求提供一个 bean 名称的属性,若该属性为空,则自动采用标注处的变量或方法名作为 bean 的名称。
(2)@Inject 和 @Autowired 注解一样也是按类型匹配注入的 Bean, 但没有 reqired 属性。
(3)建议使用 @Autowired 注解。

4、在使用@Autowired之前,我们对一个bean配置起属性时,使用的是property属性配置


二、实例演示

1、UserRepository接口和对应的实现类

package com.at.beans.annotation.repository;

public interface UserRepository {

	void save();
}

package com.at.beans.annotation.repository;

import org.springframework.stereotype.Repository;

@Repository("userRepository")
public class UserRepositoryImpl implements UserRepository{

	public void save() {
		System.out.println("UserRepository Save......");
	}

}


2、UserService类

package com.at.beans.annotation.service;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.at.beans.annotation.repository.UserRepository;

@Service
public class UserService {
	@Autowired
	private UserRepository userRepository;
	
	public void add(){
		System.out.println("UserService add......");
		userRepository.save();
	}
}


3、UserController类

package com.at.beans.annotation.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;

import com.at.beans.annotation.service.UserService;

@Controller
public class UserController {
	@Autowired
	private UserService userService;

	public void execute(){
		System.out.println("UserController execute......");
		userService.add();
	}
}


4、测试函数

		UserController userController = (UserController) ctx.getBean("userController");
		System.out.println(userController);
		userController.execute();

5、运算结果

六月 04, 2017 6:12:24 下午 org.springframework.context.support.AbstractApplicationContext prepareRefresh
信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@6be3f34c: startup date [Sun Jun 04 18:12:24 CST 2017]; root of context hierarchy
六月 04, 2017 6:12:24 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [beans-annotation.xml]
com.at.beans.annotation.controller.UserController@2e909348
UserController execute......
UserService add......
UserRepository Save......



三、说在后面

1、@Autowired的原理
其实在启动spring IoC容器的时候,容器自动装载了一个AutowiredAnnotationBeanPostProcessor后置处理器,当容器扫描到@Autowied、@Resource或@Inject时,就会在IoC容器自动查找需要的bean,并装配给该对象的属性

 


2、使用@Autowired的几点注意事项
(1)在使用@Autowired时,首先在容器中查询对应类型的bean,如果查询结果刚好为一个,就将该bean装配给@Autowired指定的数据;
(2)如果查询的结果不止一个,那么@Autowired会根据名称来查找。
(3)如果查询的结果为空,那么会抛出异常。可以通过设置@Autowired(required=false)来解决。


By luoyepiaoxue2014

微博地址:http://weibo.com/luoyepiaoxue2014 点击打开链接







你可能感兴趣的:(Spring,bean,Autowired,注解)