泛型依赖注入

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了泛型依赖注入相关的知识,希望对你有一定的参考价值。

  1. BaseService<T> 类中有一个BaseRepository<T>的成员变量,并且利用@Autowired实现了自动装配。
  2. UserService 和 UserRepository分别是 BaseService<T> 和 BaseRepository<T>的具体类型的子类。
  3. 当UserService 和 UserRepository分别用@Service 和 @Repository装配以后,Spring 可以让这两个子类之间自动实现关联。具体实现参考代码:

 

技术分享

 

  • BaseRepository基类
package spring.beans.generic.di;

public class BaseRepository<T> {

}

 

  • BaseService 基类,在这个基类中利用 @Autowired 实现了对 BaseRepository 属性的自动装配
package spring.beans.generic.di;

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

public class BaseService<T> {
    @Autowired
    protected BaseRepository<T> repository; 
    
    public void add(){
    	System.out.println("add...");
    	System.out.println(repository);  	
    }
}

 

  • 泛型类:User
package spring.beans.generic.di;

public class User {
}

 

  • 继承类: UserRepository 用 @Repository 来装配
package spring.beans.generic.di;

import org.springframework.stereotype.Repository;

@Repository
public class UserRepository extends BaseRepository<User> {

}

 

  • 继承类:UserService 用 @Service 来装配
package spring.beans.generic.di;

import org.springframework.stereotype.Service;

@Service
public class UserService extends BaseService<User> {

}

 

  • 测试函数:
package spring.beans.generic.di;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {
	public static void main(String[] args){
		ApplicationContext ctx = new ClassPathXmlApplicationContext("beans-generic-di.xml");
		
		UserService userService = (UserService) ctx.getBean("userService");
		
		userService.add();	
	}
}

 

  • 测试输出:从测试输出我们可以看出 ,自动实现了子类之间的相互关联。
一月 28, 2016 9:36:52 上午 org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh
INFO: Refreshing org[email protected]1f17ae12: startup date [Thu Jan 28 09:36:52 CST 2016]; root of context hierarchy
一月 28, 2016 9:36:52 上午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [beans-generic-di.xml]
add...
[email protected]

  

 

以上是关于泛型依赖注入的主要内容,如果未能解决你的问题,请参考以下文章

串线篇spring泛型依赖注入原理

Spring之泛型依赖注入

Android 片段和依赖注入

Spring初学之泛型依赖注入

Spring_泛型依赖注入

泛型依赖注入