Spring——DI配合接口编程案例
Posted KLeonard
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring——DI配合接口编程案例相关的知识,希望对你有一定的参考价值。
体验一下Spring的DI配合接口编程,完成一个字母大小写转换的案例:
步骤如下:
1.创建一个接口ChangeLetter
public interface ChangeLetter
// 声明一个方法
public String change();
2.写两个实现类,分别实现大写转小写,和小写转大写:
public class UpperLetter implements ChangeLetter
private String string;
public String getString()
return string;
public void setString(String string)
this.string = string;
@Override
public String change()
// 把小写字母转成大写
return string.toUpperCase();
public class LowerLetter implements ChangeLetter
private String string;
public String getString()
return string;
public void setString(String string)
this.string = string;
@Override
public String change()
// 把大写字母转成小写
return string.toLowerCase();
3.配置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">
<!--<bean id="changeLetter" class="com.gavin.inf.UpperLetter">
<property name="string" value="abcdefg"/>
</bean>-->
<bean id="changeLetter" class="com.gavin.inf.LowerLetter">
<property name="string" value="ABCDEFG"/>
</bean>
</beans>
可以看到,在配置文件中,我们配置了两个ChangeLetter的实现类,但是id是一样的,同时注释掉了其中一个。
4.在测试类中测试:
public class App1
public static void main(String[] args)
// 暂时不用工具类
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("com/gavin/inf/beans.xml");
ChangeLetter changeLetter = (ChangeLetter) applicationContext.getBean("changeLetter");
System.out.println(changeLetter.change());
那么这个时候我们可以通过修改Spring配置文件,而无须修改源代码,就可以达到转变实现类的目的。
比如在Spring配置文件中,我们注释掉另外一个,而打开这一个,那么程序的运行结果就完全改变了。
以上是关于Spring——DI配合接口编程案例的主要内容,如果未能解决你的问题,请参考以下文章