Spring-13:泛型依賴注入(Spring4.X新特性)
阿新 • • 發佈:2019-01-02
Spring 4.x 中可以為子類注入子類對應的泛型型別的成員變數的引用。
首先建立兩個泛型基類:
BaseRepository<T> 和 BaseService<T>
public class BaseRepository<T> {
}
public class BaseService<T> { @Autowired protected BaseRepository<T> repository; public void add() { System.out.println("add..."); System.out.println(repository); } }
在BaseService<T>中有一個BaseRepository<T>的引用,並且在add方法中打印出來。注意這裡還用了@Autowired實現自動裝配,接下來spring會自動將BaseRepository<T>的派生物件裝配進來。
然後定義一個User類:
public class User {
}
以及UserRepository和UserService類:
import org.springframework.stereotype.Repository; @Repository public class UserRepository extends BaseRepository<User> { }
import org.springframework.stereotype.Service;
@Service
public class UserService extends BaseService<User>{
}
在xml檔案中配置自動掃描:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <context:component-scan base-package="com.atguigu.spring.beans.generic.di"></context:component-scan> </beans>
最後執行如下main方法:
package com.atguigu.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();
}
}
列印輸出如下:
可以看到,UserRepository被自動裝配給了BaseRepository<T>的引用。