property 설정
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.eactive.ext.kjb.common;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.FIELD)
|
||||
public @interface KjbPropertyValue {
|
||||
String key();
|
||||
String defaultValue() default "";
|
||||
}
|
||||
Reference in New Issue
Block a user