随笔分类 -  JAVA_SpringBoot

1 2 3 4 5 ··· 17 下一页
摘要:检测 Maven 依赖冲突的插件 1. Maven Helper (在 Marketplace 中搜索) 阅读全文
posted @ 2025-02-12 17:24 kelelipeng 阅读(4) 评论(0) 推荐(0) 编辑
摘要:knife4j-openapi3 4.5 最基本的使用 openAPI https://blog.csdn.net/YUELEI118/article/details/144383347 SpringBoot3整合Knife4j之保姆级教程 https://blog.csdn.net/qq_5086 阅读全文
posted @ 2025-01-10 17:34 kelelipeng 阅读(40) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/44144.htm 如何让Jackson JSON生成的数据包含的中文以unicode方式编码 Jackson JSON以高速、方便和灵活著称。之前的文章中介绍过使用注解的形式来规定如何将一个对象序列化成JSON的方法,以及如何将一个JSON 阅读全文
posted @ 2024-12-30 17:12 kelelipeng 阅读(54) 评论(0) 推荐(0) 编辑
摘要:Springboot监听器的使用(ApplicationListener、SmartApplicationListener、@EventListener) https://blog.csdn.net/m0_54355172/article/details/128592476 目录 前言 1. App 阅读全文
posted @ 2024-10-25 17:44 kelelipeng 阅读(1062) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/lyn8100/p/17009930.html 目录 问题背景 解决方案 1.更改操作系统快捷方式 2.更改idea启动配置参数 3.增加编译内存(必做) 4.卸载不必要的插件(选做) 5.清理缓存(选做) 6.减少内存 7.适当关闭idea的Insp 阅读全文
posted @ 2024-10-18 10:38 kelelipeng 阅读(2422) 评论(0) 推荐(0) 编辑
摘要:Spring MVC中Filter配置的6种方式 https://www.cnblogs.com/xfeiyun/p/15790555.html 工具类,关于手工读取 properties文件参数 //Spring MVC 中以代码方式配置 Filter,经验证可以使用@Configuration 阅读全文
posted @ 2024-09-26 17:30 kelelipeng 阅读(135) 评论(0) 推荐(0) 编辑
摘要:import java.io.*; import java.util.Enumeration;import java.util.Properties;import java.util.Vector;import org.slf4j.Logger;import org.slf4j.LoggerFact 阅读全文
posted @ 2024-09-26 16:44 kelelipeng 阅读(8) 评论(0) 推荐(0) 编辑
摘要:概述什么是幂等?幂等(idempotent、idempotence)是一个数学与计算机学概念,常见于抽象代数中。f(f(x)) = f(x),即其任意多次执行所产生的影响均与一次执行的影响相同。百度百科幂等介绍 1 为什么要做幂等如果系统只是读的接口不涉及写的,这些接口本身就是幂等的。对于涉及数据变 阅读全文
posted @ 2024-08-28 10:33 kelelipeng 阅读(65) 评论(0) 推荐(0) 编辑
摘要:lambda 中 map 和 flatMap 的区别 https://blog.csdn.net/weixin_52772307/article/details/128944511 总结: 当我们需要将具有层级结构的数据展平时,也就是将多层数据转换为单层数据操作时,我们可以使用 flatMap 方法 阅读全文
posted @ 2024-08-06 17:53 kelelipeng 阅读(450) 评论(0) 推荐(0) 编辑
摘要:原文链接:https://blog.csdn.net/qq_39940205/article/details/114269686 _____________________________________________________________________________________ 阅读全文
posted @ 2024-03-01 18:47 kelelipeng 阅读(681) 评论(0) 推荐(0) 编辑
摘要:IDEA 热启动,每次更改代码后不用重启服务 1、ctrl+Shift+Alt+/,选择Registry 2、勾选 compiler.automake.allow.when.app.running(可能不按首字母排序,可以多找找) 3、Setting >Compiler >勾选Build proje 阅读全文
posted @ 2024-03-01 17:32 kelelipeng 阅读(481) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_44973159/article/details/130106544 瘦身SpringBoot:优化项目打包大小的方法1、打jar包的痛点2、瘦身思路3、开始打包4、如何启动项目1、打jar包的痛点现有的应用开发中,不论是单体架构、微服务架构,如果项 阅读全文
posted @ 2024-01-03 17:32 kelelipeng 阅读(307) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/GL1765852966/article/details/124085140 第 1 条:串行改并行 将接口中非依赖的步骤由串行改为并行。通常咱们写接口是串行执行的,比如商品详情接口,如下 1、根据商品ID查询商品基本信息2、根据商品ID查询商品评论信息3 阅读全文
posted @ 2023-11-09 10:22 kelelipeng 阅读(32) 评论(0) 推荐(0) 编辑
摘要:一个IDEA界面如何同时打开多个项目 https://blog.csdn.net/tianjindong0804/article/details/105265089 阅读全文
posted @ 2023-09-26 18:25 kelelipeng 阅读(542) 评论(0) 推荐(0) 编辑
摘要:1.生成dumphttps://codeleading.com/article/66886036306/ 2.MAT分析https://www.rstk.cn/news/1446356.html?action=onClick 下载:(2019年之前) https://eclipse.dev/mat/ 阅读全文
posted @ 2023-09-01 15:46 kelelipeng 阅读(231) 评论(0) 推荐(0) 编辑
摘要:Java程序突然挂掉问题排查过程 问题: 程序在linxu服务器运行的好好的,收到线上告警服务离线,登录linux服务器查看,发现服务进程已经终止。 排查过程:1.思考可能引起服务挂掉的原因 java本身发生OOM,即日志中打印"java.lang.OutOfMemoryError: Java he 阅读全文
posted @ 2023-08-30 11:07 kelelipeng 阅读(952) 评论(0) 推荐(0) 编辑
摘要:把手教你使用JMeter对HTTP进行压力测试 https://baijiahao.baidu.com/s?id=1604210855080150766&wfr=spider&for=pc 阅读全文
posted @ 2023-08-23 13:39 kelelipeng 编辑
摘要:WebMvcConfigurerAdapter类被弃用后的两种选择 介绍 在本文中,将介绍将spring 4.xx(或者更低)版本升级到Spring 5.xx以及将Spring Boot 1.xx版本升级到Spring Boot 2.xx版本后会报的一个严重警告:“Warning:The type 阅读全文
posted @ 2023-08-10 14:35 kelelipeng 阅读(693) 评论(0) 推荐(0) 编辑
摘要:1.学会使用Test,让自己的代码不再有bug——@SpringBootTest的妙用 https://baijiahao.baidu.com/s?id=1760961522946985249&wfr=spider&for=pc 2.SpringBoot Test 人类使用指南https://zhu 阅读全文
posted @ 2023-08-03 11:56 kelelipeng 阅读(184) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 17 下一页
点击右上角即可分享
微信分享提示