名フィールドを持つフォームを持つ春の mvc アプリケーションがあります。このフィールドは、少なくとも 3 文字以上である必要があります。バッキング Bean クラスで次のように休止状態の @Size バリデーターを使用しています。
@Size(min=3, message="message.key")
String firstName;
この検証が失敗すると、適切なエラー メッセージが表示されます。ただし、失敗後にページがリロードされると、名に入力された値が入力フィールドからクリアされます。その値を編集のためにフィールドに残すにはどうすればよいですか? もし可能なら....
コードは次のとおりです。
JSP スニペット - これはポートレット アプリケーションではありません
<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メソッドが呼び出されます。ここで検証が行われます。