caslogoutview.jsp
来自「CAS在Tomcat中实现单点登录项目,单点登录(Single Sign On 」· JSP 代码 · 共 21 行
JSP
21 行
<jsp:directive.include file="includes/top.jsp" /> <div id="msg" class="success"> <h2><spring:message code="screen.logout.header" /></h2> <p><spring:message code="screen.logout.success" /></p> <p><spring:message code="screen.logout.security" /></p> <%-- Implementation of support for the "url" parameter to logout as recommended in CAS spec section 2.3.1. A service sending a user to CAS for logout can specify this parameter to suggest that we offer the user a particular link out from the logout UI once logout is completed. We do that here. --%> <c:if test="${not empty param['url']}"> <p> <spring:message code="screen.logout.redirect" arguments="${param['url']}" /> </p> </c:if> </div><jsp:directive.include file="includes/bottom.jsp" />
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?