微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

MyBatis基本使用2-Mapper代理开发

1.新建mapper接口,com.xx.mapper ,新建接口TestMapper

2.resources中 新建com/xx/mapper  文件夹 ,可以与1中的包名对应 。 新建 TestMapper.xml

3.TestMapper接口中实现相同的方法

List<Test> GetAll();

4. TestMapper.xml

<mapper namespace="com.ld.mapper.TestMapper" >
    <select id="GetAll" resultType="com.ld.model.Test" >
        select * from test;
    </select>
</mapper>

5.使用

 //List<Test> tests= sqlSession.selectList("test.GetAll");


TestMapper testMapper=sqlSession.getMapper(TestMapper.class);

List<Test> tests=testMapper.GetAll();

 6.mybatis-config.xml修改

    <mappers>
        <!--加载sql的映射文件-->
        <package name="com.ld.mapper" />
    </mappers>

 7.别名简化 包名

<typeAliases>
        <package name="com.ld.model"/>
</typeAliases>


<mapper namespace="com.ld.mapper.TestMapper" >
    <select id="GetAll" resultType="Test" >
        select * from test;
    </select>
</mapper>

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。