Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含数据的文本文件。我想将此数据设置为 String 实例变量。
我知道我可以使用 Java I/O 来做到这一点,读取文件并将其内容设置为 String 变量。
但是有没有一种简单的方法来使用 Spring 配置文件初始化字符串?
尝试使用带有此 xml 标签的属性文件:
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:YourFile.properties" /> </bean>
并将值用作 ${your_key}
是的,您可以使用Resource然后在资源上使用 getFile() 来做到这一点。检查此春季文档。这里有更好的例子。
Resource