document.write("");
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: import java.io.IOException; import java.net.InetAddress; import java.net.Socket; import java.util.ArrayList; import java.util.List; import java.util.c 阅读全文
posted @ 2024-11-12 15:37 人间春风意 阅读(55) 评论(0) 推荐(0)
摘要: import com.alibaba.fastjson.JSONObject; import lombok.extern.slf4j.Slf4j; import javax.net.ssl.HostnameVerifier; import javax.net.ssl.HttpsURLConnecti 阅读全文
posted @ 2024-11-07 16:07 人间春风意 阅读(118) 评论(0) 推荐(0)
摘要: 打包命令 mvn clean package 离线打包命令 mvn clean package -o 离线打包命令,窗口输出报错 -e mvn clean package -o -e 离线打包命令,报错日志输出到当前目录 mvn clean package -o -e > info.log 阅读全文
posted @ 2024-11-06 16:41 人间春风意 阅读(22) 评论(0) 推荐(0)
摘要: 前提:已运行skywalking 1. 下载 Index of /dist/skywalking/8.6.0 (apache.org) 下载文件 两次解压后:将文件夹内的agent文件夹复制出来,放个位置(探针) 3. 在springboot程序中引入skywalking日志追踪的依赖 <depen 阅读全文
posted @ 2024-10-24 13:34 人间春风意 阅读(77) 评论(0) 推荐(0)
摘要: 目的是为了训练眼球运动 直接将如下代码到保存为html文件打开即可 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scal 阅读全文
posted @ 2024-10-15 16:21 人间春风意 阅读(41) 评论(0) 推荐(0)
摘要: 1. 新增service,先组装SQL import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans. 阅读全文
posted @ 2024-09-27 08:40 人间春风意 阅读(43) 评论(0) 推荐(0)
摘要: 前提: 已知A表,B表,且 A表一对多B表 查询B表数据的同时,同步关联的A表数据 1. A表的实体类中: @OneToMany(mappedBy = "b", fetch = FetchType.LAZY) @JsonIgnore private Set<B> bs = new HashSet<> 阅读全文
posted @ 2024-09-23 14:08 人间春风意 阅读(31) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2024-09-17 19:25 人间春风意 阅读(24) 评论(0) 推荐(0)
摘要: 主要包含:springboot+jpa+hibernate+mysql+lombok (两年前写过一个,现在重新记录一个) 1. 目录结构: 2. pom 文件 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://mav 阅读全文
posted @ 2024-09-10 13:56 人间春风意 阅读(144) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2024-09-04 14:41 人间春风意 阅读(22) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页