2

我有一个带有名字字段的表单的 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方法。这是完成验证的地方。

4

2 回答 2

1

我遇到了同样的问题,我通过(痛苦地)迭代 Spring MVC form:inputjsp 标签的源代码找到了解决方案......我想我会在这里分享它,也许它可以帮助某人。

简而言之:问题来自form:input标签。此标记在评估其值时检查与此字段(path属性)相关的错误,如果发现任何错误,它将使用实例的rejectedValue属性FieldError而不是命令或表单对象中的字段值。

在控制器方法的参数中使用@Valid注解时,Spring 将正确填充对象的rejectedValue属性FieldError

但是,如果您FieldError使用短构造函数(3 args)手动创建对象,则不会设置rejectedValue属性,并且标签将使用此空值进行显示...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标签将使用 的属性rejectedValueFieldError这是这个更长的构造函数中的第三个参数,并且在使用更简单的 3 args 构造函数时没有设置......

请注意,命令或表单对象(此处为 userInformation)上的实际值始终是正确的,这使得该错误/怪癖很难跟踪。

希望对某人有所帮助,最终...

于 2013-03-19T12:01:28.323 回答
0

在返回之前发生错误时尝试将用户信息添加到模型

if(result.hasErrors()){
model.addAttribute("userInformation", userInformation); 
return UMConstants.Page.ADD_USER;

}

更新

我想我弄清楚了你的问题。当您遇到错误时,您调用 addUser 方法并在 add user 方法中创建新的 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;
  }
于 2012-11-10T01:54:19.877 回答