srping 两种配置方式:xml 和javaConfig

前端之家收集整理的这篇文章主要介绍了srping 两种配置方式:xml 和javaConfig前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

xml方式传统方式

javaConfig 方式为 ben方式配置

main启动方式:

xml:

String paths[] = {"spring-context.xml"};

ApplicationContext ctx = new ClassPathXmlApplicationContext(paths);

javaConfig:

AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(AppContext.class);

AppContext.class 为spring 配置ben

javaConifg方式 注解:

@Configuration

@ImportResource("classpath:/dubbo-*.xml")

javaConfig方式和xml方式可以同时存在@ImportResource("classpath:/dubbo-*.xml")注解可以再ben中引入xml配置

猜你在找的XML相关文章