Spring整合Mybatis

步骤:

  1. 导入相关的包
    • junit
    • mybatis
    • mysql数据库
    • spring相关
    • aop织入
    • mybatis-spring【new】
    
        
            junit
            junit
            4.12
        
        
            mysql
            mysql-connector-java
            5.1.47
        
        
            org.mybatis
            mybatis
            3.5.2
        
        
            org.springframework
            spring-webmvc
            5.1.9.RELEASE
        
        
        
            org.springframework
            spring-jdbc
            5.1.9.RELEASE
        
        
        
            org.aspectj
            aspectjweaver
            1.8.13
        
        
        
            org.mybatis
            mybatis-spring
            2.0.2
        
    
  1. 编写配置文件
  2. 测试

(一)、回忆mybatis

  1. 编写实体类
  2. 编写核心配置文件
  3. 编写接口
  4. 编写接口对应的Mapper.xml
  5. 在核心配置文件中注册Mapper.xml
  6. 测试

(二)、整合Mybatis方式一

官方文档:mybatis-spring

  1. 编写数据源配置
    
    
        
        
        
        
    
  1. sqlSessionFactory
    
    
        
        
        
        
    
  1. sqlSessionTemplate
    
    
        
        
    

前三个配置在一个spring.xml 文件中(作为一个工具配置),实现获得数据源、sqlSessionFactory、sqlSession这三类资源的配置文件

  1. 需要给接口加实现类【】
public class UserMapperImpl implements UserMapper {
    // 在原来所有的操作:都使用sqlSession来执行
    // 而现在都使用SqlSessionTemplate
    private SqlSessionTemplate sqlSession;

    public void setSqlSession(SqlSessionTemplate sqlSession) {
        this.sqlSession = sqlSession;
    }
    public List getUserList() {
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        return mapper.getUserList();
    }
}
  1. 将实现类注入Spring中

在Spring总配置文件applicationContext.xml 中 import 上面配置资源的xml,注入该实现类

    

    
    
        
    
  1. 测试(获得Spring容器,获取bean,调用方法)
public void test() {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserMapper userMapper = context.getBean("userMapper",UserMapper.class);
        List userList = userMapper.getUserList();
        for (User user : userList) {
            System.out.println(user);
        }
    }

(三)、整合Mybatis方式二

  • 实现类

继承SqlSessionDaoSupport,直接获取SqlSession的对象

public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
    public List getUserList() {
        return getSqlSession().getMapper(UserMapper.class).getUserList();
    }
}
  • 注入spring
    
        
    
  • 测试

(四)、总结工具配置




    
    
        
        
        
        
    

    
    
        
        
        
        
    

    
    
        
        
    

你可能感兴趣的:(Spring整合Mybatis)