1
在春季3,我在我的applicationContext.xml的這一定義一個bean:春豆 - 注入語境基本URL物業
<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>
而不是
"value="http://www.mysite.com/my_webapp/j_spring_cas_security_check"
有沒有一種辦法直接和動態地注入我的Tomcat服務器的「基礎URL」 + j_spring_cas_security_check
(就像我們可以在JSP做設置:
<base href="<%=request.getScheme() + "://" + request.getServerName()+ ":" + request.getServerPort() + request.getContextPath()+ "/"%>" />
)