I'm working on a Spring-Boot written with Kotlin project that uses a custom method level annotation foo
that has a String property called biz
throughout the project.
@Foo(biz = "buzz")
Is there a way with Spring-Boot or Kotlin to get a list of all the values used in the biz
property of foo
?