我有弹簧启动应用程序,用户发送参数,基于此参数,应该有配置。
我创建了文件名配置类型“Configration_Types.properies”,现在如何根据参数传递读取配置我不想创建数据库来查找它?
Type1=Type1
Type1.width=60
Type1.heght=715
Type2=Type2
Type2.width=100
Type2.heght=720
Type3=Type3
Type3.width=100
Type3.heght=700
Type4=Type4
Type4.width=450
Type4.heght=680
Type5=Type5
Type5.width=270
Type5.heght=750
例如传递 type4 应该获得配置
Type4的
450
680
答案 0 :(得分:0)
该功能可能是这样的:
public void readPropertyByType(String type)
{
InputStream input = null;
try
{
Properties prop = new Properties();
// if your type is Type4, the typeKey will be Type4. for compare data
String typeKey = type + ".";
String filename = "config.properties";
input = new FileInputStream(filename);
prop.load(input);
String typeInformation = "";
Enumeration< ? > e = prop.propertyNames();
while (e.hasMoreElements())
{
String key = (String)e.nextElement();
if (key.indexOf(typeKey) > 0)
{
typeInformation = typeInformation + prop.getProperty(key);
}
}
System.out.println("The data of type " + type + "is :" + typeInformation);
}
catch (IOException ex)
{
ex.printStackTrace();
}
finally
{
if (input != null)
{
try
{
input.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
}
希望有所帮助。
<强> --- --- UPDATE 强>
属性文件可能是这样的:
Type4.width = 450
Type4.heght = 680
Type5.width = 450
Type5.heght = 680
Type4 = 450,680
Type5 = 450,680
取决于每个选项,您可以在获得预期数据时中断while循环。
答案 1 :(得分:0)
如果您可以修改属性文件 Configration_Types.properies ,请执行以下操作: -
type[0].width=60
type[0].heght=715
type[1].width=100
type[1].heght=720
type[2].width=100
type[2].heght=700
type[3].width=450
type[3].heght=680
type[4].width=270
type[4].heght=750
您从属性文件中获取属性值的类将是: -
@Component
@ConfigurationProperties("type") // prefix type, find type.* values
public class GlobalProperties {
private List<Type> type = new ArrayList<Type>();
//getters and setters
public static class Type
{
private int width;
private int heght;
// getter setter
}
根据用户参数,您可以访问arraylist中的值。
希望这有帮助: