> One more quick (probably more Spring related) question, I see you are 
> Expression Language in the xml (${database.url}).

No, no, that's not EL.  That's simply property placeholder
configuration.  We suck in a properties file from the filesystem to
keep our deployable the same across multiple nodes in a cluster:

  <bean id="propertyPlaceholderConfigurer"
    
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
      <list>
        <value>file://${cas.home}/cas.properties</value>
        <value>file://${cas.home}/vt-env.properties</value>
      </list>
    </property>
  </bean>

The ${cas.home} property is filtered by our build system into a real
path, which is a well-known location in our dev/pprd/prod
environments.

M

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to