我试图避免在 mybatis3 中使用额外的 xml 来定义映射器。注释正好适合。
我对@SelectProvider/@InsertProvider/etc 的使用有点困惑。不要以为网上有很多资源可以指导我。
基本上,我想在mybatis3中找到alternative for的注解版本。
例如,我有一个 xml 映射器,我想将其转换为使用注释
<select ...>
<where>
<if cause.....>
</if>
<if cause......>
</if>
</where>
</select>
谁能提供包括代码在内的具体答案/解决方案?
提前致谢!