Hi, I have two modules which are totally independent from each other. Each module uses more then one resource configuration. I would like to be able to create a new module, which has a dependency to the other two modules. This new module should only know the "main" config file and not the implementation details of the "submodules". So we have only one entry point.
What I really want is to combine sets of sql resources. This case is used in a framework for java. Cheers, Martin -----Original Message----- From: Brandon Goodin [mailto:[EMAIL PROTECTED] Sent: Montag, 23. Mai 2005 14:26 To: ibatis-user-java@incubator.apache.org Subject: Re: Merging multiple sqlmaps configurations 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 >