
cn.coder.struts.annotation.WebInit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of struts Show documentation
Show all versions of struts Show documentation
A simple, light Java WEB + ORM framework.
The newest version!
package cn.coder.struts.annotation;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(RUNTIME)
@Inherited
@Target(ElementType.TYPE)
@Documented
public @interface WebInit {
String init() default "init";
String destroy() default "destroy";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy