Description
Neale Upstone opened SPR-7982 and commented
There's a real opportunity to nail some corner cases with profiles, and conversely the risk of propagating some open-doors to bad practice.
Reading the example given at http://blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/, I can see a few areas I'd like to be explicit for fast failure:
- To be able to define valid (/invalid) profile combinations. In your example, you can specify "production,dev", which is clearly not what is intended, and all too easy to do when profiles are less obviously exclusive. This could be achieved by allowing profiles combinations to be specified in the application context.
- To be able to configure specific bean definition override behaviour, by 'final' bean defs and/or by an override flag. This could be done at the level of a bean or on the now nestable <beans> element. ** This would have saved a LOT of time on the project I've recently been working on, mainly due to the number of components developed by different teams with varying levels of Spring experience **
I quite like the idea of allowing some combination of final and override as it would give expressiveness to developers intent. <bean id='blah' override='true' ../>
would not only clearly denote that override was intended, but also allow validation that there was already a bean to override.
Either of these suggestions would prevent the 'prod,dev' profile from being bootstrapped.
Examples would be:
<config>
<profileOptions exclusive="production,dev,uat"/>
<profileOptions exclusive="perf,trace"/>
</config>
<beans profile="production" final="true">
... jndi datasource bean defs
</beans>
<beans profile="dev" final="true">
... dev datasources
</beans>
Affects: 3.1 M1
Reference URL: http://blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/#comment-185086
Issue Links:
- Revised support for bean definition visibility and overriding [SPR-8189] #12839 Revised support for bean definition visibility and overriding ("is depended on by")
- @Bean(override=true) [SPR-8528] #13172
@Bean
(override=true) ("is duplicated by") - Allow @Bean methods to override definitions in XML [SPR-7028] #11690 Allow
@Bean
methods to override definitions in XML - Provide boolean logic on bean profiles, i.e. NOT profile. [SPR-9180] #13818 Provide boolean logic on bean profiles, i.e. NOT profile.
- Support not (!) operator for profile selection [SPR-8728] #13370 Support not (!) operator for profile selection
- Bean Configuration Overriding [SPR-5509] #10181 Bean Configuration Overriding
- Support @Bean method visibility [SPR-7170] #11829 Support
@Bean
method visibility
6 votes, 12 watchers