上一页 1 2 3 4 5 6 7 ··· 26 下一页

2023年1月29日

linux中执行post请求 参数是json格式

摘要: 1.linux中执行post请求 参数是json格式 curl -H "Content-Type:application/json" -X POST --data '{"name":"fym"}' http://localhost:8080/insertData 阅读全文

posted @ 2023-01-29 17:27 悄悄的来,匆匆的走 阅读(396) 评论(0) 推荐(0) 编辑

2023年1月28日

Spring Cloud项目启动失败:class path resource [mapper/] cannot be resolved to URL because it does not exist

摘要: Spring Cloud项目启动失败:class path resource [mapper/] cannot be resolved to URL because it does not exist 这个是无法解析当前的URL,做出如下修改,classpath 后多加一个“ * ”,修复了这个错误 阅读全文

posted @ 2023-01-28 16:37 悄悄的来,匆匆的走 阅读(1265) 评论(0) 推荐(0) 编辑

2022年12月19日

SpringBoot项目向前端返回json数据时,忽略为 null 的属性字段

摘要: 主要有两种方法实现: 在返回类上添加注解 @JsonInclude(JsonInclude.Include.NON_NULL) 该注解可以将实体类中的null的属性自动忽略。 Springboot 项目可以修改 application.yml 文件配置全局自动忽略: spring: jackson: 阅读全文

posted @ 2022-12-19 14:32 悄悄的来,匆匆的走 阅读(737) 评论(0) 推荐(0) 编辑

2022年12月7日

复制数据结构和索引,还有数据

摘要: CREATE TABLE 新表 LIKE 旧表; INSERT INTO 新表 SELECT * FROM 旧表 ; 阅读全文

posted @ 2022-12-07 20:05 悄悄的来,匆匆的走 阅读(15) 评论(0) 推荐(0) 编辑

2022年11月22日

springboot配置文件开启mybatis得debug日志配置

摘要: 阅读全文

posted @ 2022-11-22 18:34 悄悄的来,匆匆的走 阅读(638) 评论(0) 推荐(0) 编辑

Spring Cloud Feign 压缩配置导致的字符混乱(only regular white space )

摘要: [nio-9601-exec-2] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse 阅读全文

posted @ 2022-11-22 17:22 悄悄的来,匆匆的走 阅读(1490) 评论(0) 推荐(0) 编辑

2022年11月9日

清空redis 所有数据

摘要: 阅读全文

posted @ 2022-11-09 12:18 悄悄的来,匆匆的走 阅读(50) 评论(0) 推荐(0) 编辑

2022年10月10日

--illegal-access=permit

摘要: ——illegal-access=permit 默认行为。允许对封装类型进行非法访问。当第一次尝试通过反射进行非法访问时会生成一个警告 ——illegal-access=warn 与permit一样,但每次非法访问尝试时都会产生错误 ——illegal-access=debug 同时显示非法访问尝试 阅读全文

posted @ 2022-10-10 14:33 悄悄的来,匆匆的走 阅读(858) 评论(0) 推荐(0) 编辑

2022年9月1日

@sync 失效的原因

摘要: 1.别忘记激活了 在启动类上使用@EnableAsync注解,进行激活 2、在方法上标上@sync注解,表示异步调用 ,默认的线程池是使用springboot的线程池 阅读全文

posted @ 2022-09-01 17:01 悄悄的来,匆匆的走 阅读(677) 评论(0) 推荐(0) 编辑

2022年7月8日

No qualifying bean of type 'org.springframework.boot.autoconfigure.http.HttpMessageConverters'

摘要: Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.springframework.boot.autoconfigure.http.Ht 阅读全文

posted @ 2022-07-08 15:50 悄悄的来,匆匆的走 阅读(3101) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 26 下一页

导航