All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aggrepoint.dao.annotation.Replace Maven / Gradle / Ivy

The newest version!
package com.aggrepoint.dao.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 为了防止SQL注入,被替换的内容必须符合模式[\w\s\.]*
 * 
 * @author Jim
 */
@Target({ ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
public @interface Replace {
	String value() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy