I'm creating a corporate framework, and trying to make it more transparent as possible to the developers.
Here there are many developers in many projects using the same sqlMapConfig.xml file. This is my problem.
What i liked to do:
When the developer create a new DAO, (Product for example), the DAO factory will dinamic add the mapping file for the DAO (ProductMapping.xml) in the SqlMapClient.
In the framework, the package of classes and mapping are fixed by rules, and is easy to found to instance the DAO and to add the mapping.
I'm very happy using iBatis, and this feature will help me a lot.
Thanks
Marcelo Martins
On 2/1/06, Nathan Maves <
[EMAIL PROTECTED]> wrote:
Can you give us a little more information on your problem?
What are you trying to accomplish by using the functionality?
Why would you not just define all of your mappings in the
sqlMapConfig.xml file?
Nathan
On Feb 1, 2006, at 6:20 AM, Marcelo Martins wrote:
> How can i do something like this:
>
> SqlMapClient sqlMap = SqlMapClientBuilder.buildSqlMapClient(reader)
>
> sqlMap.addResource("com/foo/mapping/MyMapping.xml");
>
> Please, if is not possible, how can i modify ibatis to do this?
