IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringBoot整合第三方技术 -> 正文阅读

[Java知识库]SpringBoot整合第三方技术

SpringBoot整合Junit

在这里插入图片描述

SpringBoot整合MyBatis

? 新建模块,选择Spring初始化,并配置模块相关基础信息
在这里插入图片描述

? 选择当前模块需要使用的技术集(MyBatis、MySQL)
在这里插入图片描述

? 创建代理类(数据层接口)

package com.GY.dao;
import com.GY.domain.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

//创建代理类
@Mapper
public interface UserDao {
    @Select("select * from user where id=#{id}")
    public User getID(Integer id);

}

? 设置数据源参数

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/test?serverTimezone=UTC
    username: root
    password: 123456

此时我们测试dao接口(发现有大量报错信息)
在这里插入图片描述

报错信息大致如下
在这里插入图片描述

查阅后发现我们需要设置下时区,这里不是 springboot + mybatis 的问题,而是为了使MySQL JDBC驱动的版本与UTC时区配合使用( 全球标准时间),必须在连接字符串中明确指定serverTimezone (指定时区)
UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。

//北京时间东八区
serverTimezone=GMT%2B8 
//或者使用上海时间
serverTimezone=Asia/Shangha

🚸🚸注意事项:SpringBoot版本低于2.4.3(不含),Mysql 驱动版本大于8.0时,需要在url连接串中配置时区
url: jdbc:mysql://127.0.0.1:3306/test?serverTimezone=UTC

? 修改application.yml中的配置信息
在这里插入图片描述

? 查询成功
在这里插入图片描述

基于SpringBoot实现ssm整合
? 选择当前模块需要使用的技术集(Spring Web、MyBatis、MySQL)

在这里插入图片描述

包层次结构
在这里插入图片描述

基于REST风格的控制器类

package com.GY.controller;
import com.GY.domain.User;
import com.GY.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import java.util.List;

@RestController
@RequestMapping("/users")
public class UserController {

    @Autowired
    private UserService userService;

    //添加
    @PostMapping
    public Result save(@RequestBody User user){
        boolean flag=userService.save(user);
        return new Result(flag?Code.SAVE_OK:Code.SAVE_ERR,flag) ;
    }

    //删除
    @DeleteMapping("/{id}")
    public Result delete(@PathVariable Integer id){
        boolean flag=userService.delete(id);
        return new Result(flag?Code.DELETE_OK:Code.DELETE_ERR,flag) ;
    }

    //修改
    @PutMapping
    public Result update(@RequestBody User user){
        boolean flag= userService.update(user);
        return new Result(flag?Code.UPDATE_OK:Code.UPDATE_ERR,flag) ;
    }

    //查询一个
    @GetMapping("/{id}")
    public Result getById(@PathVariable Integer id){
        User user=userService.getById(id);
        System.out.println(user);
        Integer code=user!=null?Code.GET_OK:Code.GET_ERR;
        String msg=user!=null?"":"数据查询失败,请重试";
        return new Result(code,user,msg);
    }

    //查询全部
    @GetMapping
    public Result getAll(){
        List<User> list=userService.getAll();
        Integer code=list!=null?Code.GET_OK:Code.GET_ERR;
        String msg=list!=null?"":"数据查询失败,请重试";
return new Result(code,list,msg);
    }
}

码值类
在这里插入图片描述

基于REST风格的控制器类

package com.GY.controller;
import com.GY.domain.User;
import com.GY.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;

@RestController
@RequestMapping("/users")
public class UserController {

    @Autowired
    private UserService userService;

    //添加
    @PostMapping
    public Result save(@RequestBody User user){
        boolean flag=userService.save(user);
        return new Result(flag?Code.SAVE_OK:Code.SAVE_ERR,flag) ;
    }

    //删除
    @DeleteMapping("/{id}")
    public Result delete(@PathVariable Integer id){
        boolean flag=userService.delete(id);
        return new Result(flag?Code.DELETE_OK:Code.DELETE_ERR,flag) ;
    }

    //修改
    @PutMapping
    public Result update(@RequestBody User user){
        boolean flag= userService.update(user);
        return new Result(flag?Code.UPDATE_OK:Code.UPDATE_ERR,flag) ;
    }

    //查询一个
    @GetMapping("/{id}")
    public Result getById(@PathVariable Integer id){
        User user=userService.getById(id);
        System.out.println(user);
        Integer code=user!=null?Code.GET_OK:Code.GET_ERR;
        String msg=user!=null?"":"数据查询失败,请重试";
        return new Result(code,user,msg);
    }

    //查询全部
    @GetMapping
    public Result getAll(){
        List<User> list=userService.getAll();
        Integer code=list!=null?Code.GET_OK:Code.GET_ERR;
        String msg=list!=null?"":"数据查询失败,请重试";
return new Result(code,list,msg);
    }
}

系统异常

package com.GY.exception;

public class SystemException extends RuntimeException{

    private Integer code;

    public Integer getCode() {
        return code;
    }

    public SystemException(Integer code, String message) {
        super(message);
        this.code = code;
    }
    public SystemException(Integer code,String message, Throwable cause) {
        super(message, cause);
        this.code = code;
    }
}

业务异常

package com.GY.exception;

public class BusinessException extends RuntimeException{
    private Integer code;

    public Integer getCode() {
        return code;
    }

    public BusinessException(Integer code, String message) {
        super(message);
        this.code = code;
    }
    public BusinessException(Integer code,String message, Throwable cause) {
        super(message, cause);
        this.code = code;
    }
}

异常处理类

package com.GY.controller;
import com.GY.exception.BusinessException;
import com.GY.exception.SystemException;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

@RestControllerAdvice
public class ProjectExceptionAdvice {
    @ExceptionHandler(SystemException.class)
    public  Result doSystemException(SystemException e){
        return new Result(e.getCode(),null,e.getMessage());
    }

    @ExceptionHandler(BusinessException.class)
    public  Result doBusinessException(BusinessException e){
        return new Result(e.getCode(),null,e.getMessage());
    }

    @ExceptionHandler(Exception.class)
    public  Result doException(Exception e){
        return new Result(Code.SYSTEM_UNKNOW_ERR,null,"系统繁忙,请稍后重试");
    }
}

返回结果集封装
在这里插入图片描述

发送请求测试
在这里插入图片描述

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-08-19 18:50:24  更:2022-08-19 18:51:54 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:23:53-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码