In my Spring Config, I have defined three beans as following.
<bean id="validationFlag-dev" class="java.lang.Boolean">
<constructor-arg value="false"/>
</bean>
<bean id="validationFlag-test" class="java.lang.Boolean">
<constructor-arg value="true"/>
</bean>
<bean id="validationFlag-prod" class="java.lang.Boolean">
<constructor-arg value="true"/>
</bean>
In my service, I would like to @Autowired the bean based on the spring profile. I'm trying as per below to define the qualifier name based on the active spring profile but it is giving an error cannot find bean with qualifier. How can i handle Qualifier name in this situation in spring MVC. Please advise.
@Autowired
@Qualifier("validationFlag-${spring.profiles.active}")
Boolean validationFlag;