springboot整合mybatis-plus

1. mybatis-plus概述

MyBatis-Plus (opens new window)(简称 MP)是一个 MyBatis (opens new window)的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。

我们的愿景是成为 MyBatis 最好的搭档,就像 魂斗罗 中的 1P、2P,基友搭配,效率翻倍。

不能替代mybatis ,以后对于单表操作的所有功能,都可以使用mp完成。但是链表操作的功能还得要校验mybatis.

2. 如何使用mp

(1)创建表并插入数据

DELETE FROM user;

INSERT INTO user (smpno, sname, sno) VALUES
(1, 'Jone', 18 ),
(2, 'Jack', 20 ),
(3, 'Tom', 28 ),
(4, 'Sandy', 21 ),
(5, 'Billie', 24 );

(2)引入相关依赖

 <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

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

        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.5.1</version>
        </dependency>


        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

(3)在.properties文件下配置数据源

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://locaLhost:3306/mybatis_db
spring.datasource.username=root
spring.datasource.password=123456

(3) 创建实体类

@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class Student implements Serializable {
    /**
     * 
     */
    @TableId(type = IdType.AUTO)
    private Integer smpno;

    /**
     * 
     */
    private String sname;

    /**
     * 
     */

    private Integer sno ;
}

(5)创建一个Mapper接口

public interface Studentmapper extends BaseMapper<Student> {
}

(6)为接口生成代理实现类,在启动类上加上注解

@MapperScan(basePackages = "这里写Mapper包路径")
@SpringBootApplication
@MapperScan(basePackages = "com.example.demo.mapper")
public class Demo4Application {

    public static void main(String[] args) {
        SpringApplication.run(Demo4Application.class, args);
    }


}

(7)测试

@SpringBootTest
class Demo4ApplicationTests {
    @Autowired
    private Studentmapper studentmapper;
    //通过Id查询
    @Test
    void contextLoads(){
        Student student = studentmapper.selectById(1);
        System.out.println(student);

    }
}

3.总结

1.引入mp依赖 2. 在.properties文件里创建数据源 3. 创建实体类 4.创建mapper接口并继承BaseMapper<>接口 5.在启动类接口扫描 6.测试

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

因崔斯汀丿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值