1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.dobbinsoft.fw.support.annotation;
|
| import org.springframework.stereotype.Component;
|
| import java.lang.annotation.*;
|
| @Target({ElementType.TYPE})
| @Retention(RetentionPolicy.RUNTIME)
| @Component
| @Documented
| public @interface DynamicConfigProperties {
|
| public String prefix();
|
| }
|
|