欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring纯注解开发

程序员文章站 2022-07-12 23:03:01
...

创建配置类, 替代xml配置文件

@Configuration//作为配置类,替代xml配置文件
@ComponentScan (basePackages= {" com..atguigu"})
public class SpringConfig {

}