
MyBatis
Mistra丶
凡心所向,素履以往,生如逆旅,一苇以航。
展开
-
Mybatis自定义Handler实现Json数组转List对象
先定义一个ListTypeHandler泛型为需要Json转换为的目标实体对象原创 2022-06-10 18:32:10 · 3252 阅读 · 4 评论 -
SpringBoot配置多数据源(整合MyBatis-plus)
业务需要,配置不同账号访问不同数据库。项目原来使用的单数据源+MyBatis-plus。按下面代码整合一切正常。直接上代码:排除SpringBoot的自动配置类DataSourceAutoConfiguration@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class})在properties中配置多数据源连接信息,名称为consultant和dwspring.datasource..原创 2021-10-19 15:55:33 · 556 阅读 · 0 评论 -
Result map does not contain a value for Java.lang.Integer 报错解决办法
报错:Result map does not contain a value for Java.lang.Integer办法一:将resultMap="java.lang.Integer"改为resultType="java.lang.Integer"就可以解决问题办法二:[html] view plain copy<resultMap id="ResultOfInteger" type="...转载 2017-06-07 10:22:43 · 2705 阅读 · 0 评论 -
Mybatis批量插入
Mybatis批量插入数据1>Controller代码List empc = new ArrayList(); Iterator it = list.iterator(); while(it.hasNext()) { Employee e = (Employee) it.next(); EmpCheck ec=new EmpCheck(); ec.set原创 2017-06-07 14:32:27 · 618 阅读 · 0 评论 -
Mybatis批量更新数据
Mybatis批量更新数据第一种方式 update id="updateBatch" parameterType="Map"> update aa set a=#{fptm}, b=#{csoftrain} where c in原创 2017-06-07 14:59:26 · 479 阅读 · 0 评论 -
Mybatis中的动态update语句
Mybatis中的CRUD操作(增删改查)中,简单的SQL操作比较直观,如查找操作:select id="findBySrcId" resultMap="entityRelationResultMap"> SELECT * FROM ENTITY_RELATION WHERE SRC_ID=#{srcId}select>其中id对应同名java文件中的方法,resultMap对应原创 2017-06-07 15:32:39 · 11368 阅读 · 2 评论 -
源码分析 There is no getter for property named '*' in 'class java.lang.String
本文出自沉默王二的博客There is no getter for property named '*' in 'class Java.lang.String',此错误之所以出现,是因为mybatis在对parameterType="String"的sql语句做了限制,假如你使用<when test="username != null">这样的条件判断时,就会出现该错误,不过今天我转载 2017-08-03 11:30:43 · 963 阅读 · 0 评论 -
整合Spring+SpringMVC+Mybatis+Maven+Mysql
Spring+SpringMVC+Mybatis+Maven+Mysql一、创建Maven项目详情见博客:IntelliJ IDEA 创建Maven 工程创建完成此时的包结构目录:此时在WEB-INF下已经有一个log4j.xml配置文件,查看此文件内容可以看到已经自动对log4j进行了一些基本配置。不过这里我们采用log4j.properties方式来配置log4j。log4j相关用法参考另一篇博原创 2017-11-09 22:28:15 · 2958 阅读 · 0 评论 -
Mybatis逆向工程Generator
Mybatis官方提供逆向工程,可以针对单表(仅支持单表!)自动生成mybatis执行所需要的代码包括mapper.java、mapper.xml、po官方文档:MyBatis Generator先上工程目录结构:先导入所需的jar包:jar包下载 IntelliJ IDEA导入jar包之后记得右键jar包:Add as librarygenreatorConfig.xml<?xml versio原创 2017-11-06 22:57:13 · 924 阅读 · 0 评论