Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I don't understand the question. Is "detection" in the default profile and "rulesDao" in a non-default profile? Can't you just define them both in the same profile? – Dave Syer Nov 28 '12 at 17:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.