Ah... yes. That's something I need to look into. Turning lazy loading off does work. I got rid of the "enhancementEnabled" flag, as the new lazy loader can only work with enhancement.
Clinton
On Mon, Oct 12, 2009 at 1:14 PM, Martin Ellis
<ellis.m.a@...> wrote:
On Mon, Oct 12, 2009 at 7:29 PM, Guy Rouillier <
guyr-ml1@...> wrote:
> I switched a project under development from Beta 3 to Beta 4, and got
> several iterations of class not found exceptions. So far, I've identified
> the following dependencies on external JARs:
>
> cglib-2.2.jar :
http://cglib.sourceforge.net/
> asm-3.2.jar :
http://asm.ow2.org/
They're not mandatory dependencies - ibatis isn't intended to have any.
Perhaps try this setting, which should prevent it from trying to use cglib/asm:
<settings>
<setting name="lazyLoadingEnabled" value="false"/>
</settings>
Martin