我想存储文件名,随着新文件的添加,文件名会不断变化。我想在以后需要支持新的'文件'时寻找服务器代码的最小变化。我的想法是将它们存储在属性文件中或作为Java枚举,但仍然认为哪种方法更好。< / p>
我正在使用REST并在URL中使用“文件类型”。 示例rest url:
主机名/文件的内容/类型
其中TYPE的值可以是以下任何值:standardFileNames1,standardFileNames2,randomFileName1,randomFileName2
我已经使用TYPE对文件进行分组,以便在添加新文件时最小化url的更改。由于安全问题,不希望在URL中包含文件名。
我的想法是这样的:
public enum FileType
{
standardFileNames1("Afile_en", "Afile_jp"),
standardFileNames2("Bfile_en","Bfile_jp"),
randomFileName1("xyz"),
randomFileName2("abc"),
...
...
}
standardFileNames1=Afile_en,Afile_jp
standardFileNames2=Bfile_en,Bfile_jp
randomFileName1=xyz
randomFileName2=abc
我知道在属性中使用此功能可以节省每次更改的构建工作,但仍希望了解您的观点,以便在考虑所有因素的情况下找出最佳解决方案。
谢谢! Akhilesh
答案 0 :(得分:1)
I often use property file + enum combination. Here is an example:
public enum Constants {
PROP1,
PROP2;
private static final String PATH = "/constants.properties";
private static final Logger logger = LoggerFactory.getLogger(Constants.class);
private static Properties properties;
private String value;
private void init() {
if (properties == null) {
properties = new Properties();
try {
properties.load(Constants.class.getResourceAsStream(PATH));
}
catch (Exception e) {
logger.error("Unable to load " + PATH + " file from classpath.", e);
System.exit(1);
}
}
value = (String) properties.get(this.toString());
}
public String getValue() {
if (value == null) {
init();
}
return value;
}
}
Now you also need a property file (I ofter place it in src, so it is packaged into JAR), with properties just as you used in enum. For example:
constants.properties:
#This is property file...
PROP1=some text
PROP2=some other text
Now I very often use static import in classes where I want to use my constants:
import static com.some.package.Constants.*;
And an example usage
System.out.println(PROP1);
Source:http://stackoverflow.com/questions/4908973/java-property-file-as-enum
答案 1 :(得分:0)
我的建议是保留属性或配置文件并编写通用代码以获取文件列表并在java中解析。因此,无论何时出现新文件,服务器端都不会有任何更改,而是在属性或配置文件中添加一个条目。