我有一个spring mvc应用程序,它有一个带有名字字段的表单。该字段应至少为3个字符以上。我在我的支持bean类中使用了hibernate @Size验证器:
@Size(min=3, message="message.key")
String firstName;
如果此验证失败,则会显示相应的错误消息。但是,当页面在失败后重新加载时,将从输入字段中清除为名字输入的值。如何将该值保留在字段中进行编辑?如果可能......
代码如下:
JSP Snippet - 这不是portlet应用程序
<portlet:renderURL var="createUserAction">
<portlet:param name="action" value="createUser"/>
</portlet:renderURL>
<form:form method="post" commandName="userInformation" action="${createUserAction}" htmlEscape="false">
<h2>
<fmt:message key="msg.label.form.title" bundle="${msg}" />
</h2>
<form:errors path="*" cssClass="errorblock" element="div"></form:errors>
<p>
<form:label path="firstName">
<fmt:message key="msg.label.form.fname" bundle="${msg}"/>
</form:label>
<form:input path="firstName" />
</p>
<p>
<form:label path="lastName">
<fmt:message key="msg.label.form.lname" bundle="${msg}"/>
</form:label>
<form:input path="lastName" />
</p>
<div style="margin-left: 150px; margin-top: 20px">
<input type="submit" value="Save" />
<input type="reset" value="Reset" />
</div>
</form:form>
豆
@Component
public class UserInformation {
@NotEmpty(message="msg.error.required.lname")
private String lastName;
@NotEmpty(message="msg.error.required.fname")
@Size(min=3, message="msg.error.length.fname")
private String firstName;
public UserInformation() {
super();
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}
控制器
@Controller
@RequestMapping("VIEW")
public class UserManagement {
@Autowired
private UserInformation userInformation;
@Autowired
private Validator validator;
@Autowired
private MessageSource messageSource;
@RequestMapping(params="page=addUser")
public String addUser(Model model){
userInformation = new UserInformation();
model.addAttribute("userInformation", userInformation);
return Page.ADD_USER;
}
@RequestMapping(params="action=createUser")
public String createUser(
@ModelAttribute(value="userInformation") UserInformation userInformation,
BindingResult result, Model model) throws ApplicationException{
// get values
String firstName = userInformation.getFirstName();
System.out.println("fname="+firstName);
Set<ConstraintViolation<UserInformation>> constraintViolations =
validator.validate(userInformation);
for(ConstraintViolation<UserInformation> constraintViolation : constraintViolations) {
String propertyPath = constraintViolation.getPropertyPath().toString();
String message = constraintViolation.getMessage();
result.addError(
new FieldError(
"member",
propertyPath,
messageSource.getMessage(
message,
null,
Locale.ENGLISH
)
)
);
}
// Errors found
if(result.hasErrors()){
return UMConstants.Page.ADD_USER;
}
String successMsg = messageSource.getMessage(
"msg.user.added",
new Object[]{userInformation.getFirstName()},
Locale.ENGLISH
);
model.addAttribute("successMsg", successMsg);
return UMConstants.Page.INDEX;
}
}
用户可以单击执行 addUser 方法的链接,以使用上面的JSP代码段指示的表单加载页面。当用户单击提交按钮时,将调用 createUser 方法。这是验证的地方。
答案 0 :(得分:0)
在返回之前发生错误时尝试将用户信息添加到模型
if(result.hasErrors()){
model.addAttribute("userInformation", userInformation);
return UMConstants.Page.ADD_USER;
}
更新
我想我弄明白了你的问题。如果您遇到错误,则调用addUser方法并在内部添加用户方法,您将创建新的UserInformation对象,并且没有值显示在页面上。你可以尝试下面的addUser方法。
@RequestMapping(params="page=addUser")
public String addUser(Model model,HttpServletRequest request){
userInformation = (UserInformation)request.getAttribute("userInformation");
if(userInformation == null){
userInformation = new UserInformation();
}
model.addAttribute("userInformation", userInformation);
return Page.ADD_USER;
}
答案 1 :(得分:0)
我遇到了同样的问题,我通过(痛苦地)遍历Spring MVC form:input
jsp标签的源代码找到了解决方案......我想在这里分享它,也许它可以帮助某人。
简而言之:问题来自form:input
标记。此标记在评估其值时会检查与此字段关联的错误(path
属性),如果找到任何错误,则会使用rejectedValue
实例的FieldError
属性来自命令或表单对象的字段值。
在控制器方法的参数中使用@Valid
注释时,Spring将正确填充rejectedValue
对象上的FieldError
属性。
但是如果使用短构造函数(3 args)手动创建FieldError
对象,则rejectedValue
的{{1}}属性将不会被设置,并且标记将使用此null值显示...
解决方案是在创建FieldError
对象时使用构造函数的长版本,例如:
FieldError
result.addError(
new FieldError(
"member",
"firstName",
userInformation.getFirstName(),
false,
new String[0],
new Object[0],
messageSource.getMessage(
message,
null,
Locale.ENGLISH
)
)
);
标记将使用form:input
的{{1}}属性,这是此较长构造函数中的第三个参数,并且在使用更简单的3 args构造函数时未设置。 ..
请注意,命令或表单对象(此处为userInformation)的实际值始终是正确的,这使得这个bug / quirk很难跟踪。
希望帮助某人,最终......