Spring配置类替代xml配置文件
Posted Zong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring配置类替代xml配置文件相关的知识,希望对你有一定的参考价值。
@Configuration //表示该类是配置类
@ComponentScan(backPackages={"com.zong.spring"}) //表示注解扫描哪个文件
public class SpringConfig{
}
//加载配置文件
ApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);
以上是关于Spring配置类替代xml配置文件的主要内容,如果未能解决你的问题,请参考以下文章
Spring 注解开发 -- Spring新注解(完全替换Spring配置文件 使用配置类)
SpringSpringMVCMyBatis 的全注解方式整合
JAVAEE框架整合技术之Spring02-AOP面向切面编程技术