首页
App
&
Coffee
文档
项目
分享
反馈
俱乐部
登录
注册
在jfinal中如何实现注解读取配置
weirdor
2023-07-30 01:36
类似于spring boot 中
@ConfigurationProperties
(
prefix =
"config"
) 或者
@Value
(
"${xxx}"
)的功能
项目:
JFinal
评论区
杜福忠
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);
}
回复
发送
我要反馈
热门反馈
扫码入社
如:注解类 a= 目标类.class.getAnnotation(注解类.class);
网上搜索资料时,直接搜索Java XXX 就可以了,不用加JFinal,除非是要扩展JF的功能。比如下面两个扩展:
https://jfinal.com/share/2594
https://jfinal.com/share/2354