Here is my configuration, any thoughts? or can some one confirm this?

<!-- Configurer that replaces ${...} placeholders with values from a
properties file -->
<!-- (in this case, JDBC-related settings for the dataSource definition
below) -->
<!-- THIS STOPS WORKING SINCE INTRODUCTION OF ORCHESTRA BEANS -->
  
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="location" value="/WEB-INF/jdbc-hsqldb.properties"/>
</bean>

<!-- EL expression is not translated -->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  <property name="driverClassName" value="${jdbc.driverClassName}"/>
  <property name="url" value="${jdbc.url}"/>
  <property name="username" value="${jdbc.username}"/>
  <property name="password" value="${jdbc.password}"/>
</bean>

Thanks

-- 
View this message in context: 
http://www.nabble.com/-orchestra--PropertyPlaceholderConfigurer-STOPS-working-after-the-introduction-of-orchestra-into-my-configuration-tf4126979.html#a11736335
Sent from the MyFaces - Users mailing list archive at Nabble.com.

Reply via email to