cas登录成功后跳转地址和退出后跳转首页
cas登录成功后跳转地址和退出后跳转首页
CAS版本5.3
1.登录页面 的登录链接地址为 login.html
...
<span v-if="username == ''"><!--如果为空字符串 那么就是没有登陆 显示-->
请<a href="login.html" target="_blank">登录</a><!--login.html是登录成功后跳转的页面-->
</span>
...
2.编写跳板页面 写在webapp目录下 这里命名为login.html
<!--跳板页面-->
<script>
location.href="index.do";
</script>
退出后跳转首页
修改cas服务端的配置文件 application.properties,添加配置
#退出后指向首页
cas.logout.redirectUrl=http://localhost:9102/index.do