• mybatis 注解开发


    mybatis 的常用注解: 

      @Insert:实现新增
      @Update:实现更新
      @Delete:实现删除
      @Select:实现查询
      @Result:实现结果集封装
      @Results:可以与@Result 一起使用,封装多个结果集
      @ResultMap:实现引用@Results 定义的封装
      @One:实现一对一结果集封装
      @Many:实现一对多结果集封装
      @SelectProvider: 实现动态 SQL 映射
      @CacheNamespace:实现注解二级缓存的使用

    使用注解方式开发持久层接口:

    public interface UserDao {
    /**
    * 查询所有用户(User属性名和数据库表的列名不一致)
    * @return
    */
    @Select("select * from user")
    @Results(id="userMap",
    value= {
    @Result(id=true,column="id",property="userId"),
    @Result(column="username",property="userName"),
    @Result(column="sex",property="userSex"),
    @Result(column="address",property="userAddress"),
    @Result(column="birthday",property="userBirthday")
    })
    List<User> findAll();
    
    /**
    * 根据 id 查询一个用户
    * @param userId
    * @return
    */
    @Select("select * from user where id = #{uid} ")
    @ResultMap("userMap")
    User findById(Integer userId);
    
    /**
    * 保存操作
    * @param user
    * @return
    */
    @Insert("insert into
    user(username,sex,birthday,address)values(#{username},#{sex},#{birthday},#{address}
    )")
    @SelectKey(keyColumn="id",keyProperty="id",resultType=Integer.class,before =
    false, statement = { "select last_insert_id()" })
    int saveUser(User user);
    
    /**
    * 更新操作
    * @param user
    * @return
    */
    @Update("update user set
    username=#{username},address=#{address},sex=#{sex},birthday=#{birthday} where id
    =#{id} ")
    int updateUser(User user);
    
    /**
    * 删除用户
    * @param userId
    * @return
    */
    @Delete("delete from user where id = #{uid} ")
    int deleteUser(Integer userId);
    
    /**
    * 查询使用聚合函数
    * @return
    */
    @Select("select count(*) from user ")
    int findTotal();
    
    /**
    * 模糊查询
    * @param name
    * @return
    */
    @Select("select * from user where username like #{username} ")
    List<User> findByName(String name);
    }
    // 通过注解方式,就不需要再去编写 UserDao.xml 映射文件了。

      编写 SqlMapConfig 配置文件:

    <!-- 配置映射信息 -->
    <mappers>
        <!-- 配置 dao 接口的位置,它有两种方式
        第一种:使用 mapper 标签配置 class 属性
        第二种:使用 package 标签,直接指定 dao 接口所在的包
        -->
        <package name="com.itheima.dao"/>
    </mappers>

    使用注解实现复杂关系映射开发:

      在映射文件中是通过配置<resultMap>来实现的,在使用注解开发时需要借助@Results 注解,@Result 注解,@One 注解,@Many 注解。
      复杂关系映射的注解说明:

        @Results 注解
          代替的是标签<resultMap>
          该注解中可以使用单个@Result 注解,也可以使用@Result 集合
          @Results({@Result(),@Result()})或@Results(@Result())
        @Resutl 注解
          代替了 <id> 标签和 <result> 标签
          @Result 中 属性介绍:
            id 是否是主键字段
            column 数据库的列名
            property 需要装配的属性名
            one 需要使用的 @One 注解(@Result(one=@One)()))
            many 需要使用的 @Many 注解(@Result(many=@many)()))
        @One 注解
          代替了<assocation> 标签,是多表查询的关键,在注解中用来指定子查询返回单一对象。
          @One 注解属性介绍:
            select 指定用来多表查询的 sqlmapper
            fetchType 会覆盖全局的配置参数 lazyLoadingEnabled
            使用格式:
              @Result(column=" ",property="",one=@One(select="",fetchType=""))
        @Many 注解
          代替了<Collection> 标签, 是多表查询的关键,在注解中用来指定子查询返回对象集合。
          使用格式:
            @Result(property="",column="",many=@Many(select=""))

    使用注解实现一对一复杂关系映射及延迟加载:

      需求:
        加载账户信息时并且加载该账户的用户信息,根据情况可实现延迟加载。(注解方式实现)

      添加账户的持久层接口并使用注解配置

    public interface AccountDao {
        /**
        * 查询所有账户,采用延迟加载的方式查询账户的所属用户
        * @return
        */
        @Select("select * from account")
        @Results(id="accountMap",
        value= {
            @Result(id=true,column="id",property="id"),
            @Result(column="uid",property="uid"),
            @Result(column="money",property="money"),
            @Result(column="uid",property="user",
                one=@One(select="com.fgy.dao.UserDao.findById",
                fetchType=FetchType.LAZY)
            )
        })
        List<Account> findAll();
    }

      添加用户的持久层接口并使用注解配置

    public interface UserDao {
        /**
        * 查询所有用户
        * @return
        */
        @Select("select * from user")
        @Results(id="userMap",
        value= {
            @Result(id=true,column="id",property="userId"),
            @Result(column="username",property="userName"),
            @Result(column="sex",property="userSex"),
            @Result(column="address",property="userAddress"),
            @Result(column="birthday",property="userBirthday")
        })
        List<User> findAll();
    
        /**
        * 根据 id 查询一个用户
        * @param userId
        * @return
        */
        @Select("select * from user where id = #{uid} ")
        @ResultMap("userMap")
        User findById(Integer userId);
    }    

    使用注解实现一对多复杂关系映射:

      需求:
        查询用户信息时,也要查询他的账户列表。使用注解方式实现。
      分析:
        一个用户具有多个账户信息,所以形成了用户(User)与账户(Account)之间的一对多关系。

      编写用户的持久层接口并使用注解配置

    public interface UserDao {
        /**
        * 查询所有用户
        * @return
        */
        @Select("select * from user")
        @Results(id="userMap",
        value= {
        @Result(id=true,column="id",property="userId"),
        @Result(column="username",property="userName"),
        @Result(column="sex",property="userSex"),
        @Result(column="address",property="userAddress"),
        @Result(column="birthday",property="userBirthday"),
        @Result(column="id",property="accounts",
            many=@Many(
                select="com.fgy.dao.AccountDao.findByUid",
                fetchType=FetchType.LAZY
                )
            )
        })
        List<User> findAll();
    } 

      编写账户的持久层接口并使用注解配置

    public interface AccountDao {
        /**
        * 根据用户 id 查询用户下的所有账户
        * @param userId
        * @return
        */
        @Select("select * from account where uid = #{uid} ")
        List<Account> findByUid(Integer userId);
    }

    mybatis 基于注解的二级缓存:

      在 SqlMapConfig 中开启二级缓存支持

    <!-- 配置二级缓存 -->
    <settings>
        <!-- 开启二级缓存的支持 -->
        <setting name="cacheEnabled" value="true"/>
    </settings>

      在持久层接口中使用注解配置二级缓存

    @CacheNamespace(blocking=true)//mybatis 基于注解方式实现配置二级缓存
      public interface IUserDao {
    }

    更多注解使用参考链接:https://blog.csdn.net/u013452337/article/details/100693418

  • 相关阅读:
    综合日语第一册第十课
    综合日语第一册第九课
    荒木毬菜 小情歌日文版
    c# 匿名函数
    字典取KEY,占位符,延迟刷新
    flash GC
    自定义滤镜 ColorMatrixFilter
    sql join
    NSLog Release
    Windows 运行中的命令
  • 原文地址:https://www.cnblogs.com/roadlandscape/p/12296214.html
Copyright © 2020-2023  润新知