Is it possible to do something like this:
<bean id="transactionManager"
class="${transaction.manager.class}">
.....
</bean>
I want the transaction manager class to be configurable at deployment time, so I want to set the class name from a properties file.
The above doesn't work as it doesn't recognize the fact that I am trying to substitute in a property value.


Reply With Quote
