上一页 1 2 3 4 5 6 7 8 ··· 23 下一页
摘要: Spring Boot Actuator 是一个非常强大的模块,它为 Spring Boot 应用程序提供了生产级别的监控和管理功能。以下是对 Spring Boot Actuator 的详细解析: 1. **什么是 Actuator**: - Spring Boot Actuator 是一个扩展模 阅读全文
posted @ 2023-12-20 09:20 刘百会 阅读(429) 评论(0) 推荐(0)
摘要: 1、芋道各个版本之间的关系 官网代码下载地址:https://gitee.com/zhijiantianya 学习教程:https://doc.iocoder.cn/ 找到图片 安装yudao-ui-admin-uniapp芋道的问题 1.换源 npm config set registry htt 阅读全文
posted @ 2023-12-14 14:35 刘百会 阅读(1503) 评论(0) 推荐(0)
摘要: 官网地址:https://help.aliyun.com/document_detail/2590613.html?spm=a2c4g.2590612.0.i0 阅读全文
posted @ 2023-12-13 09:14 刘百会 阅读(539) 评论(0) 推荐(0)
摘要: 1、时间戳 时间戳是指格林威治时间 1970 年 01 月 01 日 00 时 00 分 00 秒(北京时间 1970 年 0 1 月 01 日 08 时 00 分 00 秒)起至现在的总秒数。通俗的讲, 时间戳是一份能够表示一份 数据在一个特定时间点已经存在的完整的可验证的数据 2、格林威治时间 阅读全文
posted @ 2023-12-12 09:04 刘百会 阅读(76) 评论(0) 推荐(0)
摘要: 1、添加依赖 <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.4.1</version> <!-- 请使用最新版本 --> </dependency> 2、编写代码 @ 阅读全文
posted @ 2023-12-05 15:25 刘百会 阅读(404) 评论(0) 推荐(0)
摘要: 在我们平时查询数据库表记录行数的时候,经常会使用到count()函数,比如使用count(*)、count(1)或者count(某个主键或索引列),今天我们来对比下这些用法中哪个性能最优秀! count()方法的目的是计算当前sql语句查询得到的非NULL的行数 。 我们知道mysql是分为serv 阅读全文
posted @ 2023-11-11 11:08 刘百会 阅读(130) 评论(0) 推荐(0)
摘要: chcp 65001 阅读全文
posted @ 2023-10-31 09:11 刘百会 阅读(13) 评论(0) 推荐(0)
摘要: 注入方式:通过set方式,属性方式,构造方法注入 反射:获取构造方法,获取属性,获取方法。 阅读全文
posted @ 2023-10-29 21:47 刘百会 阅读(11) 评论(0) 推荐(0)
摘要: 1、添加依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 阅读全文
posted @ 2023-10-15 17:54 刘百会 阅读(1202) 评论(0) 推荐(1)
摘要: 传统查询是一次性取出所有数据然后处理,对上百万的数据突出两个问题:1. 处理时间长,阻塞数据库IO; 2. 一次性占用内存多,易OOM;流式查询则使用数据库游标,查一行处理一行,消耗内存较少,不阻塞数据库IO,在大数据处理场景中推荐使用。 /** * (Order)表数据库访问层 * * @auth 阅读全文
posted @ 2023-09-26 17:16 刘百会 阅读(1119) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 23 下一页