1. 程式人生 > >優雅高效的MyBatis-Plus工具快速入門使用

優雅高效的MyBatis-Plus工具快速入門使用

per postgresq 功能 工作 nco put 它的 復制 指定

 https://www.cnblogs.com/fingerboy/p/6657118.html
目前正在維護的公司的一個項目是一個ssm架構的java項目,dao層的接口有大量數據庫查詢的方法,一個條件變化就要對應一個方法,再加上一些通用的curd方法,對應一張表的dao層方法有時候多達近20個,果斷決定優化一下,經過一番探索,發現了一個mybatis的好伴侶,mybatis-plus,上手容易,簡潔高效,這裏有官方的文檔入口,文檔比較詳細,本來不想在重復文檔內容,但是關上文檔,看著自己改過的項目,還是打算在腦海裏過一下使用步驟及相關註意事項,順便記錄一下.

 MyBatis-plus有什麽特色

   1.代碼生成 2.條件構造器

    對我而言,主要的目的是使用它強大的條件構建器.  

快速使用步驟:

  1.添加pom文件依賴

技術分享圖片
<dependency>
       <groupId>org.apache.velocity</groupId>
       <artifactId>velocity</artifactId>
       <version>1.7</version>
</dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>2.0.1</version>
</dependency>
技術分享圖片

  註意:mybatis-plus會自動維護mybatis以及mybatis-spring的依賴,所以不需要引入後兩者,避免發生版本沖突.

  2.修改配置文件

  將mybatis的sqlSessionFactory替換成mybatis-plus的即可,mybatis-plus只做了一些功能的擴展:

技術分享圖片
<bean id="sqlSessionFactory" class="com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
        <!-- 自動掃描Mapping.xml文件 -->
        <property name="mapperLocations" value="classpath:mybatis/*/*.xml"/>
        <property name="configLocation" value="classpath:mybatis/mybatis-config.xml"/>
        <property name="typeAliasesPackage" value="com.baomidou.springmvc.model.*"/>
        <property name="plugins">
            <array>
                <!-- 分頁插件配置 -->
                <bean id="paginationInterceptor" class="com.baomidou.mybatisplus.plugins.PaginationInterceptor">
                    <property name="dialectType" value="mysql"/>
                </bean>
            </array>
        </property>
        <!-- 全局配置註入 -->
        <property name="globalConfig" ref="globalConfig" /> 
</bean>
技術分享圖片

  在上面的配置中,除了mybatis的常規配置,多了一個分頁插件的配置和全局配置,mybatis-plus提供了很方便的使用分頁的插件,還有一個全局配置如下:  

技術分享圖片
<bean id="globalConfig" class="com.baomidou.mybatisplus.entity.GlobalConfiguration">
        <!-- 
            AUTO->`0`("數據庫ID自增")
             INPUT->`1`(用戶輸入ID")
            ID_WORKER->`2`("全局唯一ID")
            UUID->`3`("全局唯一ID")
        -->
        <property name="idType" value="2" />
        <!--
            MYSQL->`mysql`
            ORACLE->`oracle`
            DB2->`db2`
            H2->`h2`
            HSQL->`hsql`
            SQLITE->`sqlite`
            POSTGRE->`postgresql`
            SQLSERVER2005->`sqlserver2005`
            SQLSERVER->`sqlserver`
        -->
        <!-- Oracle需要添加該項 -->
        <!-- <property name="dbType" value="oracle" /> -->
        <!-- 全局表為下劃線命名設置 true -->
        <property name="dbColumnUnderline" value="true" />
    </bean>
技術分享圖片

  至此,配置工作就算大功告成了,接下來通過一個簡單的例子來感受一下它的使用.

  1.新建一個User表:

技術分享圖片
@TableName("user")
public class User implements Serializable {

    /** 用戶ID */
    private Long id;

    /** 用戶名 */
    private String name;

    /** 用戶年齡 */
    private Integer age;

    @TableField(exist = false)
    private String state;
}
技術分享圖片

  這裏有兩個註解需要註意,第一是@tableName("user"),它是指定與數據庫表的關聯,這裏的註解意味著你的數據庫裏應該有一個名為user的表與之對應,並且數據表的列名應該就是User類的屬性,對於User類中有而user表中沒有的屬性需要加第二個註解@TableField(exist = false),表示排除User類中的屬性.

2.新建Dao層接口UserMapper:

技術分享圖片
/**
 * User 表數據庫控制層接口
 */
public interface UserMapper extends BaseMapper<User> {
    @Select("selectUserList")
    List<User> selectUserList(Pagination page,String state);
}
技術分享圖片

  dao接口需要實現Basemapper,這樣就能夠使用封裝好的很多通用方法,另外也可以自己編寫方法,@select註解引用自第三步的UserMapper文件  

  3.新建UserMapper配置文件:

技術分享圖片
<?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.baomidou.springmvc.mapper.system.UserMapper">

    <!-- 通用查詢結果列-->
    <sql id="Base_Column_List">
        id, name, age
    </sql>

    <select id="selectUserList" resultType="User">
        SELECT * FROM sys_user WHERE state=#{state}
    </select>
</mapper>
技術分享圖片

  4.新建service層類UserService:

技術分享圖片
/**
 *
 * User 表數據服務層接口實現類
 *
 */
@Service
public class UserService extends ServiceImpl<UserMapper, User>{
    public Page<User> selectUserPage(Page<User> page, String state) {
        page.setRecords(baseMapper.selectUserList(page,state));
        return page;
    }
}
技術分享圖片

  UserService繼承了ServiceImpl類,mybatis-plus通過這種方式為我們註入了UserMapper,這樣可以使用service層默認為我們提供的很多方法,也可以調用我們自己在dao層編寫的操作數據庫的方法.Page類是mybatis-plus提供分頁功能的一個model,繼承了Pagination,這樣我們也不需要自己再編寫一個Page類,直接使用即可.

  5,新建controller層UserController

技術分享圖片
@Controller
public class UserController extends BaseController {

    @Autowired
    private IUserService userService;

    @ResponseBody
    @RequestMapping("/page")
    public Object selectPage(Model model){

        Page page=new Page(1,10);
        page = userService.selectUserPage(page, "NORMAL");
        return page;
    }
技術分享圖片

  以上就完成了一個基本的功能,下面來看一下它的條件構建器.

mybatis-plus的條件構建器

  首先看一個條件構建器實例的簡單實用.

技術分享圖片
public void test(){
       EntityWrapper ew=new EntityWrapper();
       ew.setEntity(new User());
       String name="wang";
       Integer age=16;
       ew.where("name = {0}",name).andNew("age > {0}",age).orderBy("age");
       List<User> list = userService.selectList(ew);
       Page page2 = userService.selectPage(page, ew);
    }
技術分享圖片

  這裏使用了一個條件包裝類EntityWrapper,來進行對sql語句的拼裝,原理也很好理解,上面的代碼中,第一個list查詢的結果就是查詢數據庫中name=wang並且age>16歲的所有記錄並按照age排序.而第二個查詢就是再多加一個分頁的功能.

  基本上來說,使用EntityWrapper可以簡單地完成一些條件查詢,但如果查詢方法使用頻率很高的話還是建議自己寫在UserMapper裏.

  那麽自定義的mapper方法能不能使用EntityWrapper呢,當然也是可以的.

  文檔中給了一個這樣的例子.

  1.在Mappper中定義:

  List<User> selectMyPage(RowBounds rowBounds, @Param("ew") Wrapper<T> wrapper);

  2.在mapper文件中定義:

<select id="selectMyPage" resultType="User">

   SELECT * FROM user ${ew.sqlSegment}

</select>

  對於EntityMapper的條件拼接,基本可以實現sql中常用的where,and,or,groupby,orderby等語法,具體構建方法可以靈活組合.

技術分享圖片
@Test
public void testTSQL11() {
    /*
     * 實體帶查詢使用方法  輸出看結果
     */
    ew.setEntity(new User(1));
    ew.where("name={0}", "‘zhangsan‘").and("id=1")
            .orNew("status={0}", "0").or("status=1")
            .notLike("nlike", "notvalue")
            .andNew("new=xx").like("hhh", "ddd")
            .andNew("pwd=11").isNotNull("n1,n2").isNull("n3")
            .groupBy("x1").groupBy("x2,x3")
            .having("x1=11").having("x3=433")
            .orderBy("dd").orderBy("d1,d2");
    System.out.println(ew.getSqlSegment());
}
技術分享圖片

優雅高效的MyBatis-Plus工具快速入門使用