当使用 Spring Security 登录失败时,它会引发异常并在我的 JSP 中显示如下:
<c:if test="${not empty error}">
<div class="errorblock">
Your login attempt was not successful, try again.<br /> Caused :
${sessionScope["SPRING_SECURITY_LAST_EXCEPTION"].message}
</div>
</c:if>
现在我正在从 JSP 更改为 Thymeleaf 并尝试做同样的事情,但是当登录失败时,sessionScope
变量似乎为空。
<div th:if="${error}" class="errorblock" th:text="'testing ' + ${sessionScope}">
</div>
这打印出来testing null
。当我将视图解析器改回 JSP 时,它运行良好。我想我做错了什么。有什么建议么?