v<c:if test="${param.username}" > </c:if>
如何检查param.username是否存在?
使用not empty支票。
not empty
<c:if test="${not empty param.username}" > </c:if>
编辑:如果您有形式的参数?username(无值),则使用起来更安全${param.username ne null}
?username
${param.username ne null}