0
您能否解釋param.error
和param.logout
變量來自login.jsp
的參數在哪裏?jsp頁面中彈簧安全「param.error」?
我已經
<c:if test="${param.error != null}">
<div class="alert alert-danger">
Invalid username and password.
</div>
</c:if>
<c:if test="${param.logout != null}">
<div class="alert alert-success">
You have been logged out successfully.
</div>
</c:if>
感謝您的回答。你可以請給出什麼信息保存「參數」變量(屬性)? –
您正在設置一個對象類型變量「param」的Servlet中的某處。即 - > request.setAttribute(「param」,paramObject); –
您也可以通過JSTL將其設置爲.jsp文件。 –