Hello. I use SqlMapper.Configure(XmlDocument) to get SqlMapper. Now I got warning that this method will be removed from next iBATIS version and DomSqlMapBuilder.Configure should be used instead.
But DomSqlMapBuilder.Configure is not static. So I create new instance of DomSqlMapBuilder and call its Configure method in my code. Is it right or there is some static method that should be used? I'm configuring 3 instances of the SqlMapper and reference to the SqlMapper objects are saved and used at runtime to prevent unnecessary object creation overhead. Thank you.

