Hello guys, I have a kinda strange, mostly theoret...
# spring
m
Hello guys, I have a kinda strange, mostly theoretical question: is there a way to get a value of top-level property as a part of autowired list? For example:
Copy code
@Component
val myTopLevelProperty = "Some Data Here"

@Configuration
class SomeConfig {
     @Autowired
     private lateinit var autowiredList: List<String>
}