上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: ### 1、问题描述 接口返回值加多层泛型,但没有反序列化彻底 ![](https://img2023.cnblogs.com/blog/1392300/202308/1392300-20230817141500828-542065681.png) ### 2、问题原因 jackson-databi 阅读全文
posted @ 2023-08-17 14:18 品书读茶 阅读(441) 评论(0) 推荐(0)
摘要: 说明 自定义feign的解码器Decoder需要实现feign.codec.Decoder接口,并重写decode方法,当接口在调用时发生了异常,则调用时不会走解码器(Decoder)逻辑,会走错误解码器(ErrorDecoder)的逻辑,反之亦然。自定义错误解码器和解码器方式相似,只是需要实现不同 阅读全文
posted @ 2023-08-11 14:20 品书读茶 阅读(2373) 评论(0) 推荐(0)
摘要: ### 定义转换器 ``` package com.haier.hibp.stock.util; import com.alibaba.excel.converters.Converter; import com.alibaba.excel.converters.WriteConverterCont 阅读全文
posted @ 2023-08-09 17:18 品书读茶 阅读(315) 评论(0) 推荐(0)
摘要: 1、打开我的电脑,在地址栏中输入C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp,回车,进入该文件夹,这是启动项所在文件夹。 2、将需要添加开机启动的文件或者快捷程序拖到该文件夹下即可实现开机启动。 阅读全文
posted @ 2022-10-21 17:08 品书读茶 阅读(480) 评论(0) 推荐(0)
摘要: 1、配置文件写法 spring: profiles: dev quartz: auto-startup: true spring: profiles: local quartz: auto-startup: false 2、虚拟机参数配置 -D:spring.profiles.active=dev, 阅读全文
posted @ 2022-05-31 11:01 品书读茶 阅读(33) 评论(0) 推荐(0)
摘要: hutool 的JSONUtil import cn.hutool.json.JSON; import cn.hutool.json.JSONUtil; import java.util.ArrayList; import java.util.List; public class Main { pu 阅读全文
posted @ 2022-05-18 17:55 品书读茶 阅读(94) 评论(0) 推荐(0)
摘要: 问题现象 Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'a': Bean with name 'a' has been inj 阅读全文
posted @ 2022-05-09 14:02 品书读茶 阅读(343) 评论(0) 推荐(0)
摘要: Client-error:unknown code for readObject at 0x3c (<) 原因之一是classNotFoundRxception :com.caucho.hessian.io.HessianInput 解决方式: implementation 'com.caucho: 阅读全文
posted @ 2021-08-18 13:59 品书读茶 阅读(311) 评论(0) 推荐(0)
摘要: package com.xxx.platform.util; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.StringRedisTe 阅读全文
posted @ 2021-08-17 15:04 品书读茶 阅读(782) 评论(0) 推荐(0)
摘要: ###1、创建一张伪序列表 CREATE TABLE sequence ( seq_name VARCHAR (50) NOT NULL,-- 序列名称 current_val INT NOT NULL,-- 当前值 increment_val INT NOT NULL DEFAULT 1,-- 步 阅读全文
posted @ 2021-08-17 10:26 品书读茶 阅读(93) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页