ssm-spring集成mybatis

ssm-spring集成mybatis,第1张

ssm-spring集成mybatis ssm-spring集成mybatis MyBatis-Spring简介

MyBatis-Spring是一个依赖库,可以无缝的将MyBatis整合到Spring中。该库可以让MyBatis参与到Spring事务管理中,可以负责mapper和SqlSession的创建和注入, 可以将MyBatis中的异常转换为Spring的DataAccessException。最终让你构建的工程代码脱离MyBatis,Spring和MyBatis-Spring的依赖。

快速开始
  1. 导入依赖:
  2. 首先在pom.xml文件中,导入以下配置
    
        org.mybatis
        mybatis-spring
        2.0.6
    
    
    
        org.springframework
        spring-jdbc
        5.3.10
    
  3. 配置数据源:
  4. 
        
        
        
    
  5. 配置SqlSessionFactory:
  6. 在之前的mybatis中提到过,使用MybatisUtils工具类来封装SqlSession相关对象的构建,而现在我们将在Spring application context中对这些对象进行配置注入。
    
    
    
        
        
    
  7. 配置Mapper:
  8. 
    
    
        
        
    
  9. 编写测试:
  10. public class MybatisTest {
        @Test
        public void test() throws Exception {
            ApplicationContext context = new ClassPathXmlApplicationContext("spring-context.xml");
            StudentMapper mapper = (StudentMapper) context.getBean("exampleMapper");
            List> maps = mapper.queryAll();
            for (Map map : maps) {
                for (Object o : map.keySet()) {
                    System.out.println(o.toString() + ":" + map.get(o));
                }
                System.out.println("===");
            }
        }
    }
    工程结构如下:

    现在运行测试结果如下:

更多

更多详细进阶配置,请参考官网

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5437907.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存