要在spring中覆盖spring类(例如PropertySourcesPlaceholderConfigurer
),我们在spring xml中使用下面的config:
<beans:bean class="MyPropertyConfigurer"/>
并且
public class MyPropertyConfigurerextends extends PropertySourcesPlaceholderConfigurer {
@Override
protected void doProcessProperties {
//....
}
请参阅How to extend spring by configuring spring xml
它工作正常,但我的问题是:
beans:bean
,与使用@Configuration
bean相同吗?