@Value("${properties.name:Tom}")String name;@Value("${properties.email}")String email;我想通过注释的值获取 Filed。 getField("properties.name") 返回字符串字段名称,而不是值“tom”。spring有这样的方法吗?
1 回答
青春有我
TA贡献1784条经验 获得超8个赞
可以使用反射,因为Value
有 RetentionPolicyRUNTIME
Field field = Stream.of(YourClass.class.getFields()) .filter(field -> field.isAnnotationPresent(Value.class)) .filter(field -> field.getAnnotation(Value.class).value().contains("properties.name")) // or compare to whole expression, or use startsWith, or regex... Also think about NPE check .findFirst() .orElse( /* HANDLE FIELD NOT PRESENT */);
添加回答
举报
0/150
提交
取消