Bean验证和客观化

时间:2013-12-10 19:55:59

标签: google-app-engine bean-validation google-cloud-datastore objectify

我正在使用Objectify来管理GAE数据存储区持久性。我找不到使用Objectify进行Bean验证的有用文档。我尝试使用Hibernate Validator,但它仍然允许我保留无效数据。 为了使事情变得清晰,这是一个简单的例子:

@Entity
public class Person {
        @Id Long id;
        // validate firstName is 1-20 characters, like Hibernate's @Length(min=1, max=20) annotation 
        @Index private String firstName;

// GETTERS & SETTERS
}

感谢任何帮助!

0 个答案:

没有答案