Mybatis的动态代理模式
Posted 薛小生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis的动态代理模式相关的知识,希望对你有一定的参考价值。
mybatis的动态代理需要遵循4个规则:
1.xml文件中的namespace的值为接口类的全限命名
2.statement的id要跟接口的方法名相同。
3.statement的parameterType要跟接口的方法的参数的类型相同。
4.statement的resultType要跟接口方法的返回值类型相同。
接口:
public Student selectStuById(int id);
xml文件:
<select id="selectStuById" resultType="com.neuedu.bean.Student" parameterType="Integer"> select * from stu1 where sid = #{sid} </select>
以上是关于Mybatis的动态代理模式的主要内容,如果未能解决你的问题,请参考以下文章