I have multiple sqlQueries.xml files e.g sqlQueries.xml, sqlQueriesAB.xml, sqlQueriesBC.xml and i want to load all of them using below tag but it seems that only supports loading one file only.
<util:properties id="sqlQueries" location="classpath:sqlQueries.xml" /> - This is working. in this case, i have moved all entries from other sqlQueries*.xml to this 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" /> - this is not working. Error same as above.
Can someone tell me how can i load multiple .xml file using util-properties or other way?
Thanks