按顺序在spring中加载属性文件

时间:2013-06-07 06:07:19

标签: java xml spring

有没有办法按顺序在spring中加载属性文件?我理解属性是一个Hashtable,地图是无序的。我想要一个基于xml的解决方案而不是基于Java的解决方案。理想情况下,这应该可以从外部配置。

Edit:
I mean the contents of the properties file should be read and preserved in the same order as in the properties file. Eg:
fr.wiki=http://fr.wikipedia.org
en.wiki=http://en.wikipedia.org
...

If I read the properties file, fr.wiki should be first, en.wiki should be second and so on.

1 个答案:

答案 0 :(得分:0)

无法按属性文件中的编写顺序获取属性。您可以在商品名称中添加数字:

component.01.key = value1
component.02.key = value2
component.03.key = value3
...

请参阅Pulling values from a Java Properties file in order?