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配置文件的主要内容,如果未能解决你的问题,请参考以下文章