我需要在 spring 框架之上开发一个包装器。详情如下:
将有一个称为模板的文件
<beans>
<bean class"com.sample.SampleClass">
<property name="abc" identifier="id100" > defaultValue </property>
<property name="abc" identifier="id101" > </property>
</bean>
</beans>
现在会有很多值文件 值文件的内容将是:
id100={ someValue}
id101={ overidingValue}
现在在运行时将为每个值文件创建新的 bean。因此,值文件将通过覆盖值文件中的值来为每个值文件创建一个单独的 bean。
我该如何着手开发这样的框架?任何指针?
这只是我非常基本的想法。
在这种情况下,我如何使用 Alex 提到的 BeanFactory?