I'm really not sure what you are asking here. There is no way to combine two different sqlMapConfig files into one. You would have to create a new sqlMapConfig with all of the sqlMap files configured into it or load two SqlMapClients with their own sqlMapConfig files.
Brandon On 5/23/05, Zeltner Martin <[EMAIL PROTECTED]> wrote: > Hello, > > I've got following two sqlmaps configuration files: > > > file1: > <sqlMapConfig> > <sqlMap resource="ibatis/table-keyword.xml" /> > </sqlMapConfig> > > file2: > <sqlMapConfig> > <sqlMap resource="ibatis/table-annotation.xml" /> > <sqlMap resource="ibatis/table-file.xml" /> > <sqlMap resource="ibatis/table-link.xml" /> > <sqlMap resource="ibatis/table-book.xml" /> > <sqlMap resource="ibatis/table-formalpublication.xml" /> > <sqlMap resource="ibatis/table-referencekeywordrelationship.xml" /> > </sqlMapConfig> > > > > I'd like to merge these two files now. Is there a possability so that I do > not have to create a file like this below? > > file3: > <sqlMapConfig> > <sqlMap resource="ibatis/table-keyword.xml" /> > <sqlMap resource="ibatis/table-annotation.xml" /> > <sqlMap resource="ibatis/table-file.xml" /> > <sqlMap resource="ibatis/table-link.xml" /> > <sqlMap resource="ibatis/table-book.xml" /> > <sqlMap resource="ibatis/table-formalpublication.xml" /> > <sqlMap resource="ibatis/table-referencekeywordrelationship.xml" /> > </sqlMapConfig> > > > Thanks, > Cheers, > Martin >