JAVAspringbootalready

SpringBoot -- CRUD -- 简单实现

2022-07-28  本文已影响0人  像我这么帅的一般都是主角

@Restcontroller 与 controller 之间的区别
如果在类上加@Restcontroller,该类中所有SpringMVC接口映射都是返回json格式
在每个方法上加上@ResponseBody注解,返回json格式
@Restcontroller来自SpringMVC 而不是SpringBoot

Rest 微服务接口开发中 Rest风格,数据传输json格式 协议:http

controller控制层注解 SpringMVCUrl接口映射 默认情况下返回页面跳转
若需要返回json格式的情况下 需要@RequestBody注解

数据获取

  1. 首先创建一个entity类
package com.qingge.springboot.entity;


import lombok.Data;


@Data
public class User {
    private Integer id;
    private String username;
    private String password;
}

  1. 创建一个mapper
package com.qingge.springboot.mapper;

import com.qingge.springboot.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper
public interface UserMapper {

    @Select("select * from user")
    List<User> findAll();


}

  1. 创建一个controller
package com.qingge.springboot.controller;


import com.qingge.springboot.entity.User;
import com.qingge.springboot.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
public class UserController {


    @Autowired
    private UserMapper userMapper;

    @GetMapping("/")
    public List<User> index() {
        return userMapper.findAll();
    }
}

  1. 随后打开localhost:POST 可以看到数据库的数据

增加和修改

  1. 在mapper中写一个接口
@Insert("insert into user (id, username, password) values (#{id},#{username},#{password})")
    int insert(User user);
  1. controller中添加对应的方法
    @PostMapping
    public Integer save(@RequestBody User user){
        return userMapper.insert(user);
    }
  1. 使用postman测试


    image.png

    注意: 主键不能为空 主键不能重复

  2. 如何将增加和修改添加到一个方法内?
    4.1 创建一个service类

package com.qingge.springboot.service;

import com.qingge.springboot.entity.User;
import com.qingge.springboot.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @Autowired
    private UserMapper userMapper;

    public int save(User user) {
        if (user.getId() == null) {
            return userMapper.insert(user);
        }else{
            return userMapper.update(user);
        }
    }
}

4.2 在mapper中添加update方法

    @Update("update user set username = #{username}, password = #{password}")//sql还要修改
    int update(User user);

4.3 在controller中修改方法save, 并且引入userService

    @Autowired
    private UserService userService;

    @PostMapping
    public Integer save(@RequestBody User user){
        return userService.save(user);
    }

4.4 postman测试接口


image.png
  1. 引入动态sql --- mybatis


    image.png

    5.1 在user.xml中写sql

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.qingge.springboot.mapper.UserMapper">

    <update id="update">
        update user
        <set>
            <if test="username != null">
                username = #{username},
            </if>
        </set>
        <where>
            id = #{id}
        </where>
    </update>

</mapper>

5.2 修改mapper中的代码, 将@...后的sql注释掉, 将sql集中在user.xml中

5.3 在application.yml中加入mybatis的config

mybatis:
  mapper-locations: classpath:mapper/*.xml  #扫描所有mybatis的xml文件
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

5.4 使用postman测试


image.png

删除

  1. 在controller中写对应的方法
    @DeleteMapping("/{id}")
    public Integer delete(@PathVariable Integer id){ //@PathVariable与@DeleteMapping后面的{id}对应
        return userMapper.deleteById();
    }
  1. 在mapper中写接口
@Delete("delete from user where id = #{id}")
    Integer deleteById(@Param("id") Integer id);//@Param与sql中#{id}对应
  1. 使用postman测试接口


    image.png
上一篇下一篇

猜你喜欢

热点阅读