博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring学习(16)--- 基于Java类的配置Bean 之 基于泛型的自动装配(spring4新增)...
阅读量:6161 次
发布时间:2019-06-21

本文共 1950 字,大约阅读时间需要 6 分钟。

例子:

定义泛型Store

package javabased;public interface Store
{}

 两个实现类StringStore,IntegerStore

package javabased;public class IntegerStore implements Store
{}

 

package javabased;public class StringStore implements Store
{ }

 java config实现bean配置

package javabased;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class StoreConfig {		@Autowired	private Store
s1; @Autowired private Store
s2; @Bean public StringStore stringStore() { return new StringStore(); } @Bean public IntegerStore integerStore() { return new IntegerStore(); } @Bean(name="test_generic") public String print(){ //测试 System.out.println("s1 : "+s1.getClass().getName()); System.out.println("s2 : "+s2.getClass().getName()); return ""; } }

XML配置:

 单元测试:

package javabased;import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class UnitTest {		@Test	public void test(){		ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring-beanannotation.xml");  		context.getBean("test_generic");			}}

 结果:

2015-7-8 15:12:04 org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@32bf7190: startup date [Wed Jul 08 15:12:04 CST 2015]; root of context hierarchy2015-7-8 15:12:04 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions信息: Loading XML bean definitions from class path resource [spring-beanannotation.xml]s1 : javabased.StringStores2 : javabased.IntegerStore

 

也可参考(挺详细的):

 

转载于:https://www.cnblogs.com/JsonShare/p/4629511.html

你可能感兴趣的文章
飞翔的秘密
查看>>
Red Hat 安装源包出错 Package xxx.rpm is not signed
查看>>
编译安装mysql-5.6.16.tar.gz
查看>>
活在当下
查看>>
每天进步一点----- MediaPlayer
查看>>
PowerDesigner中CDM和PDM如何定义外键关系
查看>>
跨域-学习笔记
查看>>
the assignment of reading paper
查看>>
android apk 逆向中常用工具一览
查看>>
MyEclipse 报错 Errors running builder 'JavaScript Validator' on project......
查看>>
Skip List——跳表,一个高效的索引技术
查看>>
Yii2单元测试初探
查看>>
五、字典
查看>>
前端js之JavaScript
查看>>
Log4J日志配置详解
查看>>
实验7 BindService模拟通信
查看>>
scanf
查看>>
Socket编程注意接收缓冲区大小
查看>>
SpringMVC初写(五)拦截器
查看>>
检测oracle数据库坏块的方法
查看>>