I would like a simple, preferably annotation-based way to inject external properties into a java program, without using the spring framework (org.springframework.beans.factory.annotation.Value;)
SomeClass.java
@Value("${some.property.name}") private String somePropertyName; application.yml
some: property: name: someValue Is there a recommended way to do this in the standard library?
spring-* tags