官方文档
Spring Authorization Server
环境介绍
java:17
SpringBoot:3.2.0
SpringCloud:2023.0.0
引入maven配置
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter…
查看mysql 数据库的大小
SELECT table_schema AS 数据库名称,
ROUND(SUM(data_length index_length) / 1024 / 1024, 2) AS 数据库大小(MB)
FROM information_schema.tables
GROUP BY table_schema;查询数据库中表的 数据量(这个方法 有缓存延迟,只能用…