jsp登录显示
Posted JokerQ-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp登录显示相关的知识,希望对你有一定的参考价值。
1.登录成功设置session
request.getSession().setAttribute("user", user);
2.前台test
<div class="col-md-3" style="padding-top:20px"> <ol class="list-inline"> <c:if test="${empty user }"> <li><a href="${pageContext.request.contextPath }/user?method=loginUI">登录</a></li> <li><a href="${pageContext.request.contextPath }/user?method=registUI">注册</a></li> </c:if> <c:if test="${not empty user }"> ${user.name }:你好 <li><a href="${pageContext.request.contextPath }/order?method=findAllByPage&currPage=1">我的订单</a></li> <li><a href="${pageContext.request.contextPath }/user?method=logOut">退出</a></li> </c:if> <li><a href="${pageContext.request.contextPath }/jsp/cart.jsp">购物车</a></li> </ol> </div>
以上是关于jsp登录显示的主要内容,如果未能解决你的问题,请参考以下文章