• 若依断言工具、快速开发工具、代码优化


    • 背景:在业务中要写许多if判断条件,抛出异常。业务代码与断言代码耦合,可读性极差,即使引入@Validated进行分组校验,也存在大量需要自己断言的地方。

    • oauth2认证过程中要根据不同模式校验参数,代码已经优化处理,只对入参判空,还有client_id、client_secret、username、password、redirect_uri、code验证在这里插入图片描述

    • 解决方案:断言工具类

    package com.erss.common.core.utils;
    
    import com.erss.common.core.domain.R;
    import com.erss.common.core.exception.base.BaseException;
    import org.apache.commons.lang3.StringUtils;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Component;
    import org.springframework.util.ObjectUtils;
    
    import java.util.Map;
    
    /**
     * 断言工具类
     *
     * @author weimingzhong
     * @date 2022/10/24 18:00
     */
    public class AssertUtil {
    
        private static final Logger log = LoggerFactory.getLogger(AssertUtil.class);
    
    
        /**
         * 判断字符串是否为空
         * 

    * AssertUtil.strIsEmpty(accessTokenBody.getCode(), "授权码为空"); * * @param str 字符串 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/25 17:26 */ public static void strIsEmpty(String str, String returnMsg) { if (StringUtils.isEmpty(str)) { throw new BaseException(returnMsg); } } /** * 判断字符串是否为空 *

    * AssertUtil.strIsEmpty(OAUTH2_MODULE, OAUTH2_ERROR_D0103.getCode(), null, accessTokenBody.getCode(), "授权码为空", OAUTH2_ERROR_D0103.getDesc()); * * @param str 字符串 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/25 17:26 */ public static void strIsEmpty(String module, String code, Object[] args, String str, String realMsg, String returnMsg) { if (StringUtils.isEmpty(str)) { if (StringUtils.isNoneEmpty(realMsg)) { log.info(realMsg); } throw new BaseException(module, code, args, returnMsg); } } /** * 判断字符串是否相等 * * @param s1 字符串1 * @param s2 字符串2 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/25 17:29 */ public static void strIsNotEquals(String s1, String s2, String returnMsg) { if (!StringUtils.equals(s1, s2)) { throw new BaseException(returnMsg); } } /** * 判断Long类型是否相等 * * @param l1 参数一 * @param l2 阐述二 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/25 17:29 */ public static void longIsEquals(Long l1, Long l2, String returnMsg) { if (l1.equals(l2)) { throw new BaseException(returnMsg); } } /** * @param obj 对象 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/25 17:31 */ public static void objIsNotNull(Object obj, String returnMsg) { if (ObjectUtils.isEmpty(obj)) { throw new BaseException(returnMsg); } } /** * @param b 布尔值 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/25 17:25 */ public static void booleanIsTrue(Boolean b, String returnMsg) { if (!b) { throw new BaseException(returnMsg); } } /** * 如果参数1大于参数2抛出异常, * AssertUtil.integerCompare(parentNode.getLevel(), START_LEVEL, "最大层级为两层"); * * @param int1 参数1 * @param int2 参数2 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/11 11:22 */ public static void integerCompare(Integer int1, Integer int2, String returnMsg) { if (int1 > int2) { throw new BaseException(returnMsg); } } /** * 用于查询数据存在 * AssertUtil.checkDataBaseExist(manageNavigationMapper.checkHaveChildren(id), "请先删除子节点"); * * @param result 数据库结果 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/11 11:22 */ public static void checkDataBaseExist(int result, String returnMsg) { if (result > 0) { throw new BaseException(returnMsg); } } /** * 用于插入数据 *

    * AssertUtil.insertDataBaseIsOk(expertInfoMapper.insertExpertInfo(expertInfo),"添加数据失败"); * * @param result 数据库结果 * @param returnMsg 返回消息 * @author weimingzhong * @date 2022/11/11 11:22 */ public static void dataBaseActionIsOk(int result, String returnMsg) { if (result == 0) { throw new BaseException(returnMsg); } } /** * * * @param r 内部服务请求 * @return 结果 * @author weimingzhong * @date 2022/12/6 18:01 */ public static void innerServerIsOk(R r) { if (R.FAIL == r.getCode()) { throw new BaseException("网络异常"); } } }

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
  • 相关阅读:
    RocketMQ学习笔记(三)——消息丢失的场景及解决方案
    Mysql同环比计算详解
    2 万字详解,彻底讲透 Elasticsearch
    Blazor和Vue对比学习(基础1.2):模板语法和Razor语法
    命名实体识别
    如何让JOIN跑得更快?
    【Seata源码学习 】 篇二 TM与RM初始化过程
    .net-----多线程编程技术
    SPPNet:金字塔网络
    在执行对 HDFS 中创建用户目录的指令时,回复的命令如下图所示
  • 原文地址:https://blog.csdn.net/qq_43751489/article/details/128041883