1踊餐、null 轉(zhuǎn) int 失敗
錯(cuò)誤:
attempted to return null from a method with a primitive return type (int).
解決方法:
將 dao 的 int 變?yōu)?Integer就好
2诗越、打開mybatis 的日志
mybatis:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
3、如果 pojo 實(shí)體類和查找的字段名稱不同就需要 使用resultMap做字段翻譯
<resultMap id="tableInfo" type="com.test.model.TableColAndType">
<id column="COLUMN_NAME" property="columnName"/>
<result column="DATA_TYPE" property="dataType"/>
<result column="COLUMN_COMMENT" property="columnComment"/>
</resultMap>
<select id="selectTableColsAndType" resultMap = "tableInfo">
select COLUMN_NAME,DATA_TYPE,COLUMN_COMMENT from information_schema.columns where TABLE_NAME=#{tableName}
</select>
或者
<select id="selectTableColsAndType" resultType = "com.test.model.TableColAndType">
select COLUMN_NAME,DATA_TYPE,COLUMN_COMMENT from information_schema.columns where TABLE_NAME=#{tableName}
</select>
package com.test.model;
import lombok.Data;
@Data
public class TableColAndType {
private String COLUMN_NAME;
private String DATA_TYPE;
private String COLUMN_COMMENT ;
}
3、mybatis-plus sql 中出現(xiàn)關(guān)鍵字
需要在 model中加入 注釋來強(qiáng)化字段
@TableField(value="`load`")
private Integer load;
4暂吉、無法使用 REGEXP '^ #{name} $'
可以使用 MySQL 中 字符串拼接方法
//
select * from usr where name REGEXP '^ #{name} $' -- mybatis中出錯(cuò)
select * from usr where name REGEXP concat('^',#{name},'$') -- 改為這個(gè)可行