共计 201 个字符,预计需要花费 1 分钟才能阅读完成。
@Configuration // 示意该类是配置类
@ComponentScan(backPackages={"com.zong.spring"}) // 示意注解扫描哪个文件
public class SpringConfig{
}
// 加载配置文件
ApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);
正文完