top.wboost.common.base.annotation.AutoWebApplicationConfig Maven / Gradle / Ivy
package top.wboost.common.base.annotation;
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;
/**
* web application自动扫描注解
* @className AutoWebApplicationConfig
* @author jwSun
* @date 2017年9月13日 下午8:16:35
* @version 1.0.0
*/
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@AutoConfig
public @interface AutoWebApplicationConfig {
String value() default "";
String suffix() default "web";
}