property 설정

This commit is contained in:
Rinjae
2025-11-10 16:50:37 +09:00
parent 9165e8f495
commit 797529c774
4 changed files with 122 additions and 0 deletions
@@ -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 "";
}