springboot集成mybatis

需求

将上报的数据插入到数据库

技术选型

使用mybatis,不选择mybatis plus和tkmybatis

步骤

  • 配置pom依赖
  • 配置数据源和mapper
  • 创建数据表
  • 创建领域模型类
  • 创建Mapper类(接口)
  • 创建mapper.xml(实现)
  • 跑单元测试

参考资料

1、超全超详细解读,mybatis报org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)错误
https://blog.csdn.net/myhes/article/details/86430126

2、解决Mybatis中 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)错误
https://blog.csdn.net/m0_46402847/article/details/130623276

3、SpringBoot结合MyBatis 【超详细】
https://blog.csdn.net/m0_65563175/article/details/127354442

你可能感兴趣的:(spring,boot,mybatis,后端)