实验前提:创建一个单独的模块 具备相关的数据(使用在集成Mybatis的案列中的表格数据)
官网:MyBatis-Plus (baomidou.com)
MyBatis-Plus (opens new window)(简称 MP)是一个 MyBatis (opens new window)的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。
引入Mysql驱动,通过脚手架引入
引入web启动器
创建相关的包
<dependency>
<groupId>com.baomidougroupId>
<artifactId>mybatis-plus-boot-starterartifactId>
<version>3.5.2version>
dependency>
<dependency>
<groupId>org.projectlombokgroupId>
<artifactId>lombokartifactId>
dependency>
# 修改tomcat端口号
server:
port: 80
# 配置Mysql的信息
spring:
datasource:
url: jdbc:mysql://localhost:3306/springboot2_3
username: root
password: 111111
driver-class-name: com.mysql.cj.jdbc.Driver
springboot 中集成第三方启动器的时候 也可以不用写driver-class-name,可自动识别
实体类
package top.yxqz.number3.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author: 余小小
* @description:员工实体类 TableName 表名字
* @TableId:主键
* @Data:Lombok中的 get|Set
* @NoArgsConstructor:无参构造
* @AllArgsConstructor:有参构造
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@TableName("t_ssm_emp")
public class Emp {
// 设置主键自动递增
@TableId(type = IdType.AUTO)
@TableField(value = "emp_id")
private Integer empId;
@TableField("emp_name")
private String empName;
private Integer age;
private String sex;
private String email;
}
控制层
package top.yxqz.number3.controller;
import org.springframework.web.bind.annotation.RestController;
/**
* @author: 余小小
* @description:
*/
@RestController
public class EmpController {
}
服务层接口
package top.yxqz.number3.service;
/**
* @author: 余小小
* @date: 2023/9/15
* @description:
*/
public interface EmpService {
}
服务层接口实现类
package top.yxqz.number3.service.imp;
import org.springframework.stereotype.Service;
import top.yxqz.number3.service.EmpService;
/**
* @author: 余小小
* @date: 2023/9/15
* @description:
*/
@Service
public class EmpServiceImp implements EmpService {
}
持久层接口
package top.yxqz.number3.mapper;
import org.apache.ibatis.annotations.Mapper;
/**
* @author: 余小小
* @date: 2023/9/15
* @description:
*/
@Mapper
public interface EmpMapper {
}
控制层
package top.yxqz.number3.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController;
import top.yxqz.number3.entity.Emp;
import top.yxqz.number3.mapper.EmpMapper;
import top.yxqz.number3.service.EmpService;
/**
* @author: 余小小
* @description:
*/
@RestController
public class EmpController {
@Autowired
private EmpService service;
/**
* 通过id查询员工信息
* 对一对应—对象
* 对多对应-集合
*/
public Emp getEmpById(Integer id) {
return service.getEmpById(id);
}
}
服务层接口
package top.yxqz.number3.service;
import top.yxqz.number3.entity.Emp;
/**
* @author: 余小小
* @description:
*/
public interface EmpService {
Emp getEmpById(Integer id);
void emp(Emp emp);
}
服务层接口实现类
package top.yxqz.number3.service.imp;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import top.yxqz.number3.entity.Emp;
import top.yxqz.number3.mapper.EmpMapper;
import top.yxqz.number3.service.EmpService;
/**
* @author: 余小小
* @description:
*/
@Service
public class EmpServiceImp implements EmpService {
@Autowired
private EmpMapper mapper;
@Override
public Emp getEmpById(Integer id) {
return mapper.selectById(id);
}
}
持久层
package top.yxqz.number3.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import top.yxqz.number3.entity.Emp;
/**
* @author: 余小小
* @description:持久层
*/
@Mapper
public interface EmpMapper extends BaseMapper<Emp> {
}
测试类
package top.yxqz.number3;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import top.yxqz.number3.controller.EmpController;
import top.yxqz.number3.entity.Emp;
/**
* @author: 余小小
* @description:
*/
@SpringBootTest
public class TestEmp {
@Autowired
private EmpController controller;
@Test
public void getEmpById() {
Emp emp = controller.getEmpById(1);
System.out.println(emp);
}
}
测试结果:
需要引入Web启动器 此实验中已经引入
在表述层添加相关的MVC注解
@GetMapping("/emp")
public Emp getEmpById(@RequestParam("id") Integer id) {
return service.getEmpById(id);
}
使用浏览器客户端进行请求:localhost/emp?id=2
请求结果如图