I'm trying to figure out a way for getting a property values list, for example
test.property = val1, val2, val3
and for each value added, create at runtime another bean of the same certain type, with the added value.
Basically, getting the properties is not the issue, but creating the beans by them. If i'm trying to use BeanFactoryPostProcessor to create the new beans, the properties are null in the phase of postProcessBeanFactory...
Is it possible? Thanks!