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

溫馨提示×

溫馨提示×

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

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

Java中MyBatis Plus知識點總結

發布時間:2020-09-29 23:22:50 來源:腳本之家 閱讀:206 作者:wx5da18b5c4b01e 欄目:編程語言

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

1.MyBatis Plus 介紹

MyBatis Plus 是國內人員開發的 MyBatis 增強工具,在 MyBatis 的基礎上只做增強不做改變,為簡化開發、提高效率而生。 

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

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

條件構造器:通過 EntityWrapper<T> (實體包裝類),可以用于拼接 SQL 語句,并且支持排序、分組查詢等復雜的 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">

   <!-- 數據源 -->

   <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):表示該屬性不為數據庫表字段,但又是必須使用的。

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

@TableName:數據庫表相關

@TableId:表主鍵標識

@TableField:表字段標識

7.測試方法

@Test

 public void testMybatisPlus(){

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

   System.out.println("selectList:"+userDao.selectList(null)); // 查詢全部

   com.baomidou.mybatisplus.plugins.Page<User> page = new com.baomidou.mybatisplus.plugins.Page<>();

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

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

   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);

 }

以上就是本次介紹的全部相關知識點,感謝大家的學習和對億速云的支持。

向AI問一下細節

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

AI

农安县| 香格里拉县| 正定县| 许昌县| 尼玛县| 冷水江市| 合山市| 雅安市| 佛坪县| 柳州市| 丰县| 乌拉特前旗| 衢州市| 达孜县| 东光县| 铜梁县| 巴彦县| 中西区| 青阳县| 奎屯市| 南昌县| 陆河县| 呼图壁县| 方正县| 灌南县| 安徽省| 巩义市| 衡东县| 镇雄县| 大邑县| 马山县| 合川市| 海安县| 长春市| 通化市| 阿坝县| 清流县| 保山市| 龙口市| 石阡县| 滨海县|