
com.aggrepoint.dao.annotation.Replace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apdao Show documentation
Show all versions of apdao Show documentation
Data Access Object layer utilities
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