I can easily create new property by adding it to yml or properties file: my.custom.property=5
. but how can i do the same from the code? sth like:
@SomeSpringAnnotation("my.custom.property")
fun myFun() = 5
or
registerProperty("my.custom.property", 5)