久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

springboot 整合fluent mybatis的過程,看這篇夠了

瀏覽:115日期:2023-02-19 11:16:21

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.配置數(shù)據(jù)庫連接

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

3.創(chuàng)建數(shù)據(jù)庫表

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.創(chuàng)建Student實體類,

①實體類添加 @FluentMybatis

②實現(xiàn) IEntity 接口

@FluentMybatis@Data@NoArgsConstructorpublic 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); }

數(shù)據(jù)庫已插入

springboot 整合fluent mybatis的過程,看這篇夠了

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

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

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

springboot 整合fluent mybatis的過程,看這篇夠了

到此這篇關于springboot 整合fluent mybatis的過程,看這篇夠了的文章就介紹到這了,更多相關springboot 整合fluent mybatis內容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持好吧啦網(wǎng)!

標簽: Spring
主站蜘蛛池模板: 台东县| 湖州市| 赞皇县| 万州区| 襄垣县| 陆川县| 郁南县| 嘉鱼县| 婺源县| 嘉义县| 绥滨县| 盐亭县| 宝山区| 黄冈市| 乐亭县| 永和县| 西平县| 东乡族自治县| 彰武县| 许昌市| 遂平县| 会理县| 七台河市| 宁陵县| 沁阳市| 金华市| 翁牛特旗| 平舆县| 通许县| 阿尔山市| 文化| 长寿区| 建德市| 马鞍山市| 普洱| 蒙自县| 霍邱县| 英吉沙县| 策勒县| 大冶市| 牙克石市|