跳至内容

编程技术之美-IT之美

越努力越进步-越开心越自信-越懒惰越迷茫-越焦虑越自卑

  • 首页
  • 编程之美
    • Java之美
      • Java基础
      • Java核心
      • JVM
      • 框架
    • Python之美
    • golang之美
    • C++之美
    • PHP之美
    • Swift之美
    • Objective-C之美
  • 算法之美
    • 数据结构与算法
    • 数学之美
  • 设计模式之美
  • 架构之美
    • 微服务
    • Server
    • 存储之美
    • 网络协议
    • 操作系统
    • 数据之美
  • AI之美
    • 机器学习
    • 深度学习

标签: Mybatis Plus

MyBatis Plus支持XML 与注解两种映射方式?

发表于2023年11月7日2023年8月12日 作者 IT之美

Mybatis Plus支持XML和注解两种映射方式。 XML映射 和原生MyBatis一样,可以使用XML来… 继续阅读 MyBatis Plus支持XML 与注解两种映射方式?

MyBatis Plus自带的一些注解都有哪些?

发表于2023年11月4日2023年8月12日 作者 IT之美

Mybatis Plus自带的主要注解有: 1.@TableName 指定数据表名称。 @TableId 指定… 继续阅读 MyBatis Plus自带的一些注解都有哪些?

【MyBatis Plus】MyBatis Plus的自动排除字段有什么作用?

发表于2023年10月31日2023年7月15日 作者 IT之美

Mybatis Plus的自动排除字段功能主要用来: 1. 避免返回敏感信息 如密码、安全信息等,不需要返回给… 继续阅读 【MyBatis Plus】MyBatis Plus的自动排除字段有什么作用?

MyBatis Plus的insert、update和delete操作有何不同?

发表于2023年10月28日2023年8月12日 作者 IT之美

Mybatis Plus实现插入(insert)、更新(update)和删除(delete)的主要区别在于: … 继续阅读 MyBatis Plus的insert、update和delete操作有何不同?

Mybatis Plus的自动脚本生成能生成什么脚本?

发表于2023年10月24日2023年8月12日 作者 IT之美

Mybatis Plus提供了自动生成脚本的功能,可以生成: 1. 生成表结构DDL脚本 通过代码生成数据表的… 继续阅读 Mybatis Plus的自动脚本生成能生成什么脚本?

MyBatis Plus的内置参数 wrapping的作用是什么?

发表于2023年10月21日2023年8月12日 作者 IT之美

MyBatis Plus的内置参数对象中,有一个 wrapping 对象。 它的作用是将查询条件封装到一个ma… 继续阅读 MyBatis Plus的内置参数 wrapping的作用是什么?

MyBatis Plus的乐观锁原理是什么?

发表于2023年10月17日2023年8月12日 作者 IT之美

MyBatis Plus实现乐观锁的原理主要有以下2方面: 1. @Version注解 在需要进行乐观锁的字段… 继续阅读 MyBatis Plus的乐观锁原理是什么?

【MyBatis Plus】MyBatis Plus的分页类Page最常用的方法有哪些?

发表于2023年10月14日2023年7月15日 作者 IT之美

Mybatis Plus的分页类Page中最常用的方法主要有: 1. Page(int current, in… 继续阅读 【MyBatis Plus】MyBatis Plus的分页类Page最常用的方法有哪些?

MyBatis Plus的分布式唯一ID有几种生成策略?

发表于2023年10月10日2023年8月12日 作者 IT之美

Mybatis Plus提供以下几种分布式唯一ID生成策略: 1. 自增主键 基于数据库自增字段生成ID。这是… 继续阅读 MyBatis Plus的分布式唯一ID有几种生成策略?

MyBatis Plus的类型处理器能用来干吗?

发表于2023年10月7日2023年8月12日 作者 IT之美

MyBatis Plus的类型处理器主要用来解决数据类型与Java类型不匹配的问题。 主要应用场景有: 1. … 继续阅读 MyBatis Plus的类型处理器能用来干吗?

MyBatis Plus获取主键的方式有几种?

发表于2023年10月3日2023年8月12日 作者 IT之美

MyBatis Plus提供以下几种方式获取自动生成的主键: 1. 使用@TableId注解 指定IdType… 继续阅读 MyBatis Plus获取主键的方式有几种?

【MyBatis Plus】MyBatis Plus的多表操作包括什么?

发表于2023年9月30日2023年7月15日 作者 IT之美

MyBatis Plus提供了丰富的多表操作,包括: 1. 一对一关联 在User表和Role表之间建立一对一… 继续阅读 【MyBatis Plus】MyBatis Plus的多表操作包括什么?

MyBatis Plus的插件机制怎么使用?

发表于2023年9月26日2023年8月12日 作者 IT之美

MyBatis Plus提供了丰富的插件机制,可以非常方便地扩展其功能。 使用步骤如下: 实现ITZhiMei… 继续阅读 MyBatis Plus的插件机制怎么使用?

MyBatis Plus的分页插件支持哪些数据库?

发表于2023年9月23日2023年8月12日 作者 IT之美

MyBatis Plus的分页插件原理是在SQL执行之前,动态添加分页条件。 它支持以下主要数据库: MySQ… 继续阅读 MyBatis Plus的分页插件支持哪些数据库?

MyBatis Plus的分布式ID生成策略有几种?

发表于2023年9月19日2023年8月12日 作者 IT之美

MyBatis Plus提供了以下几种分布式ID生成策略: 1. 自动增长 使用数据库自增长的ID,如MySQ… 继续阅读 MyBatis Plus的分布式ID生成策略有几种?

【MyBatis Plus】MyBatis Plus的简单分页和完整分页有什么区别?

发表于2023年9月16日2023年7月15日 作者 IT之美

MyBatis Plus分页主要有两种方式: 1. 简单分页 只使用Page对象构造分页参数,调用select… 继续阅读 【MyBatis Plus】MyBatis Plus的简单分页和完整分页有什么区别?

MyBatis Plus的乐观锁分页插件是什么?

发表于2023年9月12日2023年8月12日 作者 IT之美

MyBatis Plus的分页插件MP分页插件是一个用于实现分页功能的插件。 工作原理是: 用户调用分页相关方… 继续阅读 MyBatis Plus的乐观锁分页插件是什么?

MyBatis Plus的内置参数对象能用来干吗?

发表于2023年9月9日2023年8月12日 作者 IT之美

MyBatis Plus的内置参数对象主要有以下用途: 在SQL语句中简化参数使用: 1. #{column}… 继续阅读 MyBatis Plus的内置参数对象能用来干吗?

MyBatis Plus的CRUD操作分别是怎么实现的?

发表于2023年9月5日2023年8月12日 作者 IT之美

MyBatis Plus实现CRUD操作主要的方式有: 1. 插入 使用insert()方法: 在Mapper… 继续阅读 MyBatis Plus的CRUD操作分别是怎么实现的?

MyBatis Plus的分页插件的使用方法?

发表于2023年9月2日2023年8月12日 作者 IT之美

使用MyBatis Plus的分页插件主要分为2步: 1. 开启分页插件 在mybatis-plus.yaml… 继续阅读 MyBatis Plus的分页插件的使用方法?

文章导航

上一页< 分页 1 分页 2 分页 3 下一页>
跳至页脚

分类

  • ActiveMQ
  • AI之美
  • C++之美
  • Docker
  • Flink
  • Git
  • golang之美
  • golang基础
  • Hadoop
  • Hibernate
  • Hive
  • IOS
  • Java Lambda
  • JavaScript
  • Java之美
  • Java基础
  • Java核心
  • JMeter
  • JVM
  • JVM原理
  • JVM实战
  • Kafka
  • Kubernetes
  • Maven
  • MongoDB
  • MQ
  • Mybatis
  • Mybatis Plus
  • MySQL
  • Nginx
  • Objective-C之美
  • PHP之美
  • Python之美
  • RabbitMQ
  • Redis
  • RocketMQ
  • Spring
  • Spring Boot
  • Spring Cloud
  • Spring MVC
  • Swift之美
  • Tomcat
  • Vue
  • 前端
  • 区块链
  • 存储之美
  • 容器
  • 工具
  • 微服务
  • 操作系统
  • 数据之美
  • 数据结构与算法
  • 机器学习
  • 架构之美
  • 框架
  • 深度学习
  • 算法之美
  • 编程之美
  • 网络协议
  • 设计模式之美
  • 项目管理
  • 默认分类

近期文章

  • 【Python】Python多线程的最佳实践?
  • 【Python】Python如何实现多线程?
  • 【Python】Python中的lambada匿名函数怎么写?
  • 【Python】Python中的高阶函数有哪些?
  • 【Python】Python常见的内置函数有哪些?

归档

  • 2025年1月
  • 2024年12月
  • 2024年11月
  • 2024年10月
  • 2024年9月
  • 2024年8月
  • 2024年7月
  • 2024年6月
  • 2024年5月
  • 2024年4月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年11月
  • 2022年10月
  • 2022年9月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年1月
  • 2020年12月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月

标签

ActiveMQ AI C++ ChatGPT error Flink git Golang Hadoop Hibernate Hive http IOS Java基础 JdbcTemplate JMeter JPA JVM Kafka lambda linux Linux命令 Maven Mongodb Mybatis Mybatis Plus MySQL Nginx Objective-C PHP Python Redis RocketMQ Socket Swift TCP/UDP Vue 人工神经网络 常见错误 数据结构与算法 机器学习 深度学习 网络编程 设计模式 面试题
版权所有 编程技术之美-IT之美 | 京ICP备20020091号