上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页
摘要: 工具类,将xml字符串转为实体类&将实体类转为xml字符串 import lombok.extern.slf4j.Slf4j; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.x 阅读全文
posted @ 2025-01-26 15:57 人间春风意 阅读(76) 评论(0) 推荐(0)
摘要: 前提:groupId,artifactId、version和nexus仓库地址 1. mvn上传本地jar到nexus PS:如果实在不清楚,groupId和artifactId可以使用小写的jar包名,version使用1.0 mvn deploy:deploy-file -DgroupId=te 阅读全文
posted @ 2025-01-24 15:09 人间春风意 阅读(215) 评论(0) 推荐(0)
摘要: 引入依赖 <dependency> <groupId>com.github.jai-imageio</groupId> <artifactId>jai-imageio-core</artifactId> <version>1.4.0</version> </dependency> 工具类 指定图片文 阅读全文
posted @ 2024-12-30 16:46 人间春风意 阅读(73) 评论(0) 推荐(0)
摘要: 1. 引入依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 2. applica 阅读全文
posted @ 2024-12-18 09:41 人间春风意 阅读(241) 评论(0) 推荐(0)
摘要: 由于oracle CONCAT 的入参为两个值,拼接两个字符串。 连接多个字符串,需要嵌套使用 CONCAT 函数。 @Select("SELECT TABLE_NAME FROM USER_TABLES where TABLE_NAME LIKE CONCAT(CONCAT('%', #{pref 阅读全文
posted @ 2024-11-20 11:37 人间春风意 阅读(70) 评论(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 人间春风意 阅读(169) 评论(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 人间春风意 阅读(123) 评论(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 人间春风意 阅读(993) 评论(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 人间春风意 阅读(71) 评论(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 人间春风意 阅读(130) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页