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

cn.yangjunda.annotation.JuandaAutowired Maven / Gradle / Ivy

package cn.yangjunda.annotation;

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

/** 
 * @Description 自动注入注解(如果不加别名自动通过接口类型注入实现类)
 * @author juanda
 * @date 2017年8月30日下午5:12:40
 * 
 */  
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface JuandaAutowired {

	/**
	 * 表示给filed注入的bean的name
	 * @return
	 */
	String value() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy