标签: java class configuration instances
我有一个配置文件,其中包含以下详细信息:
<app> <domain name="temp1" value=123/> <domain name="temp2" value=455/> </app>
在我的代码中,我根据名称存储值。 就像temp1是名称一样,在表的column1中存储值。 如果temp2是名称,则在表的column2中存储值。 我想根据配置文件中的值创建多个域实例,以及有关如何执行此操作的任何建议。