91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

springboot 中怎么整合fluent mybatis

發布時間:2021-08-05 14:19:37 來源:億速云 閱讀:306 作者:Leah 欄目:開發技術

這篇文章給大家介紹springboot 中怎么整合fluent mybatis,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.導入pom依賴

<!--        mybatis-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.1</version>
        </dependency>
 
        <!--mysql依賴-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-dbcp2</artifactId>
            <version>2.5.0</version>
        </dependency>
<!-- 引入fluent-mybatis 運行依賴包, scope為compile -->
        <dependency>
            <groupId>com.github.atool</groupId>
            <artifactId>fluent-mybatis</artifactId>
            <version>1.6.8</version>
        </dependency>
        <!-- 引入fluent-mybatis-processor, scope設置為provider 編譯需要,運行時不需要 -->
        <dependency>
            <groupId>com.github.atool</groupId>
            <artifactId>fluent-mybatis-processor</artifactId>
            <version>1.6.8</version>
        </dependency>

2.配置數據庫連接

spring.datasource.url= jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=root

3.創建數據庫表

CREATE TABLE `student` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) DEFAULT NULL,
  `age` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='學生表';

4.創建Student實體類,

        ①實體類添加 @FluentMybatis

        ②實現 IEntity 接口

@FluentMybatis
@Data
@NoArgsConstructor
public class Student implements IEntity {
    private Long id;
    private String name;
    private Integer age;
}

5.重新構建項目

springboot 中怎么整合fluent mybatis

構建完成后,target目錄下就會新建幾個文件夾

springboot 中怎么整合fluent mybatis

 6. 測試

@Autowired
    private StudentMapper studentMapper; // target目錄下
    @RequestMapping("insert")
    public void insert(){
        Student student = new Student();
        student.setName("dl");
        student.setAge(25);
        studentMapper.insert(student);
    }

數據庫已插入

springboot 中怎么整合fluent mybatis

 ************************************

如果出現Mapper文件找不到路徑的異常,很可能是在之前idea中將target文件隱藏了,只需

File --> setting -->  File Types   將忽視的target文件刪掉就可以了

springboot 中怎么整合fluent mybatis

關于springboot 中怎么整合fluent mybatis就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

大英县| 肥城市| 赫章县| 林州市| 清苑县| 卢氏县| 平原县| 霍邱县| 锡林浩特市| 乳源| 阳西县| 江门市| 高要市| 杭锦后旗| 武定县| 九江县| 南溪县| 仙游县| 灌阳县| 保定市| 北碚区| 久治县| 舒兰市| 湛江市| 广汉市| 南丹县| 竹北市| 霍山县| 宁夏| 高台县| 威远县| 奉节县| 舞阳县| 南部县| 营山县| 华安县| 青阳县| 巴彦淖尔市| 翼城县| 哈尔滨市| 拜城县|