在jfinal中如何实现注解读取配置

类似于spring boot 中@ConfigurationProperties(prefix = "config") 或者@Value("${xxx}")的功能

评论区

杜福忠

2023-07-30 10:04

要获取 Java 类的注解,可以使用 Java 的反射机制和注解 API。
如:注解类 a= 目标类.class.getAnnotation(注解类.class);

网上搜索资料时,直接搜索Java XXX 就可以了,不用加JFinal,除非是要扩展JF的功能。比如下面两个扩展:
https://jfinal.com/share/2594
https://jfinal.com/share/2354

weirdor

2023-07-31 13:42

@杜福忠 谢谢大佬

zzutligang

2023-08-18 17:57

我自己搞了一个注解,例如在controller里用法:
@ConfigValue("default.sysname")
String configValue;
public void testConfigValue() {
this.renderText(configValue);
}

热门反馈

扫码入社