
java
服务端
spencer_tseng
这个作者很懒,什么都没留下…
展开
-
jdk7 <> new ArrayList<>()
jdk7 <> new ArrayList<>()是 Java 7 及之后版本引入的特性。类型推断属于编译器的基础功能,其算法效率很高,所以对编译速度的影响可以忽略不计。说明是有一定影响,因为编译器需要解析类型。原创 2025-05-10 01:33:04 · 290 阅读 · 0 评论 -
cn.hutool.core.collection.CollUtil
cn.hutool.core.collection.CollUtil.java hutool 工具类原创 2025-05-10 00:38:17 · 187 阅读 · 0 评论 -
The enum constant NONE needs a corresponding case label in this enum switch on MailSetting.EmailType
The enum constant NONE needs a corresponding case label in this enum switch on MailSetting.EmailType原创 2025-04-27 19:38:55 · 184 阅读 · 0 评论 -
The import com.github.javaparser cannot be resolved
import com.github.javaparser.StaticJavaParser;import com.github.javaparser.ast.CompilationUnit;import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;import com.github.javaparser.ast.body.FieldDeclaration;import com.github.javaparser.ast.bod原创 2025-04-27 14:14:25 · 296 阅读 · 0 评论 -
The type java.time.LocalTime cannot be resolved. It is indirectly referenced from required type java
The type java.time.LocalTime cannot be resolved. It is indirectly referenced from required type java.time.LocalDateTime原创 2025-04-27 11:38:00 · 160 阅读 · 0 评论 -
R is a raw type. References to generic type R<T> should be parameterized
R is a raw type. References to generic type R<T> should be parameterized原创 2025-04-27 01:36:31 · 205 阅读 · 0 评论 -
The serializable class AgentInfo does not declare a static final serialVersionUID field of type long
The serializable class AgentInfo does not declare a static final serialVersionUID field of type long原创 2025-04-27 00:57:01 · 250 阅读 · 0 评论 -
List findIntersection & getUnion
List findIntersection & getUnion 求两个列表的交集和并集原创 2025-04-22 09:34:19 · 321 阅读 · 0 评论 -
cn.hutool.core.util.RadixUtil Exception in thread “main“ java.lang.NegativeArraySizeException
cn.hutool.core.util.RadixUtil Exception in thread "main" java.lang.NegativeArraySizeException原创 2025-04-21 17:41:25 · 218 阅读 · 0 评论 -
JavaScript Number && Java Long
JavaScript Number && Java Long 精度丢失问题原创 2025-04-21 16:17:24 · 208 阅读 · 0 评论 -
GoogleCodeUtil.java
Google动态验证码实现 GoogleCodeUtil.java原创 2025-04-18 23:53:22 · 241 阅读 · 0 评论 -
Caused by: com.fasterxml.jackson.databind.JsonMappingException: Problem deserializing property ‘type
例如,使用 Jackson 的自定义反序列化器 ,针对 EChannelType 编写自定义反序列化逻辑,将接收到的 String 正确转换为对应的枚举类型。1)检查数据来源:确认发送端(前端或其他服务端)传递的 JSON 数据中 'type' 字段值是否正确,是否符合后端期望的类型格式。如果是枚举类型,传递的值应该是枚举对应的有效值。3)更新接口定义:若有可能,与前端或相关服务端沟通,更新接口定义,让其传递符合后端期望的 EChannelType 类型数据,而不是 String。原创 2025-04-18 19:41:30 · 203 阅读 · 0 评论 -
java.lang.ClassNotFoundException: org.apache.http.message.ParserCursor
java.lang.ClassNotFoundException: org.apache.http.message.ParserCursor原创 2025-04-18 12:03:39 · 228 阅读 · 0 评论 -
java.lang.ClassNotFoundException: org.apache.http.client.utils.URIBuilder
java.lang.ClassNotFoundException: org.apache.http.client.utils.URIBuilder原创 2025-04-18 11:53:00 · 188 阅读 · 0 评论 -
MultiDirectoryFileCopy.java
文件拷贝 MultiDirectoryFileCopy.java原创 2025-04-17 18:05:46 · 141 阅读 · 0 评论 -
java.util.Objects
java.util.Objects原创 2025-04-17 17:59:42 · 185 阅读 · 0 评论 -
JavaCallBat.java
JavaCallBat.java Java调用带参数的批处理文件BAT,并返回结果集原创 2025-04-14 16:45:50 · 141 阅读 · 0 评论 -
BigDecimal 0E-8 BigDecimal.toPlainString()
BigDecimal 0E-8原创 2025-04-14 16:21:23 · 373 阅读 · 0 评论 -
Lombok Annotation
Lombok Annotation原创 2025-04-08 16:01:08 · 547 阅读 · 0 评论 -
java.util.concurrent.atomic.AtomicLong
java.util.concurrent.atomic.AtomicLong 如何保证原子性原创 2025-04-08 10:54:16 · 330 阅读 · 0 评论 -
FileContextTool.java
FileContextTool.java 文件内容修改,默认保存操作系统桌面原创 2025-04-03 17:42:41 · 247 阅读 · 0 评论 -
java.time.LocalDateTime
java.time.LocalDateTime 测试日期的精度原创 2025-04-03 11:10:14 · 217 阅读 · 0 评论 -
BigDecimal(0.3) && BigDecimal(“0.3“)
BigDecimal(0.3) 失真原创 2025-04-01 11:31:44 · 154 阅读 · 0 评论 -
JDK8 lambda java.util.ArrayList
JDK8 lambda java.util.ArrayList原创 2025-03-28 08:24:30 · 469 阅读 · 0 评论 -
Incompatible types. Found: ‘java.util.List<java.lang.Long>‘, required: ‘java.util.List<java.lang.Int
Incompatible types. Found: 'java.util.List<java.lang.Long>', required: 'java.util.List<java.lang.Integer>'原创 2025-03-28 00:18:28 · 251 阅读 · 0 评论 -
Illegal reflective access by com.baomidou.mybatisplus.core.toolkit.SetAccessibleAction
WARNING: An illegal reflective access operation has occurredWARNING: Illegal reflective access by com.baomidou.mybatisplus.core.toolkit.SetAccessibleAction (file:/D:/localRepository_Gradle/caches/modules-2/files-2.1/com.baomidou/mybatis-plus-core/3.5.2/d7原创 2025-03-26 14:06:13 · 427 阅读 · 0 评论 -
JDK11.0.25
JDK11.0.25原创 2025-03-26 14:00:45 · 236 阅读 · 0 评论 -
BlockChain.java
BlockChain 区块链,举个栗子原创 2025-03-21 19:01:08 · 403 阅读 · 0 评论 -
The method precision() is undefined for the type BigInteger
The method precision() is undefined for the type BigInteger原创 2025-03-20 23:06:48 · 412 阅读 · 0 评论 -
PngRemovePixelsByColorRange
PngRemovePixelsByColorRangePNG图片,背景透明原创 2025-02-28 14:04:48 · 238 阅读 · 0 评论 -
java.lang.IllegalStateException: dbType not support : null, url null
java.lang.IllegalStateException: dbType not support : null, url null原创 2025-02-25 20:52:48 · 368 阅读 · 0 评论 -
springcloud html5
springcloud html5 客户端服务端分离,基本架构搭建原创 2025-02-11 19:58:31 · 251 阅读 · 0 评论 -
org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST‘ not supported
org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported原创 2025-02-11 16:08:49 · 127 阅读 · 0 评论 -
java.lang.IllegalArgumentException: When allowCredentials is true, allowedOrigins cannot contain the
java.lang.IllegalArgumentException: When allowCredentials is true, allowedOrigins cannot contain the special value "*" since that cannot be set on the "Access-Control-Allow-Origin" response header. To allow credentials to a set of origins, list them explic原创 2025-02-11 15:56:42 · 356 阅读 · 0 评论 -
ZipFileUtil.java
ZipFileUtil.java原创 2025-01-23 22:04:15 · 200 阅读 · 0 评论 -
CELL_TYPE_BOOLEAN cannot be resolved or is not a field
CELL_TYPE_BOOLEAN cannot be resolved or is not a fieldCELL_TYPE_NUMERIC cannot be resolved or is not a fieldCELL_TYPE_FORMULA cannot be resolved or is not a fieldCELL_TYPE_STRING cannot be resolved or is not a field原创 2025-01-23 00:29:23 · 945 阅读 · 0 评论 -
libpng warning: iCCP: known incorrect sRGB profile
libpng warning: iCCP: known incorrect sRGB profile原创 2025-01-13 17:20:10 · 215 阅读 · 0 评论 -
jdk-6u43-windows-x64.exe win10
win10 jdk-6u43-windows-x64.exe原创 2024-12-17 21:44:21 · 205 阅读 · 0 评论 -
VideoConvertor.java ffmpeg.exe
VideoConvertor.java ffmpeg.exe 视频剪切原理原创 2024-12-08 12:47:07 · 412 阅读 · 0 评论 -
kkfileview4.2.1 LibreOffice_7.1.4_Linux_x86-64_rpm.tar.gz
java.lang.IllegalStateException: officeHome doesn't exist or is not a directory: optlibreoffice7.1kkfileview4.2.1 LibreOffice_7.1.4_Linux_x86-64_rpm.tar.gz原创 2024-11-02 12:58:37 · 568 阅读 · 0 评论