mybatis注解和xml常用语句

mybatis注解使用

1.简单crud


public interface UserMapper {
  //查询
  @Select("select * from user where id=#{id}")
  User selectUser(int id);
  //查询全部
  @Select("select * from user")
  List<User> selectUserList();
 //增加数据
 @Insert("insert into user (name) values(#{name})")
 boolean insertUser(String name);
     //修改用户
 @Update("update user set name=#{name} where id=#{id}")
 boolean updateUser(@Param("name") String name,@Param("id") int id);
 //删除用户
 @Delete("delete from user where id=#{id}")
 boolean deleteUser(int id);
}

2.一对一注解

@Select("select * from user")
@Results({
        @Result(id = true,property = "id",column = "id"),//id=true 对应于主键
        @Result(property = "uid",column = "uid"),
        @Result(property = "user",column = "uid",javaType = User.class,
        one = @One(select = "com.example.dao.UserDao.findUserByid",fetchType = FetchType.DEFAULT))
        //user 对应实体类中一对一的实体类名字,uid表示通过uid外键查询User,JavaType表示查询结果
        //映射成User类型对象,one=表示一对xx fetchType.default默认是立即加载全部查询,使用lazy懒加载需要才查询
})
List<User> selectUserList();

3,一对多注解

@Select("select * from user")
@Results({
        @Result(id = true,property = "id",column = "id"),//id=true 对应于主键
        @Result(property = "uid",column = "uid"),
        @Result(property = "user",column = "uid",javaType = User.class,
        many = @Many(select = "com.example.dao.UserDao.findUserByid",fetchType = FetchType.DEFAULT))
        //user 对应实体类中一对一的实体类名字,uid表示通过uid外键查询User,JavaType表示查询结果
        //映射成User类型对象,one=表示一对xx fetchType.default默认是立即加载全部查询,使用lazy懒加载需要才查询
})
List<User> selectUserList();

mybatis的xml配置

1.配置resultMap
<resultMap id="BaseResultMap" type="xx" >
    <id column="id" property="ID" jdbcType="BIGINT" />
    <result column="aa" property="aa" jdbcType="VARCHAR" />
    <result column="bb" property="bb" jdbcType="INTEGER" />
    <result column="cc" property="cc" jdbcType="DECIMAL" javaType="java.math.BigDecimal" />
    <result column="dd" property="dd" jdbcType="DATE" />
</resultMap>

2.通用sql短语

  <sql id="Base_Column_List" >
    aa, bb
  </sql>

 <sql id="where">
    <trim prefix="WHERE" prefixOverrides="AND|OR">
        <if test="id != null and id != ''">
            AND t.ID = #{id}
        </if>
        <if test="content != null and content != ''">
            AND t.CONTENT LIKE concat('%', #{content},'%')
        </if>
        AND t.APP_CODE IN
        <foreach item="item" index="index" collection="appcodes"
            open="(" separator="," close=")">
            #{item}
        </foreach>
        and t.USER_ID=u.id and t.REMOVED=0
    </trim>
</sql>

3.需要验证的插入

 <insert id="insert" parameterType="xxx"
    useGeneratedKeys="true" keyColumn="id" keyProperty="id">
    insert into xxx (
    <trim suffixOverrides=",">
        <if test="title != null and title != '' ">
            TITLE ,
        </if>
    </trim>
    ) VALUES (
    <trim suffixOverrides=",">
        <if test="title != null and title != '' ">
            #{title} ,
        </if>
    </trim>
    )
</insert>

4.需要验证的更新

<update id="update" parameterType="xxx">
    UPDATE xxx
    <set>
        <if test="title != null and title != '' ">
            TITLE = #{title} ,
        </if>
    </set>
    WHERE
    ID = #{id}
</update>

5.<!–批量更新ticketid和SeatNo–>

<update id="xxxUpdate" parameterType="java.util.List">
    update xxx
    <trim prefix="set" suffixOverrides=",">
        <trim prefix="AA =case" suffix="end,">
            <foreach collection="orders" item="item" index="index">
                <if test="item.aa !=null">
                    when ID=#{item.id} then #{item.aa}
                </if>
            </foreach>
        </trim>
        <trim prefix="BB =case" suffix="end,">
            <foreach collection="orders" item="item" index="index">
                <if test="item.bb !=null">
                    when ID=#{item.id} then #{item.bb}
                </if>
            </foreach>
        </trim>
    </trim>
    where ID in
    <foreach collection="orders" index="index" item="item" separator="," open="(" close=")">
        #{item.id,jdbcType=BIGINT}
    </foreach>
</update>

使case when求和算数sql

SELECT
    sum(
        CASE
        WHEN `REMOVED` = 0 THEN
            1
        ELSE
            0
        END
    )
FROM
    xxx;


mybatis可以使用string给数据库int类型赋值
springboot中开启日志

#mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

1.ORDER BY ${columnName}

这里 MyBatis 不会修改或转义字符串。NOTE 用这种方式接受用户的输入,并将其用于语句中的参数是不安全的,会导致潜在的 SQL 注入攻击,因此要么不允许用户输入这些字段,要么自行转义并检验。

2.如何使用连接池。

首先实例化连接池数据源对象,让他实现DataSourceFactory这个接口。然后实现方法。在mybatis。conf文件中设置数据连接池这个类,将数据库连接信息放在config.properties文件中。

3.mybatis.config文件中setting和数据源的设置参数区别

会被覆盖。

4.连接参数查询顺序

首先查询properties文件,然后查询resource文件,最后查询方法参数。重复的话会被覆盖。

5.druid连接池配置方式:

详见官网
DruidDataSourceFactory首先实行setproperties方法,然后返回设置数据源方法。drui数据源也需要在DataSource中设置properties文件

8.实体类的方法不定义也可以进行映射

9.mybatis默认是事务不提交

    原文作者:wotrd
    原文地址: https://segmentfault.com/a/1190000016333566
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞