最近在使用mybatis,遇到了一些问题,个人觉得有必要记录并分享给大家。
1.在sql语句中遇到sql中的关键字,必须用键盘上Tab键上一个按键引用起来,如:key在mysql中是一个关键字
<![CDATA[
select
seq_id,
user_name,
`key`
from test
]]>
2.根据经验,尽量在resultType=" "中使用Bean作为参数,不建议使用map做参数。
我的第一个mybatis文件:一个简单的查询,`(*∩_∩*)′
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.eostek.dao.IQueryDao">
<resultMap id="unionMap" type="unionBean">
<result column="seq_id" property="id" />
<result column="user_name" property="name" />
<result column="key" property="key" />
</resultMap>
<select id="query" resultMap="unionMap">
<![CDATA[
select
seq_id,
user_name,
`key`
from test
]]>
</select>
<select id="queryByName" parameterType="java.lang.String" resultMap="unionMap">
<![CDATA[
select
seq_id,
user_name,
`key`
from test
]]>
<where>
<![CDATA[
user_name like concat('%',#{name},'%')
]]>
</where>
</select>
<!-- <select id="query" resultType="unionBean">
<![CDATA[
select
seq_id id,
user_name name
from test
]]>
</select> -->
</mapper>