欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

好程序員Java教程分享MyBatisPlus介紹

好程序員Java教程分享MyBatis Plus介紹:1.MyBatis Plus 介紹

目前成都創(chuàng)新互聯(lián)已為1000多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬空間、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計、東鄉(xiāng)網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

MyBatis Plus 是國內(nèi)人員開發(fā)的 MyBatis 增強工具,在 MyBatis 的基礎(chǔ)上只做增強不做改變,為簡化開發(fā)、提高效率而生。

MyBatis Plus 的核心功能有:支持通用的 CRUD、代碼生成器與條件構(gòu)造器。

通用 CRUD:定義好 Mapper 接口后,只需要繼承 BaseMapper<T> 接口即可獲得通用的增刪改查功能,無需編寫任何接口方法與配置文件

條件構(gòu)造器:通過 EntityWrapper<T> (實體包裝類),可以用于拼接 SQL 語句,并且支持排序、分組查詢等復(fù)雜的 SQL

2.添加依賴

<dependency>

                    <groupId>com.baomidou</groupId>

                    <artifactId>mybatis-plus</artifactId>

                    <version>2.3</version>

            </dependency>

3.配置

<!-- MP 提供的 MybatisSqlSessionFactoryBean -->

    <bean id="sqlSessionFactoryBean"

            class="com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean">

            <!-- 數(shù)據(jù)源 -->

            <property name="dataSource" ref="dataSource"/>

            <!-- 別名處理 -->

            <property name="typeAliasesPackage" value="com.qf.entity"/>

            <!-- 插件注冊 -->

            <property name="plugins">

                    <list>

<!-- 注冊分頁插件 -->

                            <bean class="com.baomidou.mybatisplus.plugins.PaginationInterceptor" />

                    </list>

            </property>

    </bean>

4.Dao層

public interface IUserDao extends BaseMapper<User> {

}

5.實體類

@Data

@TableName(value="t_user")

public class User{

    @TableId(value="id",type=IdType.AUTO)

    private Integer id;

    @TableField(value="username")

    private String name;

    private Integer age;

    private String password;

    @TableField(exist=false)

    private Integer xxx;

}

6.常見注解

@TableField(exist = false):表示該屬性不為數(shù)據(jù)庫表字段,但又是必須使用的。

@TableField(exist = true):表示該屬性為數(shù)據(jù)庫表字段。

@TableName:數(shù)據(jù)庫表相關(guān)

@TableId:表主鍵標(biāo)識

@TableField:表字段標(biāo)識

7.測試方法

@Test

    public void testMybatisPlus(){

            System.out.println("selectById:"+userDao.selectById(4)); // 根據(jù)Id查詢

            System.out.println("selectList:"+userDao.selectList(null)); // 查詢?nèi)?
            com.baomidou.mybatisplus.plugins.Page<User> page = new com.baomidou.mybatisplus.plugins.Page<>();

            List<User> list = userDao.selectPage(page, null); // 分頁查詢

            page.setRecords(list); // 把結(jié)果封裝到分頁對象中

            System.out.println(page.getCurrent());

            System.out.println(page.getPages());

            System.out.println(page.getSize());

            System.out.println(page.getTotal());

            System.out.println(page.getRecords());

            EntityWrapper<User> entityWrapper = new EntityWrapper<>();

            entityWrapper.eq("id", 4);

            entityWrapper.or().like("username", "3");

            List<User> selectList = userDao.selectList(entityWrapper); // 條件查詢

            System.out.println("wrapper:"+selectList);

    }

文章名稱:好程序員Java教程分享MyBatisPlus介紹
轉(zhuǎn)載來于:http://chinadenli.net/article2/gishic.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站外貿(mào)網(wǎng)站建設(shè)網(wǎng)站營銷服務(wù)器托管網(wǎng)站策劃品牌網(wǎng)站設(shè)計

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化