上一页 1 2 3 4 5 6 7 ··· 20 下一页
摘要: httpclient 和 httpcore 的版本组合 pom <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org 阅读全文
posted @ 2025-02-25 09:20 hapday 阅读(126) 评论(0) 推荐(0)
摘要: 在通过 HTTP Client 发生 POST 请求时传递换行的参数报错的解决办法 将参数进行 URL 编码后再传递。 String desc = null; try { desc = URLEncoder.encode(param, "UTF-8"); } catch (UnsupportedEn 阅读全文
posted @ 2025-02-17 16:27 hapday 阅读(54) 评论(0) 推荐(0)
摘要: IntelliJ IDEA 设置类和属性被使用的次数的方法 第一步、在顶部的导航栏选择 File 菜单 第二步、按如下步骤操作。 最后点击下面的“OK”按钮完成操作。 阅读全文
posted @ 2025-02-08 11:36 hapday 阅读(249) 评论(0) 推荐(0)
摘要: 欢迎使用 Windows 子系统之 Ubuntu windows subsystem for linux windows 11 and ubuntu 22 LST 项目所在目录为:/var/www/html 默认的首页文件为:index.nginx-debian.html 主程序所在目录为:/use 阅读全文
posted @ 2025-02-07 09:22 hapday 阅读(10) 评论(0) 推荐(0)
摘要: JavaScript 自定义获取当前日期和时间的函数 /** * 获取当前的日期和时间 * 格式为 yyyy-MM-dd HH:mm:ss.SSS */ function getNowDateTime() { var now = new Date , year = now.getFullYear() 阅读全文
posted @ 2025-01-22 14:17 hapday 阅读(34) 评论(0) 推荐(0)
摘要: 日期格式YYYY-MM-DD HH24:MI转换为字符的函数 to_char(字段名, 日期格式) <if test="null != repm.startReleaseTime and '' != repm.startReleaseTime.trim() and null != repm.endR 阅读全文
posted @ 2025-01-16 23:59 hapday 阅读(166) 评论(0) 推荐(0)
摘要: 解决 spring boot 2.7.18 导入 flowable 6.8.1 报 Liquibase failed to start because no changelog could be found at 'classpath:/db/changelog/db.changelog-maste 阅读全文
posted @ 2025-01-16 10:06 hapday 阅读(737) 评论(0) 推荐(0)
摘要: 查看MySQL数据库版本的命令 SELECT VERSION(); 阅读全文
posted @ 2025-01-15 10:50 hapday 阅读(72) 评论(0) 推荐(0)
摘要: 达梦数据库查看版本信息的命令 SELECT * from V$VERSION; 或 SELECT * from V$INSTANCE; 阅读全文
posted @ 2025-01-15 10:48 hapday 阅读(867) 评论(0) 推荐(0)
摘要: spilder flow 网络爬虫使用总结 1、获取当前日期: ${date.now().format('yyyy-MM-dd')} 2、获取 7 天前的日期: ${date.addDays(date.now(),-7).format('yyyy-MM-dd')} 3、获取第 3 天的日期(以当前日 阅读全文
posted @ 2025-01-09 16:58 hapday 阅读(40) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 20 下一页