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登录显示的主要内容,如果未能解决你的问题,请参考以下文章

jsp基础语言-jsp代码段

在 JSP 中的 <% %> 代码片段中添加链接

jsp内置对象

我在eclipse中用html写一个登录界面,能显示出来,用jsp写一个也能显示出来,那这两者有什

JSP 语法

JavaWeb实现用户登录注册功能实例代码(基于Servlet+JSP+JavaBean模式)