摘要: import lombok.Data; import org.springframework.beans.BeanUtils; import org.springframework.util.CollectionUtils; import java.io.Serializable; import j 阅读全文
posted @ 2025-08-25 17:03 亲爱的阿道君 阅读(3) 评论(0) 推荐(0)
摘要: public String getQwQrCode(String linkUrl) { String qxOpenUrl = "https://open.weixin.qq.com/connect/oauth2/authorize"; String qwSsoUrl = "https://myser 阅读全文
posted @ 2025-08-01 17:02 亲爱的阿道君 阅读(6) 评论(0) 推荐(0)
摘要: import java.util.List; public class Type { private Integer id; private String name; private Integer pid; private List<Type> children; // 省略getter和sett 阅读全文
posted @ 2025-07-30 14:03 亲爱的阿道君 阅读(7) 评论(0) 推荐(0)
摘要: # 关闭 taskkill /f /im nginx.exe # 检查配置文件语法 nginx -t # 启动 start nginx # 重新加载配置(如果已在运行) nginx -s reload 阅读全文
posted @ 2025-07-15 22:34 亲爱的阿道君 阅读(7) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <style> svg { width: 80%; max-width: 500px; height: auto; } </style> </head> <body> <svg viewBox="0 0 300 200" width="30 阅读全文
posted @ 2025-07-15 15:37 亲爱的阿道君 阅读(6) 评论(0) 推荐(0)
摘要: 环境安装 安装 node-v14.21.3-x64.msi -- 运行命令 确认是否安装成功 node -v npm -v 安装nginx 复制 nginx-1.28.0 文件夹到 D 盘 部署文件 复制 subwayweb 文件夹到 D:\nginx-1.28.0\html 目录 启动nginx服 阅读全文
posted @ 2025-07-13 14:56 亲爱的阿道君 阅读(9) 评论(0) 推荐(0)
摘要: pom.xml 引入 <!-- HanLP 核心库(便携版,内置基础词典) --> <dependency> <groupId>com.hankcs</groupId> <artifactId>hanlp</artifactId> <version>portable-1.8.6</version> 阅读全文
posted @ 2025-06-23 10:13 亲爱的阿道君 阅读(4) 评论(0) 推荐(0)
摘要: package service; import lombok.Data; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class G 阅读全文
posted @ 2025-05-14 10:52 亲爱的阿道君 阅读(9) 评论(0) 推荐(0)
摘要: 安装idea插件 @startuml autonumber actor 用户 as user participant 浏览器 as browser participant "服务端" as service participant "数据库" as db title 提示词库 autonumber 1 阅读全文
posted @ 2025-04-24 11:05 亲爱的阿道君 阅读(18) 评论(0) 推荐(0)
摘要: String posttimeStart = "2025-03-10 00:00:00"; String posttimeEnd = "2025-03-11 23:59:59"; DateTime dateStart = DateUtil.parse(posttimeStart); DateTime 阅读全文
posted @ 2025-04-01 10:17 亲爱的阿道君 阅读(11) 评论(0) 推荐(0)