![JAR search and dependency download from the Maven repository](/logo.png)
org.wowtools.h2.usrfun.UserFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of h2 Show documentation
Show all versions of h2 Show documentation
魔改版h2,主要针对sql的自定义重写。 原h2项目地址https://github.com/h2database/h2database
The newest version!
package org.wowtools.h2.usrfun;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 加入此注解的静态方法可通过UserFunctionManager注册为h2函数
* @author liuyu
* @date 2016年12月22日
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface UserFunction {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy