cas4.2 使用客户端自定义页面登录一种解决方法

阅读更多

参考:https://wiki.jasig.org/display/CAS/Using+CAS+without+the+Login+Screen

 

https://wiki.jasig.org/display/CAS/Using+CAS+from+external+link+or+custom+external+form

 

服务端:

casLoginView.jsp

 



<%
String auto = request.getParameter("auto");
if (auto != null && auto.equals("true")) {
%>

    
        
    
    

        
"> " /> " /> <% if ("true".equals(request.getParameter("rememberMe"))) {%> <% } %>
<% } else { %> //................ //这里把casLoginView.jsp 原来的东西粘贴过来。不使用客户端登录页面时候,使用默认页面登录 <% } %>

 

 

 

客户端:

 




    

Username :

Password :

Remember me :

 

 

 

服务端地址:
https://cas.example.com/cas/

客户端地址:
http://app.example.com/myapp/

 

 

 

你可能感兴趣的:(Login,Screen,page,登录)