Mybatis之映射实体类中不区分⼤⼩写的解决⽬录
Mybatis 映射实体类中不区分⼤⼩写
解决办法
问题解决
Mybatis的⼀些⼩细节
问题⼀. #{}和${}的区别是什么?
问题⼆. 当实体类中的属性名和表中的字段名不⼀样,怎么办
问题三. 模糊查询like语句该怎么写
问题四. 通常⼀个Xml映射⽂件
问题五. Mybatis是如何将sql执⾏结果封装为⽬标对象并返回的
问题六. 如何获取⾃动⽣成的(主)键值
问题七. 在mapper中如何传递多个参数
问题⼋. Mybatis动态sql是做什么的
问题九. Mybatis的Xml映射⽂件中
问题⼗. 为什么说Mybatis是半⾃动ORM映射⼯具
问题⼗⼀. ⼀对⼀、⼀对多的关联查询
Mybatis 映射实体类中不区分⼤⼩写
做项⽬时候遇到⼀个Bug,实体类中有两个字段,例如(addTime,addtime),进⾏查询搜索会发⽣神奇的事情
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-////DTD Mapper 3.0//EN" "/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.runlin.jetta.mapper.JettaUpgradeLogMapper">
<resultMap id="BaseResultMap" type="cn.ity.JettaUpgradeLog">
<id column="upgrade_id" jdbcType="INTEGER" property="upgradeId" />
<result column="task_id" jdbcType="INTEGER" property="taskId" />
<result column="task_name" jdbcType="VARCHAR" property="taskName" />
<result column="task_version" jdbcType="VARCHAR" property="taskVersion" />
<result column="project_id" jdbcType="INTEGER" property="projectId" />
<result column="project_name" jdbcType="VARCHAR" property="projectName" />
<result column="project_type" jdbcType="TINYINT" property="projectType" />
<result column="dealer_id" jdbcType="INTEGER" property="dealerId" />
<result column="dealer_name" jdbcType="VARCHAR" property="dealerName" />
<result column="service_code" jdbcType="VARCHAR" property="serviceCode" />
<result column="add_time" jdbcType="TIMESTAMP" property="addTime" />
<result column="addtime" jdbcType="INTEGER" property="addtime" />
<result column="status" jdbcType="INTEGER" property="status" />
<result column="reasonname" jdbcType="VARCHAR" property="reasonname" />
</resultMap>
<sql id="Base_Column_List">
upgrade_id, task_id, task_name, task_version, project_id, project_name, project_type,
dealer_id, dealer_name, service_code, add_time, addtime
</sql>
//映射到实体类⽽不使⽤xml⽂件中的BaseResultMap
<select id="getJettaUpgradeLogList" resultType="cn.ity.JettaUpgradeLog" parameterType="Map">
select
jul.upgrade_id, task_id, task_name, task_version, project_id, project_name, project_type,
dealer_id, dealer_name, service_code, add_time, status, reasonname
from jetta_upgrade_log jul
LEFT OUTER JOIN jetta_upgrade_log_status juls
ON jul.upgrade_id=juls.upgrade_id
LEFT OUTER JOIN jetta_status_code jsc
ON juls.status_id= jsc.rid
<where>
<if test="serviceCode != null and serviceCode !='' ">
AND jul.service_code like concat("%",#{serviceCode},"%")
</if>
<if test="dealerName != null and dealerName !='' ">
AND jul.dealer_name like concat("%",#{dealerName},"%")
</if>
<if test="taskVersion != null and taskVersion !='' ">
AND jul.task_version like concat("%",#{taskVersion},"%")
</if>
<if test="status != null and status !='' ">
AND juls.status like concat("%",#{status},"%")
</if>
</where>
</select>
</mapper>
会报addTime是时间戳类型,不能转换成INTEGER类型的问题。原因就是mybatis映射实体类之后,不能区分⼤⼩写,⽽造成字段类型对应错误的问题解决办法
把映射实体类变成映射到xml中所设置的resultMap,就可以解决这个问题
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-////DTD Mapper 3.0//EN" "/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.runlin.jetta.mapper.JettaUpgradeLogMapper">
<resultMap id="BaseResultMap" type="cn.ity.JettaUpgradeLog">
<id column="upgrade_id" jdbcType="INTEGER" property="upgradeId" />
<result column="task_id" jdbcType="INTEGER" property="taskId" />
<result column="task_name" jdbcType="VARCHAR" property="taskName" />
<result column="task_version" jdbcType="VARCHAR" property="taskVersion" />
<result column="project_id" jdbcType="INTEGER" property="projectId" />
<result column="project_name" jdbcType="VARCHAR" property="projectName" />
<result column="project_type" jdbcType="TINYINT" property="projectType" />
<result column="dealer_id" jdbcType="INTEGER" property="dealerId" />
<result column="dealer_name" jdbcType="VARCHAR" property="dealerName" />
<result column="service_code" jdbcType="VARCHAR" property="serviceCode" />
<result column="add_time" jdbcType="TIMESTAMP" property="addTime" />
<result column="addtime" jdbcType="INTEGER" property="addtime" />
<result column="status" jdbcType="INTEGER" property="status" />
<result column="reasonname" jdbcType="VARCHAR" property="reasonname" />
</resultMap>
<sql id="Base_Column_List">
upgrade_id, task_id, task_name, task_version, project_id, project_name, project_type,
dealer_id, dealer_name, service_code, add_time, addtime
</sql>
//映射到xml的BaseResultMap
<select id="getJettaUpgradeLogList" resultMap="BaseResultMap" parameterType="Map">
select
jul.upgrade_id, task_id, task_name, task_version, project_id, project_name, project_type,
dealer_id, dealer_name, service_code, add_time, status, reasonname
from jetta_upgrade_log jul
LEFT OUTER JOIN jetta_upgrade_log_status juls
ON jul.upgrade_id=juls.upgrade_id
LEFT OUTER JOIN jetta_status_code jsc
ON juls.status_id= jsc.rid
<where>
<if test="serviceCode != null and serviceCode !='' ">
AND jul.service_code like concat("%",#{serviceCode},"%")
</if>
<if test="dealerName != null and dealerName !='' ">
AND jul.dealer_name like concat("%",#{dealerName},"%")
</if>
<if test="taskVersion != null and taskVersion !='' ">
AND jul.task_version like concat("%",#{taskVersion},"%")
</if>
<if test="status != null and status !='' ">
AND juls.status like concat("%",#{status},"%")
</if>
</where>
</select>
</mapper>
问题解决
Mybatis的⼀些⼩细节
Mybatis要解决的问题:
1. 将sql语句硬编码到java代码中,如果修改sql语句,需要修改java代码,重新编译。系统可维护性不⾼。设想如何解决?
能否将sql单独配置在配置⽂件中。
2. 数据库连接频繁开启和释放,对数据库的资源是⼀种浪费。
设想如何解决?
使⽤数据库连接池管理数据库连接。
3. 向preparedStatement中占位符的位置设置参数时,存在硬编码(占位符的位置,设置的变量值)
设想如何解决?
能否也通过配置的⽅式,配置设置的参数,⾃动进⾏设置参数
4. 解析结果集时存在硬编码(表的字段名、字段的类型)
设想如何解决?
能否将查询结果集映射成java对象。
问题⼀. #{}和${}的区别是什么?
#{}是预编译处理,${}是字符串替换。
Mybatis在处理#{}时,会将sql中的#{}替换为?号,调⽤PreparedStatement的set⽅法来赋值;
Mybatis在处理时,就是把{}替换成变量的值。
使⽤#{}可以有效的防⽌SQL注⼊,提⾼系统安全性。
问题⼆. 当实体类中的属性名和表中的字段名不⼀样,怎么办
第1种:通过在查询的sql语句中定义字段名的别名,让字段名的别名和实体类的属性名⼀致
<select id=”selectorder” parametertype=”int” resultetype=”me.der”>
select order_id id, order_no orderno ,order_price price form orders where order_id=#{id};
</select>
第2种:通过<resultMap>来映射字段名和实体类属性名的⼀⼀对应的关系
<select id="getOrder" parameterType="int" resultMap="orderresultmap">
select * from orders where order_id=#{id}
</select>
<resultMap type=”me.der” id=”orderresultmap”>
<!–⽤id属性来映射主键字段–>
<id property=”id” column=”order_id”>
<!–⽤result属性来映射⾮主键字段,property为实体类属性名,column为数据表中的属性–>
<result property = “orderno” column =”order_no”/>
<result property=”price” column=”order_price” />
</reslutMap>
问题三. 模糊查询like语句该怎么写
string wildcardname = “smi”;
list<name> names = mapper.selectlike(wildcardname);
<select id=”selectlike”>
select * from foo where bar like "%"#{value}"%"
</select>
1.表达式: name like"%"#{name}"%" #起到占位符的作⽤
2.表达式: name like '%${name}%' $进⾏字符串的拼接,直接把传⼊的值,拼接上去了,没有任何问题
表达式: name likeconcat(concat('%',#{username}),'%') 这是使⽤了cancat进⾏字符串的连接,同时使⽤了#进⾏占位
字符串是什么字段类型表达式:name like CONCAT('%','${name}','%') 对上⾯的表达式进⾏了简化,更⽅便了
问题四. 通常⼀个Xml映射⽂件
都会写⼀个Dao接⼝与之对应,请问,这个Dao接⼝的⼯作原理是什么?Dao接⼝⾥的⽅法,参数不同时,⽅法能重载吗?
Dao接⼝,就是⼈们常说的Mapper接⼝,接⼝的全限名,就是映射⽂件中的namespace的值,接⼝的⽅法名,就是映射⽂件中MappedStatement的id值,接⼝⽅法内的参数,就是传递给sql的参数。
Mapper接⼝是没有实现类的,当调⽤接⼝⽅法时,接⼝全限名+⽅法名拼接字符串作为key值,可唯⼀定位⼀个MappedStatement,举例:batis3.mappers.StudentDao.findStudentById,可以唯⼀到namespace为batis3.mappers.StudentDao下⾯id = findStudentById的MappedStatement。在Mybatis中,每⼀个<select>、<insert>、<update>、<delete>标签,都会被解析为⼀个MappedStatement对象。
Dao接⼝⾥的⽅法,是不能重载的,因为是全限名+⽅法名的保存和寻策略。
Dao接⼝的⼯作原理是JDK动态代理,Mybatis运⾏时会使⽤JDK动态代理为Dao接⼝⽣成代理proxy对象(如使⽤spring会注⼊到容器中),代理对象proxy会拦截接⼝⽅法,转⽽执⾏MappedStatement 所代表的sql,然后将sql执⾏结果返回。
问题五. Mybatis是如何将sql执⾏结果封装为⽬标对象并返回的
都有哪些映射形式?
答:第⼀种是使⽤<resultMap>标签,逐⼀定义列名和对象属性名之间的映射关系。
第⼆种是使⽤sql列的别名功能,将列别名书写为对象属性名,⽐如T_NAME AS NAME,对象属性名⼀般是name,⼩写,但是列名不区分⼤⼩写,Mybatis会忽略列名⼤⼩写,智能到与之对应对象属性名,你甚⾄可以写成T_NAME AS NaMe,Mybatis⼀样可以正常⼯作。
有了列名与属性名的映射关系后,Mybatis通过反射创建对象,同时使⽤反射给对象的属性逐⼀赋值并返回,那些不到映射关系的属性,是⽆法完成赋值的。
问题六. 如何获取⾃动⽣成的(主)键值
insert ⽅法总是返回⼀个int值 - 这个值代表的是插⼊的⾏数。
⽽⾃动⽣成的键值在 insert ⽅法执⾏完后可以被设置到传⼊的参数对象中。
⽰例:
<insert id="insertUserMessage" parameterType="del.UserMessage"
useGeneratedKeys="true" keyProperty="userMessage.id">
insert into my_news
(orderid,commentid,type,title,content,createtime)
values
(#{derid},#{userMessagementid},#{pe},#{userMessage.title}
,#{t},#{atetime})
</insert>
这⾥需要注意的是需要把实体类传进来。keyProperty为⾃增的id字段。调⽤insert后⾃动将⾃增id赋值进insert调⽤的实体类中
//新建对象
UserMessage userMessage = new UserMessage();
userMessage.setXxxxxx(xxxxxx);
userMessageDao.insertUserMessage(userMessage);
//这时Id()就可以获取到⾃增主键了
BigInteger id = Id();
问题七. 在mapper中如何传递多个参数
第1种:
//DAO层的函数
Public UserselectUser(String name,String area);
//对应的xml,#{0}代表接收的是dao层中的第⼀个参数,#{1}代表dao层中第⼆参数,更多参数⼀致往后加即可。
<select id="selectUser"resultMap="BaseResultMap">
select *  fromuser_user_t  whereuser_name = #{0} anduser_area=#{1}
</select>
第2种:使⽤ @param 注解:
import org.apache.ibatis.annotations.param;
public interface usermapper {
user selectuser(@param(“username”) string username,
@param(“hashedpassword”) string hashedpassword);
}
然后,就可以在xml像下⾯这样使⽤(推荐封装为⼀个map,作为单个参数传递给mapper
<select id=”selectuser” resulttype=”user”>
select id, username, hashedpassword
from some_table
where username = #{username}
and hashedpassword = #{hashedpassword}
</select>
问题⼋. Mybatis动态sql是做什么的
都有哪些动态sql?能简述⼀下动态sql的执⾏原理不?
Mybatis动态sql可以让我们在Xml映射⽂件内,以标签的形式编写动态sql,完成逻辑判断和动态拼接sql的功能。
Mybatis提供了9种动态sql标签:trim|where|set|foreach|if|choose|when|otherwise|bind。
其执⾏原理为,从sql参数对象中计算表达式的值,根据表达式的值动态拼接sql,以此来完成动态sql的功能。
⽐如:
<select id="findUserById" resultType="user">
select * from user where
<if test="id != null">
id=#{id}
</if>
and deleteFlag=0;
</select>
问题九. Mybatis的Xml映射⽂件中
不同的Xml映射⽂件,id是否可以重复?
不同的Xml映射⽂件,如果配置了namespace,那么id可以重复;如果没有配置namespace,那么id不能重复;毕竟namespace不是必须的,只是最佳实践⽽已。
原因就是namespace+id是作为Map<String, MappedStatement>的key使⽤的,如果没有namespace,就剩下id,那么,id重复会导致数据互相覆盖。有了namespace,⾃然id就可以重复,namespace不同,namespace+id⾃然也就不同。
问题⼗. 为什么说Mybatis是半⾃动ORM映射⼯具
它与全⾃动的区别在哪⾥?
Hibernate属于全⾃动ORM映射⼯具,使⽤Hibernate查询关联对象或者关联集合对象时,可以根据对象关系模型直接获取,所以它是全⾃动的。⽽Mybatis在查询关联对象或关联集合对象时,需要⼿动编写sql来完成,所以,称之为半⾃动ORM映射⼯具。
问题⼗⼀. ⼀对⼀、⼀对多的关联查询
<mapper namespace="com.lcb.mapping.userMapper">
<!--association  ⼀对⼀关联查询 -->
<select id="getClass" parameterType="int" resultMap="ClassesResultMap">
select * from class c,teacher t acher_id=t.t_id and c.c_id=#{id}
</select>
<resultMap type="com.lcb.user.Classes" id="ClassesResultMap">
<!-- 实体类的字段名和数据表的字段名映射 -->
<id property="id" column="c_id"/>
<result property="name" column="c_name"/>
<association property="teacher" javaType="com.lcb.user.Teacher">
<id property="id" column="t_id"/>
<result property="name" column="t_name"/>
</association>
</resultMap>
<!--collection  ⼀对多关联查询 -->
<select id="getClass2" parameterType="int" resultMap="ClassesResultMap2">
select * from class c,teacher t,student s acher_id=t.t_id and c.c_id=s.class_id and c.c_id=#{id}
</select>
<resultMap type="com.lcb.user.Classes" id="ClassesResultMap2">
<id property="id" column="c_id"/>
<result property="name" column="c_name"/>
<association property="teacher" javaType="com.lcb.user.Teacher">
<id property="id" column="t_id"/>
<result property="name" column="t_name"/>
</association>
<collection property="student" ofType="com.lcb.user.Student">
<id property="id" column="s_id"/>
<result property="name" column="s_name"/>
</collection>
</resultMap>
</mapper>
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。