> I moved some properties from cas.properties and placed them in a
> file at $CAS_HOME/host.properties, and redeployed.
If you removed properties from cas.properties, don't forget that you
may also need to update cas-servlet.xml which makes reference to the
cas.properties file. Following is the contents of our
spring-configuration/propertyFileConfigurer.xml file in case that
helps:
<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>
We have a similar customization in cas-servlet.xml to pick up
cas.properties from the filesystem:
<bean id="casPropertyPlaceholderConfigurer2"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
p:location="file://${cas.home}/cas.properties" />
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