mybatis的mapper接口动态代理开发

Posted 暮尘时雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis的mapper接口动态代理开发相关的知识,希望对你有一定的参考价值。

一、必须遵守的四项原则
1:接口 方法名==xx.xml中的id名
2:方法返回值类型与Mapper.xml文件中返回值类型一致
3:方法的入参类型与Mapper.xml文件中入参值类型一致
4:命名空间绑定接口

二、

public class UserMapperTest {

private SqlSession sqlSession;

private InputStream in;

@Before
public void before() throws IOException {
    //1.读取配置文件
    in = Resources.getResourceAsStream("SqlMapConfig.xml");
    //2.创建 SqlSessionFactory 的构建者对象
    SqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();
    //3.使用构建者创建工厂对象 SqlSessionFactory
    SqlSessionFactory sqlSessionFactory = builder.build(in);
     sqlSession = sqlSessionFactory.openSession();

}

@After
public void after() throws IOException {
    //7.释放资源
    sqlSession.close();
    in.close();
}

@Test
public void findUserById() {
    UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
    List<User> users = userMapper.findAll();
    for (User user : users) {
        System.out.println(user);
    }
}

}





以上是关于mybatis的mapper接口动态代理开发的主要内容,如果未能解决你的问题,请参考以下文章

02.MyBatis在DAO层开发使用的Mapper动态代理方式

Mybatis笔记 - Mapper动态代理开发方式

Mybatis实现Mapper动态代理方式

mybatis的mapper接口动态代理开发

mybatis mapper动态代理

Mybatis使用Mapper代理模式开发