On Spring 3, I got a bean in my applicationContext.xml with this definition :
<bean id="serviceProperties" class="org.springframework.security.cas.ServiceProperties">
<property name="service" value="http://www.mysite.com/my_webapp/j_spring_cas_security_check"/>
<property name="sendRenew" value="false"/>
</bean>
Instead of
"value="http://www.mysite.com/my_webapp/j_spring_cas_security_check"
Is there a way to directly and dynamically inject the "base URL" of my tomcat server + j_spring_cas_security_check
( like we can do in a jsp to set :
<base href="<%=request.getScheme() + "://" + request.getServerName()+ ":" + request.getServerPort() + request.getContextPath()+ "/"%>" />
)