如何在jsp页面中放置html required属性

时间:2014-10-28 02:30:20

标签: java html twitter-bootstrap jsp

我正在使用bootstrap到我的jsp页面。还有jsp taglibs。

这是我的输入字段代码。

<form:form path="password" cssClass="form-control"
                                  required data-bv-notempty-message="The password is required and cannot be empty"
                                   data-bv-identical="true" data-bv-identical-field="confirmPassword" data-bv-identical-message="The password and its confirm are not the same"
                                   data-bv-different="true" data-bv-different-field="username" data-bv-different-message="The password cannot be the same as username"/>

当我删除war应用程序时,它会在浏览器中出现此错误。

org.apache.jasper.JasperException: /WEB-INF/pages/sign_up.jsp (line: 44, column: 44) equal symbol expected

如何把我需要的属性放在JSP ???

1 个答案:

答案 0 :(得分:1)

我正在使用这种方式,一切正常。

<form:input path="projectName" class="form-control" required='true' placeholder="Enter Project name" />