中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法

發布時間:2021-08-04 18:14:59 來源:億速云 閱讀:230 作者:chen 欄目:開發技術

這篇文章主要講解了“FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法”吧!

目錄
  • 開始第一個例子: Hello World

  • 新建演示用的數據庫結構

  • 創建數據庫表對應的Entity類

  • 運行測試來見證Fluent Mybatis的神奇

    • 配置spring bean定義

  • 使用Junit4和Spring-test來執行測試

    開始第一個例子: Hello World

     新建Java工程,設置maven依賴

    新建maven工程,設置項目編譯級別為Java8及以上,引入fluent mybatis依賴包。

    <dependencies>
        <!-- 引入fluent-mybatis 運行依賴包, scope為compile -->
        <dependency>
            <groupId>com.github.atool</groupId>
            <artifactId>fluent-mybatis</artifactId>
            <version>1.3.1</version>
        </dependency>
        <!-- 引入fluent-mybatis-processor, scope設置為provider 編譯需要,運行時不需要 -->
        <dependency>
            <groupId>com.github.atool</groupId>
            <artifactId>fluent-mybatis-processor</artifactId>
            <version>1.3.1</version>
        </dependency>
    </dependencies>

    新建演示用的數據庫結構

    create schema fluent_mybatis_tutorial;
    
    create table hello_world
    (
        id           bigint unsigned auto_increment primary key,
        say_hello    varchar(100) null,
        your_name    varchar(100) null,
        gmt_create   datetime   DEFAULT NULL COMMENT '創建時間',
        gmt_modified datetime   DEFAULT NULL COMMENT '更新時間',
        is_deleted   tinyint(2) DEFAULT 0 COMMENT '是否邏輯刪除'
    ) ENGINE = InnoDB
      CHARACTER SET = utf8 comment '簡單演示表';

    創建數據庫表對應的Entity類

    創建數據庫表對應的Entity類: HelloWorldEntity, 你只需要簡單的做3個動作:

    • 根據駝峰命名規則命名Entity類和字段

    • HelloWorldEntity繼承IEntity接口類

    • 在HelloWorldEntity類上加注解 @FluentMybatis

    @FluentMybatis
    public class HelloWorldEntity implements IEntity {
        private Long id;
    
        private String sayHello;
    
        private String yourName;
    
        private Date gmtCreate;
    
        private Date gmtModified;
    
        private Boolean isDeleted;
        
        // get, set, toString 方法
    }

    很簡單吧,在這里,你即不需要配置任何mybatis xml文件, 也不需要寫任何Mapper接口, 但你已經擁有了強大的增刪改查的功能,并且是Fluent API,讓我們寫一個測試來見證一下Fluent Mybatis的魔法力量!

    運行測試來見證Fluent Mybatis的神奇

    為了運行測試, 我們還需要進行JUnit和Spring Test相關配置。

    配置spring bean定義

     數據源DataSource配置
    mybatis的mapper掃描路徑
    mybatis的SqlSessionFactoryBean

    @ComponentScan(basePackages = "cn.org.atool.fluent.mybatis.demo1")
    @MapperScan("cn.org.atool.fluent.mybatis.demo1.entity.mapper")
    @Configuration
    public class HelloWorldConfig {
        /**
         * 設置dataSource屬性
         *
         * @return
         */
        @Bean
        public DataSource dataSource() {
            BasicDataSource dataSource = new BasicDataSource();
            dataSource.setDriverClassName("com.mysql.jdbc.Driver");
            dataSource.setUrl("jdbc:mysql://localhost:3306/fluent_mybatis_tutorial?useUnicode=true&characterEncoding=utf8");
            dataSource.setUsername("root");
            dataSource.setPassword("password");
            return dataSource;
        }
    
        /**
         * 定義mybatis的SqlSessionFactoryBean
         *
         * @param dataSource
         * @return
         */
        @Bean
        public SqlSessionFactoryBean sqlSessionFactoryBean(DataSource dataSource) {
            SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
            bean.setDataSource(dataSource);
            return bean;
        }
    }

    使用Junit4和Spring-test來執行測試

    • 使用spring-test初始化spring容器

    • 注入HelloWorldEntity對應的Mapper類: HelloWorldMapper, 這個類是fluent mybatis編譯時生成的。

    • 使用HelloWorldMapper進行刪除、插入、查詢、修改操作。

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(classes = HelloWorldConfig.class)
    public class HelloWorldTest {
        /**
         * fluent mybatis編譯時生成的Mapper類
         */
        @Autowired
        HelloWorldMapper mapper;
    
        @Test
        public void testHelloWorld() {
            /**
             * 為了演示方便,先刪除數據
             */
            mapper.delete(mapper.query()
                .where.id().eq(1L).end());
            /**
             * 插入數據
             */
            HelloWorldEntity entity = new HelloWorldEntity();
            entity.setId(1L);
            entity.setSayHello("hello world");
            entity.setYourName("fluent mybatis");
            entity.setIsDeleted(false);
            mapper.insert(entity);
            /**
             * 查詢 id = 1 的數據
             */
            HelloWorldEntity result1 = mapper.findOne(mapper.query()
                .where.id().eq(1L).end());
            /**
             * 控制臺直接打印出查詢結果
             */
            System.out.println("1. HelloWorldEntity:" + result1.toString());
            /**
             * 更新id = 1的記錄
             */
            mapper.updateBy(mapper.updater()
                .update.sayHello().is("say hello, say hello!")
                .set.yourName().is("fluent mybatis is powerful!").end()
                .where.id().eq(1L).end()
            );
            /**
             * 查詢 id = 1 的數據
             */
            HelloWorldEntity result2 = mapper.findOne(mapper.query()
                .where.sayHello().like("hello")
                .and.isDeleted().eq(false).end()
                .limit(1)
            );
            /**
             * 控制臺直接打印出查詢結果
             */
            System.out.println("2. HelloWorldEntity:" + result2.toString());
        }
    }

    執行Junit4測試方法,控制臺輸出

    1. HelloWorldEntity:HelloWorldEntity{id=1, sayHello='hello world', yourName='fluent mybatis', gmtCreate=null, gmtModified=null, isDeleted=false}
    2. HelloWorldEntity:HelloWorldEntity{id=1, sayHello='say hello, say hello!', yourName='fluent mybatis is powerful!', gmtCreate=null, gmtModified=null, isDeleted=false}

    神奇吧! 我們再到數據庫中查看一下結果

    FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法

    現在,我們已經通過一個簡單例子演示了fluent mybatis的強大功能,
    在進一步介紹fluent mybatis更強大功能前,我們揭示一下為啥我們只寫了一個數據表對應的Entity類,
    卻擁有了一系列增刪改查的數據庫操作方法。

    fluent mybatis根據Entity類上@FluentMybatis注解在編譯時,
    會在target目錄class目錄下自動編譯生成一系列文件:

    FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法

    核心接口類, 使用時需要了解

    • mapper/*Mapper: mybatis的Mapper定義接口, 定義了一系列通用的數據操作接口方法。

    • dao/*BaseDao: Dao實現基類, 所有的DaoImpl都繼承各自基類

    • 根據分層編碼的原則,我們不會在Service類中直接使用Mapper類,而是引用Dao類。我們在Dao實現類中根據條件實現具體的數據操作方法。

    • wrapper/*Query: fluent mybatis核心類, 用來進行動態sql的構造, 進行條件查詢。

    • wrapper/*Updater: fluent mybatis核心類, 用來動態構造update語句。

    • entity/*EntityHelper: Entity幫助類, 實現了Entity和Map的轉換方法

    • 輔助實現時, 實現fluent mybatis動態sql拼裝和fluent api時內部用到的類,使用時無需了解

    • 在使用上,我們主要會接觸到上述5個生成的java類。Fluent Mybatis為了實現動態拼接和Fluent API功能,還生成了一系列輔助類。

    • helper/*Mapping: 表字段和Entity屬性映射定義類

    • helper/*SqlProviderP: Mapper接口動態sql提供者

    • helper/*WrapperHelper: Query和Updater具體功能實現, 包含幾個實現:select, where, group by, having by, order by, limit

    感謝各位的閱讀,以上就是“FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法”的內容了,經過本文的學習后,相信大家對FluentMybatis怎么實現mybatis動態sql拼裝和fluent api語法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    巴东县| 平遥县| 乡宁县| 亳州市| 左云县| 内丘县| 仁怀市| 醴陵市| 清苑县| 南丰县| 海晏县| 黑河市| 富民县| 和硕县| 东海县| 遂平县| 剑川县| 朔州市| 阳高县| 民县| 驻马店市| 府谷县| 西藏| 商洛市| 宣汉县| 营山县| 黄石市| 广东省| 临泉县| 吴桥县| 大竹县| 林甸县| 元谋县| 炎陵县| 呼和浩特市| 张掖市| 奉节县| 山阴县| 鄄城县| 桐梓县| 陇西县|