在实现 jasig-CAS 时,我遇到了下一个问题:我想实现注销。现在它工作正常,但我希望 CAS 服务器在注销到请求来自的服务器后重定向用户(例如,http://localhost:8080/myApp
)。我试图在安全上下文中添加“服务”,但这里没有发生任何事情是我的弹簧安全上下文的一部分:
<security:logout logout-url="/logout"
logout-success-url="https://localhost:9543/cas-server-webapp-3.4.10/logout?service=http://localhost:8080/myApp"
invalidate-session="true" />
所有配置和程序均取自本手册。