I currently have an mvc spring project and i want to include spring profile in my application config. In my servlet i register a bean that will handle all request
<!-- Route all request to the detection controller -->
<bean name="detection" class="detection.web.DetectionController">
<property name="rulesDao" ref="rulesDao"></property>
</bean>
The referenced bean is defined in my project application.xml configuration file.
The problem I have is that the rulesDao depends on an environment configuration property file bean managed by profile in the application.xml.
Is there any way i can "initialise" my profile via the application.xml before the dectection bean is loaded ?
The work around i found is to have my detection bean extends a main controller who load the correct application.xml with the correct profile and then load the rulesDao from ctx.getBean but I think it's a bit out of the Ioc concept.