mybats改為mabatisplus的方法

2021-10-04 19:49:26 字數 951 閱讀 4940

1.前言

也增加了很多註解,讓我們減少了開發的一些繁瑣的操作。

mybatis-plus和lombok一起使用,你會發現很完美的組合。

2、注釋以前的mybatis註解(我試了下不去註解,會報錯)

注釋:mybatis-spring-boot-starter
3、新增mybatis-plus註解

新增:(可以檢視官網的案例:

com.baomidou

mybatis-plus-boot-starter

3.1.1

3、配置檔案

url: jdbc:mysql://localhost:3306/test?useunicode=true&characterencoding=utf-8&usessl=true&servertimezone=gmt%2b8

修改自己的庫名。

注意:本人電腦必須要加servertimezone=gmt%2b8,否則報時區錯誤

4.mybatis-plus找錶名

但是mybatis-plus使用內建的方法時,如(listuserlist = userdao.selectlist(null);),

需要在實體物件中加註解,如(@tablename(value = "user_t"))

這樣,mybatis-plus就能找到資料庫和實體物件的對映關係。

這樣就可以將mybatis改造為mybatis-plus工程,親測有效

如果有問題,自己也可以檢視官網:

5.備註

@tablename(value = "user_t")

@tableid(value = "id",type = idtype.auto)

@tablefield(value = "user_name")

Mabatis中 和 的區別

在下面的語句中,如果 username 的值為 zhangsan,則兩種方式無任何區別 select from user where name select from user where name 其解析之後的結果均為 select from user where name zhangsan 但是...

Mabatis中 和 的區別

在下面的語句中,如果 username 的值為 zhangsan,則兩種方式無任何區別 select from user where name select from user where name 其解析之後的結果均為 select from user where name zhangsan 但是...

Mybats 輸入輸出對映

parametertype 輸入型別 pojo包裝物件 新建包裝pojo物件queryvo 包裝pojo author steven public class queryvo public void setuser user user 對映檔案與sql select from user where ...