使用springboot,mybatis-plus和vue的简单增删改查

使用springboot和vue的简单增删改查

目录结构

在这里插入图片描述

controller层
package com.zt.springboot.controller;

import java.util.Arrays;
import java.util.Map;

import com.zt.springboot.utils.PageUtils;
import com.zt.springboot.utils.R;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import com.zt.springboot.entity.StudentEntity;
import com.zt.springboot.service.StudentService;

/**
 * 
 *
 * @author zhangtao
 * @email zhangtao@gmail.com
 * @date 2022-09-29 22:27:19
 */
@CrossOrigin("*")
@RestController
@RequestMapping("/student")
public class StudentController {
   
    @Autowired
    private StudentService studentService;

    /**
     * 列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params){
   
        PageUtils page = studentService.queryPage(params);

        return R.ok().put("page", page);
    }


    /**
     * 信息
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Integer id){
   
		StudentEntity student = studentService.getById(id);

        return R.ok().put("student", student);
    }

    /**
     * 保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody StudentEntity student){
   
		studentService.save(student);

        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody StudentEntity student){
   
		studentService.updateById(student);

        return R.ok();
    }

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Integer[] ids){
   
		studentService.removeByIds(Arrays.asList(ids));
        return R.ok();
    }
}
dao层
package com.zt.springboot.dao;

import com.zt.springboot.entity.StudentEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;

/**
 * 
 * 
 * @author zhangtao
 * @email zhangtao@gmail.com
 * @date 2022-09-29 22:27:19
 */
@Mapper
public interface StudentDao extends BaseMapper<StudentEntity> {
   
	
}
service层
package com.zt.springboot.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.zt.springboot.entity.StudentEntity;
import com.zt.springboot.utils.PageUtils;

import java.util.Map;

/**
 * 
 *
 * @author zhangtao
 * @email zhangtao@gmail.com
 * @date 2022-09-29 22:27:19
 */
public interface StudentService extends IService<StudentEntity> {
   

    PageUtils queryPage(Map<String, Object> params);
}
serviceimpl层
package com.zt.springboot.service.impl;

import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata
  • 3
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
首先,需要在后端环境中搭建好 Spring Boot 和 MyBatis Plus 的开发环境,可以使用 Maven 或 Gradle 等构建工具来引入所需的依赖。 接下来,需要创建一个数据表对应的 Java 实体类,并使用 MyBatis Plus 提供的注解来标识表名、主键、字段等信息。例如: ``` @Data @TableName("user") public class User { @TableId(type = IdType.AUTO) private Long id; private String name; private Integer age; } ``` 然后,创建一个 Mapper 接口,继承自 MyBatis Plus 提供的 BaseMapper 接口,用于定义增删等基本操作。例如: ``` public interface UserMapper extends BaseMapper<User> { } ``` 在 Spring Boot 的配置文件中,配置数据库连接信息和 MyBatis Plus 相关配置,例如: ``` spring.datasource.url=jdbc:mysql://localhost:3306/test spring.datasource.username=root spring.datasource.password=root spring.datasource.driver-class-name=com.mysql.jdbc.Driver mybatis-plus.configuration.map-underscore-to-camel-case=true ``` 最后,在 Spring Boot 中创建一个 Controller 类,定义对应的请求处理方法,例如: ``` @RestController @RequestMapping("/user") public class UserController { @Autowired private UserMapper userMapper; @GetMapping("/{id}") public User getUserById(@PathVariable("id") Long id) { return userMapper.selectById(id); } @PostMapping("") public void createUser(@RequestBody User user) { userMapper.insert(user); } @PutMapping("/{id}") public void updateUser(@PathVariable("id") Long id, @RequestBody User user) { user.setId(id); userMapper.updateById(user); } @DeleteMapping("/{id}") public void deleteUser(@PathVariable("id") Long id) { userMapper.deleteById(id); } } ``` 这样,就完成了 Vue 和 Spring Boot 整合 MyBatis Plus 做增删的基本流程。在前端中,可以使用 Axios 等 HTTP 请求库来调用后端的接口。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值