摘要:
# DBCHM导出数据库文档 下载DBCHM 解压,选择DBCHM.exe  连 阅读全文
摘要:
# ffmpeg rtsp转flv挂载到web端(Linux版) 1. ## 下载ffmpeg  1. ## 下载ffmpeg { //子类 List children = list.stream().filter(x -> x.getParentId().equals(parentId)).collect(Co 阅读全文
摘要:
## List排序 ```java //按照某个字段进行正序排序 list.sort((x,y) ->Integer.compare(Integer.valueOf(x.getCourseDuration()),Integer.valueOf(y.getCourseDuration()))); // 阅读全文
摘要:
SpringBoot+WebSocket实现实时获取系统数据 引入maven依赖 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webso 阅读全文
摘要:
原创地址:https://blog.csdn.net/qq_67390364/article/details/126481026 阅读全文
摘要:
druid连接池配置监控界面 引入druid连接池依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.2.15</version> </dependency> 在applic 阅读全文
摘要:
SpringBoot数据分页工具类 /** * 数据分页工具 */ public class PageUtil { public static Page pageHelp(@NotNull Integer pageNum, @NotNull Integer pageSize, @NotNull Li 阅读全文
