【发布时间】:2018-02-10 00:37:42
【问题描述】:
您能否解释一下param.error 和param.logout 变量在login.jsp 中的参数来自哪里?
我在 spring boot 中使用过 spring security
<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>
【问题讨论】:
标签: spring jsp spring-security jstl