乐趣区

关于spring:Spring配置类替代xml配置文件

@Configuration // 示意该类是配置类
@ComponentScan(backPackages={"com.zong.spring"}) // 示意注解扫描哪个文件
public class SpringConfig{
}

// 加载配置文件

ApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);
退出移动版