如何在Spring java config中定義<context:spring-configured/>
?<context:spring-configured />的spring java配置相當於什麼?
我目前使用的@ImportResource
只有這個作爲解決方法的XML上下文,但是如果這也可以在Java配置中完成,那將會很好。
如何在Spring java config中定義<context:spring-configured/>
?<context:spring-configured />的spring java配置相當於什麼?
我目前使用的@ImportResource
只有這個作爲解決方法的XML上下文,但是如果這也可以在Java配置中完成,那將會很好。
根據http://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/aop.html
@Configuration
@EnableSpringConfigured
public class AppConfig {
}
Docs是的替代品:<context:spring-configured/>
不知道我是怎麼錯過的!謝謝! –
:)不客氣! –
你試過'@ EnableSpringConfigured'? – Setu