会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Uoky
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
22
下一页
2025年1月26日
xml字符串与DTO 转换 工具类
摘要: 工具类,将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)
2025年1月24日
mvn 上传本地依赖到 nexus,或本地仓库
摘要: 前提: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)
2024年12月30日
java 将指定文件夹内的所有图片 拼接为gif
摘要: 引入依赖 <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)
2024年12月18日
springboot 接入 swagger 3.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)
2024年11月20日
Mybatis Plus @Select Oracle DB 模糊查询
摘要: 由于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)
2024年11月19日
vue2 验证码
摘要: 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)
2024年11月18日
Swagger 3.0 & MybatisPlus 主键BigDecimal 使用过程问题
摘要: 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)
2024年11月14日
Jmeter (5.6.3) Windows 使用示例
摘要: 步骤: 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)
2024年11月12日
测试网络延迟 工具类
摘要: 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)
2024年11月7日
post 请求工具类
摘要: 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
下一页
公告