上一页 1 2 3 4 5 6 7 8 ··· 20 下一页
摘要: Java 版本的 JavaScript 模拟执行库 Selenium、Pyppeteer。 阅读全文
posted @ 2024-12-06 17:28 hapday 阅读(16) 评论(0) 推荐(0)
摘要: 1、异常提示: java: 不兼容的类型: java.lang.Long无法转换为java.lang.String 2、原因分析: 长整型(Long)的数据无法转换为字符串型(String) 的数据,请检查数据类型是否一致。 3、解决办法: 将被操作的变量的数据类型统一了,常见的解决办法有 4 中: 阅读全文
posted @ 2024-12-04 09:55 hapday 阅读(1267) 评论(0) 推荐(0)
摘要: 1、异常核心提示: The last packet successfully received from the server was 2,625 milliseconds ago. The last packet sent successfully to the server was 2,625 阅读全文
posted @ 2024-12-04 09:53 hapday 阅读(919) 评论(0) 推荐(0)
摘要: 原子类保证多线程环境下的数据安全的示例 1、原子整型类保证多线程环境下的数据安全示例: package com.joyupx.cms.example.thread.concurrent.atomic; import lombok.extern.slf4j.Slf4j; import java.uti 阅读全文
posted @ 2024-11-14 16:13 hapday 阅读(19) 评论(0) 推荐(0)
摘要: Java 单例模式示例 package com.joyupx.cms.example.single; /** * 多线程环境中保证单例的写法。 * @author hapday */ public class SingleInstanceExample { private static Single 阅读全文
posted @ 2024-11-09 19:37 hapday 阅读(32) 评论(0) 推荐(0)
摘要: 1、售票任务类: package com.joyupx.cms.example.globalLock5; import cn.hutool.core.date.DateTime; import lombok.extern.slf4j.Slf4j; import static java.lang.Th 阅读全文
posted @ 2024-11-03 13:09 hapday 阅读(215) 评论(0) 推荐(0)
摘要: 1、异常提示: Cause: java.sql.SQLException: Column count doesn't match value count at row 1 2、产生的原因: SQL 语句中 insert into 后面的字段和 values 后面的字段个数和 values 参数值不匹 阅读全文
posted @ 2024-10-15 17:50 hapday 阅读(895) 评论(0) 推荐(0)
摘要: 1、异常提示: Caused by: org.xml.sax.SAXParseException: 元素类型 "if" 必须由匹配的结束标记 "</if>" 终止。 2、产生的原因: MyBatis 条件选择没有写结束标记 </if> 3、解决办法: 将没有写 </if> 补上。 阅读全文
posted @ 2024-10-15 17:45 hapday 阅读(165) 评论(0) 推荐(0)
摘要: PostgreSQL 创建主键自增表的 DDL -- 社区表 DROP TABLE IF EXISTS public.t_community; CREATE TABLE public.t_community ( id bigserial NOT NULL, grid_id int8 NULL, na 阅读全文
posted @ 2024-10-07 15:17 hapday 阅读(71) 评论(0) 推荐(0)
摘要: spring boot 3.3.3 通用 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/20 阅读全文
posted @ 2024-09-13 21:05 hapday 阅读(307) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 20 下一页