在我的spring xml文件中,我有一个bean:
<bean id="config" class="com.example.BeanConfig">
<property name="description" value="Long Description Here" />
</bean>
我想从description.txt中读取字符串,而不是内联定义长字符串。有没有办法在xml中执行此操作而无需编写Java类来处理它?
我已经遇到How do I load a resource and use its contents as a string in Spring但我不清楚如何将bean内容转换为属性值。
答案 0 :(得分:0)
您可以使用Spring的属性占位符和$ {property_name}查看https://dzone.com/articles/properties-spring