gpt4 book ai didi

java - spring java方法是否通过@Value字符串文字获取字段?

转载 作者:行者123 更新时间:2023-12-02 01:57:03 24 4
gpt4 key购买 nike

@Value("${properties.name:Tom}")
String name;
@Value("${properties.email}")
String email;

我想通过注释的值来归档。getField("properties.name") 返回字符串字段名称,而不是值“tom”。spring有这样的方法吗?

最佳答案

可以使用反射,因为 Value 有 RetentionPolicy RUNTIME

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 */);

关于java - spring java方法是否通过@Value字符串文字获取字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57394211/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com