ここに私のフォームビーンがあります:-
public class LoginFormBean {
@NotEmpty
private String userId;
@NotEmpty
private String password;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPassword() {
return password;
}
public void setPassword(String pass) {
this.password = pass;
}
}
そして、私の message.properties ファイルに次のように書きます:-
NotEmpty={0} must not empty.
次のようなエラーメッセージが表示されます:userId must not empty.
およびpassword must not empty.
しかし、エラーメッセージをUser Id must not empty.
またはとして表示したい'Password must not
empty.'
@NotEmpty(message="User Id must not empty")
formBean で使用できることはわかっていますが、メッセージを変更する必要があるかのようにメッセージを同期したいので、オーバーヘッドが少なくなります。JSR ドキュメントを検索しましたが、属性名をその場で
置き換えるものは見つかりませんでした。2日から立ち往生している私を助けてください。
それが不可能な場合は教えてください。そうでない場合は、別の方法で私を助けてください。userId
User Id
ありがとう
シャムス