在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/Java  網(wǎng)絡(luò)安全  HTML  Office/ Thymleaf如何實現(xiàn)JSTL對httpsession中對象的空值判斷

Thymleaf如何實現(xiàn)JSTL對httpsession中對象的空值判斷

<c:choose>
            <c:when test="${empty login}">
                <li><a href="../index/loginUI.do"><i class="fa fa-user"></i>注冊/登錄</a>
                </li>
            </c:when>
            <c:otherwise>
                <li><a href="../index/mycenter.do"><i class="fa fa-user"></i>個人中心</a></li>
                <li><a href="../index/logout.do"><i class="fa fa-user"></i>退出登錄</a>
                </li>
            </c:otherwise>
        </c:choose>

這是我在JSTL中寫的,可以成功運行,無任何異常

 <li><a th:href="@{/login/loginUI}" th:if="${#httpSession.login}eq null"><i class="fa fa-user-md"></i>管理員登陸</a>
            </li>
            <li><a th:href="@{/index/loginUI}" th:if="${#httpSession.login}eq null"><i class="fa fa-user"></i>注冊/登錄</a>
            </li>
            <li><a th:href="@{/index/mycenter}" th:unless="${#httpSession.login} eq null"><i class="fa fa-user"></i>個人中心</a></li>
            <li><a th:href="@{/index/logout}" th:if="${#httpSession.login} ne null"><i class="fa fa-user"></i>退出登錄</a>
            </li>

但是我在thymleaf中使用時總是無法找到login

然后是我的java代碼

 @RequestMapping("/index")
    public ModelAndView index(HttpServletRequest request, HttpServletResponse response) {
        Page page = new Page("filter_form");
        page.setPageSize(8);
        String currentPage = request.getParameter("page.currentPage");
        if (StringUitl.IsNotNull(currentPage)) {
            page.setCurrentPage(Integer.parseInt(currentPage));
        }
        //拼裝map進行查詢
        Map<String, Object> map = new HashMap<String, Object>();
        map.put("page", page);
        List list = changguanService.getForPage(map);
        //展示的數(shù)據(jù)
        request.setAttribute("list", list);
        request.setAttribute("paging", page.getPageStr());
        System.out.println(page.getPageStr());
        return new ModelAndView("index/index");
    }
 @RequestMapping("/login")
    public void login(HttpServletRequest request, HttpServletResponse response, HttpSession httpSession) throws IOException {
        String pwd = request.getParameter("pwd");
        String no = request.getParameter("no");
        response.setCharacterEncoding("utf-8");
        Login login = (Login) httpSession.getAttribute("login");
        if (login == null) {
            User user = userService.checkUserNo(no, pwd);
            if (user == null) {
                response.setContentType("text/html;charset=utf-8");
                response.getWriter().write("<script>alert('賬號密碼錯誤');</script>");
                response.getWriter().write("<script> window.location='../index/index' ;window.close();</script>");
                response.getWriter().flush();
            }
            login = new Login(user.getId(), user.getName(), "user", "");
            httpSession.setAttribute("login", login);
        }
        response.setContentType("text/html;charset=utf-8");
        response.getWriter().write("<script>alert('登錄成功');</script>");
        response.getWriter().write("<script> window.location='../index/index' ;window.close();</script>");
        response.getWriter().flush();
    }

請問thymleaf如何才能實現(xiàn)jstl的這種直接判斷未創(chuàng)建對象的空值問題

回答
編輯回答
孤星

過于執(zhí)著httpsession的類型,仔細閱讀了文檔,發(fā)現(xiàn)session.login就可以直接拿到值

        <li><a th:href="@{/login/loginUI}" th:unless="${session.login} ne null"><i class="fa fa-user-md"></i>管理員登陸</a>
    </li>
        <li><a th:href="@{/index/loginUI}" th:unless="${session.login} ne null"><i class="fa fa-user"></i>注冊/登錄</a>
        </li>
        <li><a th:href="@{/index/mycenter}" th:if="${session.login}"><i class="fa fa-user"></i>個人中心</a></li>
        <li><a th:href="@{/index/logout}" th:if="${session.login}"><i class="fa fa-user"></i>退出登錄</a>
        </li>
2017年5月15日 08:33