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

org.yelong.support.properties.wired.PropertiesWired Maven / Gradle / Ivy

Go to download

对各种开源框架的包装、支持、拓展。这里也包含的yelong-core与orm框架的整合。 默认对所有依赖为 scope 为 provided 。您需要针对自己的需要进行再次依赖

There is a newer version: 2.2.0
Show newest version
/**
 * 
 */
package org.yelong.support.properties.wired;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

@Retention(RUNTIME)
@Target({ TYPE })
/**
 * @author PengFei
 */
public @interface PropertiesWired {

	String propertiesName() default "";
	
	String prefix() default "";
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy