`
wangcheng
  • 浏览: 1463428 次
  • 性别: Icon_minigender_1
  • 来自: 青岛人在北京
社区版块
存档分类
最新评论

POJO加Annotation做validation验证

    博客分类:
  • java
阅读更多

写了一个POJO + Annotation来做validation的验证方案。思路就是在POJO里加入Annotation来标注验证条件,以取代validation.xml等验证方式。

 

先看一下最终的应用效果

 

public class UserBean {

	private String userName;
	
	private String password;
	
	private String email;

	@SRequired(messageKey = "Name is required.")
	public String getUserName() {
		return userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}

	@SRequired(messageKey = "Password is required.")
	@SLength(min = 6, max = 20, messageKey = "Password is 6 - 20")
	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	@SRegularEx(regex = RegPatterns.EMAIL, messageKey = "Please input a valid email.")
	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}
}

 

public class ValidateTest {

	public static void main(String[] args) {
		UserBean user = new UserBean();
		List<String> messageList = ValidationUtils.validate(user);
		
		for (String s : messageList) {
			System.out.println(s);
		}
	}
}

 

这里只需要在POJO的get方法上加annotation说明验证条件,以及验证失败后的消息(或消息的i18n key)即可,ValidationUtils将收集验证失败的消息并返回。

 

推荐将annotation加在public getXXX方法上,而不是加在field上。主要原因是

  • 这样不会破坏java的public, private等访问限制。
  • 加在get方法上更加灵活,你可以验证由几个filed组合而成的一个String是否符合条件

 

再说一下实现,其实很简单, 像下面这样创建validation annotation

 

@Retention(RetentionPolicy.RUNTIME) 
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface SLength {
	
	String messageKey() default "";
	
	int max() default 255;
	
	int min() default 0;
}

 

这里SLength的默认范围是 0-255 基本符合大部分项目的需求。

 

在ValidationUtils中先找出POJO的所有method,然后遍历,取得一个method的返回值,再取出这个method上的所有annotation,遍历这些annotation并找出那些是我们定义的validation annotation,再根据不同的条件分别进行验证。

 

	private static void validateMethods(Object bean, List<String> messageList) {
		//get all of public methods
		Method[] publicMethods = bean.getClass().getMethods();
		for (Method method : publicMethods) {
			//ignore if it is not getXXX method
			if (!isGetterMethod(method)) {
				continue;
			}
			Object value = null;
			try {
				value = method.invoke(bean, null);
			} catch (Exception e) {
				e.printStackTrace();
			}
			//Annotation[] annotations = method.getDeclaredAnnotations();
			Annotation[] annotations = method.getAnnotations();
			for (Annotation annotation : annotations) {
				validateAnnotation(value, annotation, messageList);
			}
		}
	}

 

	private static void validateAnnotation(Object value, Annotation annotation, List<String> messageList) {
		
		if (annotation instanceof SRequired) {
			validateRequired(value, (SRequired) annotation, messageList);
		} else if (annotation instanceof SLength) {
			validateLength(value, (SLength) annotation, messageList);
		} else if (annotation instanceof SRegularEx) {
			validateRegularEx(value, (SRegularEx) annotation, messageList);			
		}
	}

 

在这里大部分的验证都可以通过 SRegularEx annotation 来做,你只需要自行扩展 RegPatterns 类中定义的正则表达式就行了。有特殊需要的话,你可以创建自己的validation annotation,并扩展ValidationUtils.validateAnnotation()方法。

 

做这个的时候,只是为了验证web form提交,有什么不足的还请大家指点。

 

分享到:
评论
4 楼 neptune 2008-08-28  
我也和你做了一个一样的东西,给你提点见意.
1.把你的Validator Annotation改为metadata Annotation对扩展最好。
2.required不应做为annotation。其注释在pojo中的某个field没有意义。
3 楼 stworthy 2008-08-27  
这只能在WEB环境中进行,脱离WEB就只能得到key而得不到具体的message了。
2 楼 wangcheng 2008-08-27  
可以在annotation的messageKey里写i18n的message key,
验证完后,得到了error message 的 i18n key 就随你怎么处理了。
用JSTL也行,在Action里处理也行。
1 楼 stworthy 2008-08-27  
请问这样的国际化如何解决?

相关推荐

    Struts2自定义校验框架

    它支持两种验证方式:基于注解的验证(Annotation-based Validation)和基于XML的验证(XML-based Validation)。自定义校验主要是通过编写自定义校验器或扩展内置校验器来实现。 2. **自定义校验器实现** 自定义...

    Spring2.5+Struts2.0+hibernate3.0+Dwr+jquery+displayTag

    1 基于SSH,service采用 annotation注入减少配置 2 利用struts2 的LoginAction-validation.xml 3 在bean里把service包;暴露DWR,写了一个验证用户名的流程 4 采用jpa作为POJO,还是减少配置 5 加入display的分页,并且...

    xlsmapper:将Excel工作表映射到JavaBean(POJO)的库

    XlsMapper是Java库,用于将Excel工作表映射到POJO。 被许可人 Apache License Verion 2.0 依靠 Java1.8的 Apache POI v3.17 SpringFramework 3.0+(可选) BeanValidation 1.0 / 1.1 / 2.0(可选) 设置 为...

    struts学习资料

    9. **Validation框架**:Struts提供了内置的验证框架,可以对用户输入进行校验,确保数据的正确性和完整性。 10. **国际化与本地化**:Struts支持多语言环境,开发者可以通过资源包(Properties文件)为不同地区...

    play框架手册

    Localised validation messages 局部验证消息 - 55 - 验证消息参数 - 55 - 定制局部验证消息 - 56 - 定制teral(非局部)验证消息 - 57 - 在模板里显示验证错误消息 - 57 - 验证注释 - 60 - 验证复杂对象 - 60 - 内...

    hibernate注解

    - **`@Entity`**:此注解用于标记一个类为实体Bean,即持久化的POJO类。它告诉Hibernate这是一个需要被持久化的对象。 ```java @Entity public class User { // ... } ``` - **`@Table`**:此注解用于指定...

    @rules-开源

    例如,你可以创建一个`@Validation`注解,用于指定某个字段在保存前需要进行的验证逻辑。这样,当数据发生变化时,@rules会自动检测到这些注解,并执行对应的验证规则,从而避免了手动编写大量条件判断逻辑。 开源...

Global site tag (gtag.js) - Google Analytics