Title
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: 两种方案 1、使用 @ControllerAdvice (或@RestControllerAdvice), @ExceptionHandler 注解实现; 2、使用AOP技术实现; 1、使用 @ControllerAdvice (或@RestControllerAdvice), @Exception 阅读全文
posted @ 2021-12-09 18:14 快乐小洋人 阅读(216) 评论(0) 推荐(0) 编辑
摘要: HttpMessageConverters 作用:Http请求/响应与Java对象之间的转换,如下图所示。 导包 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.3< 阅读全文
posted @ 2021-12-09 17:05 快乐小洋人 阅读(86) 评论(0) 推荐(0) 编辑
摘要: ### 第一种 * 响应状态码 ```java package com.zl.securitytest.common; /** * 结果状态码集 * * @author z * @date 2021-12-06 18:11 */ public enum ResultCode { // 执行成功 SU 阅读全文
posted @ 2021-12-06 18:40 快乐小洋人 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 使用构造方法 BigDecimal(double) 的方式把 double 值转化为 BigDecimal 对象造成精度损失。 说明:BigDecimal(double)存在精度损失风险,在精确计算或值比较的场景中可能会导致业务逻辑异常。 如:BigDecimal g = new BigDecima 阅读全文
posted @ 2021-12-01 11:22 快乐小洋人 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 三个查询github网址: github网址查询:https://websites.ipaddress.com/github.com github域名查询:https://websites.ipaddress.com/github.global.ssl.fastly.net github静态资源ip 阅读全文
posted @ 2021-11-27 14:06 快乐小洋人 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 在 C盘的文档里新建文件夹 名字为 QuickOpen 用于储存快捷方式 新建一个文本文件,在里面粘贴一下代码 ' 脚本说明 https://blog.csdn.net/milaoshu1020/article/details/80711574 ' 脚本版本 v1.3 ' [更新历史] ' 2020 阅读全文
posted @ 2021-11-20 20:34 快乐小洋人 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 配置图片直接访问 编写一个配置类(名字任意取) 继承(extends)WebMvcConfigurationSupport 类 @Configuration public class WebMvcConfiguration extends WebMvcConfigurationSupport { } 阅读全文
posted @ 2021-11-18 16:19 快乐小洋人 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 一般前端用get请求时,接口用@RequestParamget请求的话,前台一般url后面直接加?参数名=“参数值”,后台的话一般直接接口后面直接接收参数即可.如果不行的话就加@RequestParam(value=“参数名”)参数类型 参数名 如下图: 使用post请求,后台接收不到参数使用pos 阅读全文
posted @ 2021-11-18 16:00 快乐小洋人 阅读(2304) 评论(0) 推荐(0) 编辑
摘要: springboot测试类时注入对象为NullPointerException时: 正常来说测试类加@SpringBootTest可以正常@Test测试 但@SpringBootTest(classes = BootApplication.class)中的classes的值要纸箱启动类的才可以正常注 阅读全文
posted @ 2021-11-18 11:18 快乐小洋人 阅读(1701) 评论(0) 推荐(1) 编辑
摘要: 更换背景壁纸 因为直接更换壁纸可能会遇到卡回默认的壁纸问题,这里的更换是替换默认壁纸 1、打开路径 C:\Windows\Web\Wallpaper\Windows 2、将准备好的背景图片复制进去,并修改文件名为 img0,如果无法改名需要获取TrustedInstaller权限,点击获取Trust 阅读全文
posted @ 2021-11-16 01:06 快乐小洋人 阅读(2639) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页