Bug收割机
文章平均质量分 59
阿Q说代码
优快云博客专家、Java后端领域优质创作者、InfoQ签约作者、掘金优质创作者,专注于后端技术栈分享,外块交流:https://bbs.youkuaiyun.com/topics/617897397
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Maven打包错误:Please refer to XXXXX for the individual test results.
IDEA package项目时报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project facdriver: There are test failures.原创 2025-03-09 11:08:00 · 2563 阅读 · 0 评论 -
cannot be resolved to absolute file path because it does not reside in the file system 问题解决
将test.xlsx文件放到resources的static目录下,当使用以上代码读取文件内容时,在本地运行正常,打成jar包上服务器之后报异常信息。原创 2024-11-29 22:59:06 · 1040 阅读 · 2 评论 -
You aren‘t using a compiler supported by lombok, so lombok will not work and has been disabled.
在使用IntelliJ IDEA 2024.1.4 (Ultimate Edition)时提示Lombok不生效报错。原创 2024-10-31 19:40:50 · 543 阅读 · 4 评论 -
IntelliJ IDEA open in terminal时报错:Cannot open Local,Failed to start[powershell.exe]
无法打开本地终端,无法在xxxx中启动[powershell.exe]原创 2024-10-26 14:23:32 · 2350 阅读 · 18 评论 -
【Bug收割机】已解决使用maven插件打包成功,在控制台使用mvn命令打包失败问题详解,亲测有效!
[ERROR] Failed to execute goal on project xxx: Could not resolve dependencies for project com.xxx.cloud.xxx:xxxx-xxxx:jar:3.8.6: The following artifacts could not be resolved: javax.jms:jms:jar:1.1 (absent): Could not transfer artifact javax.jms:jms:jar:1原创 2024-07-30 10:15:54 · 2071 阅读 · 1 评论 -
【Bug收割机】已解决 java.lang.OutOfMemoryError: GC overhead limit exceeded 问题详解,亲测有效!
在Java开发的征途中,开发者常会遭遇到一个棘手的错误,这个错误不仅揭示了内存管理的复杂性,也要求开发者具备深入理解JVM运作机制的能力。本文将从问题分析、报错原因、解决思路及实际解决方法四个维度,为大家全面剖析这一难题,并提出有效的应对策略。原创 2024-06-21 16:21:15 · 2434 阅读 · 9 评论 -
【Bug收割机】已解决 java.lang.OutOfMemoryError: Java heap space 问题详解,亲测有效!
当Java应用程序抛出`java.lang.OutOfMemoryError: Java heap space`错误时,这通常表明Java虚拟机(JVM)的堆内存不足以满足应用程序的需求。堆内存是JVM中用于存储Java对象实例的区域,当堆内存中的空间不足以创建新的对象或扩大现有对象时,就会触发这个错误。原创 2024-06-21 15:52:44 · 3463 阅读 · 1 评论 -
解决 An attempt was made to call a method that does not exist. 问题详解
今天在开发代码的过程中,由于手抖,不知道引入了什么包依赖,导致项目启动一直报错,特写本文来记录下解决问题的经过。原创 2023-06-14 18:47:35 · 19014 阅读 · 155 评论
分享