Mybatis-plus
1.添加依赖
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.2</version>
</dependency>
注意:引入Mybatis-plus依赖后,不再引入MyBatis 以及 MyBatis-Spring依赖,避免版本冲突。
2.修改实体类
添加@TableName(“数据库表名”) 这个注解,并制定id自增列 @TableId(value = “数据库中的id字段”, type = IdType.AUTO)
注意:如果数据库的字段用了下划线“_”,在实体类中需要改为驼峰命名法,如下。
3.修改Mapper接口中的代码
只需继承BaseMapper<你的实体类>类。
4.修改配置文件
第一个指定的是mapper.xml的路径
第二个指定的是实体类文件夹路径
5.修改Service实现类
Mybatisplus已经提供了实现单表查询的方法。
所以mapper接口可以注释你之前使用的方法。
在mapper.xml中没有定义单表查询的语句。
最后注意的是,在启动类扫描mapper接口。
6.测试数据
测试数据库中id为22的这条数据。
测试类编写。
结果如下:
2021-01-07 13:24:11.342 |-DEBUG [main] com.zl.lian.student_sys_springboot.Repository.StudentMapper.selectById [143] -| ==> Preparing: SELECT stu_id,stu_num,stu_name,stu_password,stu_cardcode,stu_sex,stu_education,stu_gschool,stu_major,starttime,birthday,state,phone_one,phone_two,stu_qq,stu_email,stu_address,stu_class,photo FROM DB_STUDENT WHERE stu_id=?
2021-01-07 13:24:11.409 |-DEBUG [main] com.zl.lian.student_sys_springboot.Repository.StudentMapper.selectById [143] -| ==> Parameters: 22(Integer)
2021-01-07 13:24:11.459 |-DEBUG [main] com.zl.lian.student_sys_springboot.Repository.StudentMapper.selectById [143] -| <== Total: 1
Student(stuId=22, stuNum=202071270021, stuName=王尼玛, stuPassword=123, stuCardcode=43216489321, stuSex=男, stuEducation=专科, stuGschool=某某大学, stuMajor=软件工程, starttime=Thu Nov 12 00:00:00 CST 2020, birthday=Thu Nov 12 00:00:00 CST 2020, state=在读, phoneOne=12345678, phoneTwo=12332432, stuQq=32432432, stuEmail=32432@qq.com, stuAddress=海南, stuClass=14级经济法学, photo=null)
将自动生成的SQL语句放在数据库中查询。
结果正确。
SpringBoot项目2.4.1版本。
环境背景:idea2020.3、jdk8、Oracle数据库(需要ojdbc8和orai18n依赖,连接池druid)。
本人学习过程中的分享,希望对你有帮助!