实际上在输入字段中映射路径时,我得到了这个异常, 在这里,我将添加jsp页面,其中正在进行exepetion
<form:label path="firstName">
First Name<span class="req">*</span>
</form:label>
<form:input type="text" path="firstName" required autocomplete="off" />
答案 0 :(得分:3)
问题在于您的输入
这是您的输入
<form:input type="text" path="firstName" required autocomplete="off" />
这是预期的输入:
<form:input type="text" path="firstName" required="required" autocomplete="off" />