ignoreDependencyInterface和ignoreDependencyType的作用?
2 年前
· 来自专栏
Spring框架专题
什么是ignoreDependencyInterface和ignoreDependencyType?
相信看过Spring源码的读者一定在遇到过这么两个方法:什么是ignoreDependencyInterface和ignoreDependencyType?
/**
* Ignore the given dependency interface for autowiring.
* 忽略给定依赖接口的自动装配
* @see org.springframework.context.ApplicationContextAware
void ignoreDependencyInterface(Class<?> ifc);
* Ignore the given dependency type for autowiring:
* 忽略给定依赖类型的自动装配
* @param type the dependency type to ignore
void ignoreDependencyType(Class<?> type);
只看官方文档的解释很可能理解错误,作者也去查阅了一些文章,但是描述的还是有点难以理解,于是自己实验证实了一下,话不多说,本文直接通过例子给大家详细证明这两个接口的意思和使用方法.
准备用来实验注入spring容器的bean
首先我们需要准备五个model,作为实验注入Spring容器中的实例对象,如下:
public class User {
//这个接口类用来测试ignoreDependencyInterface方法,看能否注入User
public interface UserAware {
void setUser(User user);
//这个用来测试ignoreDependencyType方法
public class Admin {
//这个就是和上面的做对比,不对它做任何处理
public class Role {
//实现了上面的UserAware接口并实现setUser方法,
//并且将User、Admin、Role属性注入
public class Person implements UserAware{
private User user;
private Admin admin;
private Role role;
public User getUser() {
return user;
//实现了UserAwre接口的setUser方法
public void setUser(User user) {
this.user = user;
public Admin getAdmin() {
return admin;
public void setAdmin(Admin admin) {
this.admin = admin;
public Role getRole() {
return role;
public void setRole(Role role) {
this.role = role;
}
上面代码中各个对象之间的关系如下:
其中User、Admin、Role都是空的实例对象,UserAware是个接口,里面有一个setUser(User user)方法,Person类中有User、Admin、Role三个对象属性,并且实现了UserAwre接口和它的方法,然后对所有的属性添加get、set方法.
配置spring注入属性的xml文件
我们需要将上面的实例bean注入到Spring容器中,所以我们配置一个xml,以xml的方式将bean注入到spring容器中,如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd"
default-autowire="byType">
<!--这个default-autowire作者测试的时候并不会影响到测试结果,我们后面分析-->
<bean id = "user" class="ignore.model.User"></bean>
<bean id = "role" class="ignore.model.Role"></bean>
<bean id = "admin" class="ignore.model.Admin"></bean>
<bean id="person" class="ignore.model.Person"></bean>
</beans>
配置启动类
@Test
public void testSimpleLoad(){