how to load multiple xml files using spring util-properties -


i have multiple sqlqueries.xml files e.g sqlqueries.xml, sqlqueriesab.xml, sqlqueriesbc.xml , want load of them using below tag seems supports loading 1 file only.

<util:properties id="sqlqueries" location="classpath:sqlqueries.xml" /> - working. in case, have moved entries other sqlqueries*.xml file.

<util:properties id="sqlqueries" location="classpath*:sqlqueries*.xml" /> - not working..it says that, [classpath*:sqlqueries*.xml] doesn't exists.

<util:properties id="sqlqueries" location="classpath*:sqlqueries.xml,sqlqueriesab.xml, sqlqueriesbc.xml" /> - not working. error same above.

can tell me how can load multiple .xml file using util-properties or other way?

thanks

<bean id="applicationproperties" class="org.springframework.beans.factory.config.propertyplaceholderconfigurer">         <property name="locations">             <list>                 <value>classpath:helloworld.properties</value>                 <value>classpath:helloworld1.properties</value>                     </list>         </property>         <property name="ignoreresourcenotfound" value="true" />         <property name="ignoreunresolvableplaceholders" value="true" /> </bean> 

should work xml file guess.


Comments

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -