当前位置: 首页 > article >正文

【SpringBoot3】Spring Boot 3.0 集成 Mybatis Plus

在Spring Boot 3.0中,你可以使用MyBatis Plus来简化数据库操作。以下是一个基本的集成示例:

1.添加依赖到你的pom.xml:

<dependencies>

    <!-- Spring Boot Starter -->

    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter</artifactId>

    </dependency>

    <!-- MyBatis Plus Starter -->

    <dependency>

        <groupId>com.baomidou</groupId>

        <artifactId>mybatis-plus-boot-starter</artifactId>

        <version>3.x.x</version> <!-- 请使用最新版本 -->

    </dependency>

    <!-- 数据库驱动,以MySQL为例 -->

    <dependency>

        <groupId>mysql</groupId>

        <artifactId>mysql-connector-java</artifactId>

        <scope>runtime</scope>

    </dependency>

</dependencies>

2.配置application.properties或application.yml:

spring.datasource.url=jdbc:mysql://localhost:3306/your_database?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC

spring.datasource.username=root

spring.datasource.password=yourpassword

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

mybatis-plus.mapper-locations=classpath:/mappers/**/*.xml

mybatis-plus.type-aliases-package=com.yourpackage.model

3.创建实体类和Mapper接口:

// 实体类

@Data

public class User {

    private Long id;

    private String name;

    private Integer age;

    private String email;

}

// Mapper接口

@Mapper

public interface UserMapper extends BaseMapper<User> {

    // 这里可以添加自定义方法

}

4.在Spring Boot启动类上添加@MapperScan注解:

@SpringBootApplication

@MapperScan("com.yourpackage.mapper")

public class YourApplication {

    public static void main(String[] args) {

        SpringApplication.run(YourApplication.class, args);

    }

}

5.使用MyBatis Plus提供的服务进行操作:

@Service

public class UserService {

    @Autowired

    private UserMapper userMapper;

    public boolean saveUser(User user) {

        return userMapper.insert(user) > 0;

    }

    public List<User> getAllUsers() {

        return userMapper.selectList(null);

    }

}

以上代码展示了如何在Spring Boot 3.0项目中集成MyBatis Plus。你需要替换数据库连接信息、实体类、Mapper接口和你的应用包路径。这样,你就可以使用MyBatis Plus提供的方法来简化数据库操作。


http://www.kler.cn/a/468099.html

相关文章:

  • QPainter,QPen,QBrush详解
  • 软件项目体系建设文档,项目开发实施运维,审计,安全体系建设,验收交付,售前资料(word原件)
  • LEED绿色建筑认证在2025年相关消息
  • nacos安装集群
  • MCGS学习记录
  • HTML-列表标签
  • 医学图像分析工具02:3D Slicer || 医学影像可视化与分析工具 支持第三方插件
  • AI辅助的运维流程自动化:实现智能化管理的新篇章
  • connect to host github.com port 22: Connection timed out 的解决方法
  • R语言的数据结构
  • 城市供水管网多普勒超声波流量计,保障供水安全
  • 【游戏设计原理】46 - 魔杖
  • 一种新的混合大模型架构:TITAN
  • 【Python运维】使用Python与Docker进行高效的容器化应用管理
  • Tomcat性能优化与负载均衡实现
  • 为什么 SPA 应用会提供一个 hash 路由,好处是什么
  • sqlserver sql转HTMM邮件发送
  • 【MATLAB第111期】基于MATLAB的sobol全局敏感性分析方法二阶指数计算
  • 【Stable Diffusion】AI生成新玩法:图像风格迁移
  • 用Python操作字节流中的Excel工作簿
  • 深度学习,医学图像分割创新
  • 【游戏设计原理】47 - 超游戏思维
  • 【YOLO 项目实战】(12)红外/可见光多模态目标检测
  • ubuntu如何禁用 Snap 更新
  • Unity打包问题集(持续更新)
  • GoLang教程001:GoLang语言环境搭建和HelloWorld