document.write("");
摘要: 由于oracle CONCAT 的入参为两个值,拼接两个字符串。 连接多个字符串,需要嵌套使用 CONCAT 函数。 @Select("SELECT TABLE_NAME FROM USER_TABLES where TABLE_NAME LIKE CONCAT(CONCAT('%', #{pref 阅读全文
posted @ 2024-11-20 11:37 人间春风意 阅读(7) 评论(0) 推荐(0) 编辑
摘要: StaticVerify.vue <template> <canvas ref="canvasRef" class="verify" :width="width" :height="height" @click="drawCode"></canvas> </template> <script> ex 阅读全文
posted @ 2024-11-19 17:03 人间春风意 阅读(1) 评论(0) 推荐(0) 编辑
摘要: PS:本来用的是2.x的,但是因为换了后端框架,导致版本不适配,于是调整到3.0 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</ 阅读全文
posted @ 2024-11-18 14:49 人间春风意 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 步骤: 1. 下载 apache-jmeter-5.6.3.zip 2. 解压,在环境变量Path中,新增jMeter的bin文件夹的路径 3. 在bin文件夹中,双击jmeter.bat -> 打开JMeter 注意切换语言,默认是英文,在顶部菜单Options->Choose Language- 阅读全文
posted @ 2024-11-14 14:49 人间春风意 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 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 人间春风意 阅读(0) 评论(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 人间春风意 阅读(7) 评论(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 人间春风意 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 前提:已运行skywalking 1. 下载 Index of /dist/skywalking/8.6.0 (apache.org) 下载文件 两次解压后:将文件夹内的agent文件夹复制出来,放个位置(探针) 3. 在springboot程序中引入skywalking日志追踪的依赖 <depen 阅读全文
posted @ 2024-10-24 13:34 人间春风意 阅读(7) 评论(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 人间春风意 阅读(7) 评论(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 人间春风意 阅读(13) 评论(0) 推荐(0) 编辑