本文主要是介绍Spring框架03:利用注解配置类取代Spring配置文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
上一讲,我们利用注解精简了XML配置文件,这一讲,我们准备利用注解配置类取代XML配置文件。
一、利用注解配置类取代Spring配置文件
1、在net.tjl.spring包里创建lesson03子包
2、创建Spring配置类来取代Spring配置文件
package net.tjl.spring.lesson03;import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;@Configuration
@ComponentScan("net.tjl.spring.lesson03") //组件扫描表
public class AnnotationConfig {}
3、创建测试类 - TestKnight
package net.tjl.spring.lesson03;import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;/*** 功能:测试骑士类* 作者:谭金兰* 日期:2021年03月17日*/
public class TestKnight {private AnnotationConfigApplicationContext context;@Beforepublic void init() {// 基于Spring配置类创建应用容器context = new AnnotationConfigApplicationContext(AnnotationConfig.class);}@Testpublic void testBraveKnight() {// 根据名称从应用容器里获取勇敢骑士对象BraveKnight braveKnight = (BraveKnight) context.getBean("mike");// 勇敢骑士执行任务braveKnight.embarkOnQuest();}@Testpublic void testDamselRescuingKnight() {// 根据名称从应用容器里获取救美骑士对象DamselRescuingKnight damselRescuingKnight = (DamselRescuingKnight) context.getBean("damselRescuingKnight");// 救美骑士执行任务damselRescuingKnight.embarkOnQuest();}@Afterpublic void destroy() {// 关闭应用容器context.close();}
}
*运行测试类,查看结果
这篇关于Spring框架03:利用注解配置类取代Spring配置文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!