Spring混合配置
Spring混合配置
一、在JavaConfig中引入其他配置
- 在JavaConfig中引入JavaConfig配置
使用@Import({OtherConfig1.class,OtherConfig2.class})
- 在JavaConfig中引入XML配置
使用@ImportResource(classpath:other-config1.xml)
二、在XML中引入JavaConfig配置
- 在XML中引入XML配置
使用<import resoune=”other-config.xml”/>
- 在XML中引入JavaConfig配置
使用<bean class=”config.OtherConfig” />