MyBatis
anjingjingg
暂无
展开
-
mybatis collection应用实例
<resultMap id="BaseResultMap" type="com.gdkj.tmu_xg.pojo.SysPurview" > <result column="ROLEID" property="rid"></result> <result column="PURVIEW" property="id"></result> <result column="NAME" property="name">.原创 2020-06-24 15:27:05 · 714 阅读 · 0 评论 -
打包时不执行mybatis generator
增加 <phase>deploy</phase><executions> <execution> <id>Generate MyBatis Artifacts</id> <phase>deploy</phase> <goals>...原创 2019-12-20 16:03:19 · 676 阅读 · 0 评论 -
MyBatis 使用
1、jdbcType=”DATE” 忽略时分秒, 无论是否有时分秒,都设置为了 00:00:00;而jdbcType=”TIMESTAMP” 则 年月日时分秒全部设置,没有忽略。实际应用中,无需特意指定 jdbcType。2、实现likeconcat(concat('%', #{name}),'%')3、设变量<sql id="ColumnList"> ...原创 2019-12-13 16:25:02 · 99 阅读 · 0 评论 -
resultMap中的column和property
column对应sql中的列名property对应pojo中的属性名,也就是说property是column的别名。原创 2019-12-13 11:05:26 · 8152 阅读 · 0 评论 -
mybatis使用concat,报错:nested exception is java.sql.SQLSyntaxErrorException: ORA-00909: 参数个数无效
concat一次连接两个字符:例子如下:select * from birthday where name like concat(concat('%',#{name}),'%')如果直接写concat('%', #{name}, '%'),会报错!### The error occurred while setting parameters### SQL: SELECT c...原创 2019-12-12 10:02:05 · 2320 阅读 · 0 评论 -
Mybatis generator自动生成mapper、xml和pojo
1、修改pom.xml<!-- MyBatis Generator --> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven...原创 2019-11-25 16:59:58 · 201 阅读 · 0 评论 -
mybatis的一些特殊符号标识
特殊字符替代符号&&<<>>""''小于等于 a<=b ...原创 2019-10-22 15:03:13 · 1191 阅读 · 0 评论