私は助けが必要です。私はjsp、MVCの初心者です。 Spring 3MVCのカスタムバリデーターを使用してフォーム入力を検証したいと思います。
私のバリデータークラス
package validators;
import models.UserModel;
import org.springframework.stereotype.Component;
import org.springframework.validation.Errors;
import org.springframework.validation.ValidationUtils;
import org.springframework.validation.Validator;
@Component
public class UserValidator implements Validator {
@Override
public boolean supports(Class clazz) {
return UserModel.class.isAssignableFrom(clazz);
}
@Override
public void validate(Object target, Errors errors) {
ValidationUtils.rejectIfEmptyOrWhitespace(errors, "firstname", "Enter firstname.");
ValidationUtils.rejectIfEmptyOrWhitespace(errors, "surname", "Enter surname.");
ValidationUtils.rejectIfEmptyOrWhitespace(errors, "login", "Enter login.");
}
}
コントローラクラス
package controllers;
import Java.util.ArrayList;
import models.UserModel;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import validators.UserValidator;
import database.UserDB;
@Controller
public class UserController {
@RequestMapping(value="pouzivatel/new", method=RequestMethod.POST)
public ModelAndView newUser(@ModelAttribute UserModel user, BindingResult result){
UserValidator validator = new UserValidator();
validator.validate(user, result);
if(result.hasErrors()){
return new ModelAndView("/user/new","command",user);
}
...
}
ユーザーのモデル
package models;
public class UserModel {
private String firstname="";
private String surname="";
public String getFirstname() {
return firstname;
}
public String getSurname() {
return surname;
}
public void setFirstname(String firstname) {
this.firstname = firstname;
}
public void setSurname(String surname) {
this.surname = surname;
}
}
ディレクトリ/ web-inf/userにあるJSPveiw new.jsp(フォームのみ)
<form:form method="post" action="new.html">
<fieldset>
<table>
<tr>
<td>
<form:label path="firstname">FirstName</form:label>
</td>
<td>
<form:input path="firstname" />
<form:errors path="firstname" />
</td>
</tr>
<tr>
<td>
<form:label path="surname">Surname</form:label>
</td>
<td>
<form:input path="surname" />
<form:errors path="surname" />
</td>
</tr>
</table>
</fieldset>
<div>
<button type="submit" id="btOk">Ok</button>
</div>
</form:form>
ディスパッチャservlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="controllers" />
<context:component-scan base-package="validators" />
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
問題は、表示検証メッセージが表示されていることです。検証は成功し、変数resut(BindingResult)にはエラーがあります。コントローラーはコードの一部に従う
if(result.hasErrors()){
return new ModelAndView("/user/new","command",user);
別の方法は、注釈検証を使用することです(私はカスタムバリデーターを優先します)が、入力フィールドが空のときに検証メッセージを表示できないのはなぜですか。
それを正しく行う方法の例を教えてください。
返信ありがとうございます。
これは、ビューとコントローラーのデフォルトのモデル属性名が一致しないために発生します。
modelAttribute
(またはcommandName
)属性なしで_<form:form>
_を記述する場合、デフォルトのモデル属性名command
が使用されます。@ModelAttribute UserModel user
_を書き込むと、この属性の名前は大文字と小文字を区別しないクラス名、つまりuserModel
であると見なされます。つまり、バリデーターによって生成されたエラーメッセージはuserModel
という名前のモデル属性にバインドされますが、ビューはモデル属性command
のエラーを表示しようとします。
ビュー(_<form:form modelAttribute = "userModel" ...>
_)またはコントローラー(@ModelAttribute("command")
)のいずれかで、モデル属性名を明示的に設定する必要があります。