报错如下: 经过分析发现,是因为pom文件中没有指定springboot的版本,指定一下版本重新打包重启问题解… 继续阅读 SpringBoot报错Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: …
标签: 常见错误
程序报错java.lang.Exception: No tests found matching
程序报错如下: 这个错误表示JUnit没有找到测试类或测试方法。根据报错信息,程序缺少: 名为test的测试类… 继续阅读 程序报错java.lang.Exception: No tests found matching
SpringBoot启动时提示“找不到主类”,解决办法
在使用SpringBoot框架开发时,当启动应用时提示“找不到主类”的错误,通常会报“no main mani… 继续阅读 SpringBoot启动时提示“找不到主类”,解决办法
Spring报错:Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception java.lang.NoClassDefFoundError
Spring报错如下: 这个异常表示在执行过程中出现了一个由 Filter 引起的异常,并且根本原因是找不到 … 继续阅读 Spring报错:Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception java.lang.NoClassDefFoundError
使用SpringBoot框架开发时,启动时报错:Failed to start application context
这个错误一般是由于SpringBoot应用上下文启动失败引起的,原因可能是配置有误、缺少依赖、端口被占用等。 … 继续阅读 使用SpringBoot框架开发时,启动时报错:Failed to start application context
使用SpringBoot框架开发时,提示“未引入相关依赖”
在使用SpringBoot框架开发过程中,如果未引入相关依赖,则在启动SpringBoot应用时会提示Clas… 继续阅读 使用SpringBoot框架开发时,提示“未引入相关依赖”
使用SpringBoot框架开发时,提示“包路径错误”
在使用SpringBoot框架开发时,如果包路径错误,会报“包名错误”或“找不到类”的错误。 解决方法如下: … 继续阅读 使用SpringBoot框架开发时,提示“包路径错误”
程序报错:java.lang.NoClassDefFoundError: org/springframework/web/servlet/ModelAndViewDefiningException
程序报错如下:java.lang.NoClassDefFoundError: org/springframew… 继续阅读 程序报错:java.lang.NoClassDefFoundError: org/springframework/web/servlet/ModelAndViewDefiningException
Spring报错:Handler processing failed; nested exception is java.lang.NoClassDefFoundError: org/springframework/web/servlet/ModelAndViewDefiningException
Spring报错内容如下: org.springframework.web.util.NestedServle… 继续阅读 Spring报错:Handler processing failed; nested exception is java.lang.NoClassDefFoundError: org/springframework/web/servlet/ModelAndViewDefiningException
程序报错:Failed to introspect annotations on class xxx.class java.lang.TypeNotPresentException
程序报错:Failed to introspect annotations on class xxx.clas… 继续阅读 程序报错:Failed to introspect annotations on class xxx.class java.lang.TypeNotPresentException
程序报错:The order of entry exit can’t be paired with the order of entry, current entry in context: , but expected: xxx
程序报错如下: 该异常提示在Sentinel中错误的退出顺序可能导致了上下文错误,具体原因可能是因为Senti… 继续阅读 程序报错:The order of entry exit can’t be paired with the order of entry, current entry in context: </error>, but expected: xxx
SQLServerException: 除非另外还指定了 TOP、OFFSET 或 FOR XML,否则,ORDER BY 子句在视图、内联函数、派生表、子查询和公用表表达式中无效。
今天代码升级了一下分页插件版本,结果报错了。出现这个错误的原因是因为分页插件SQL支持的不够好,或者说就是分页… 继续阅读 SQLServerException: 除非另外还指定了 TOP、OFFSET 或 FOR XML,否则,ORDER BY 子句在视图、内联函数、派生表、子查询和公用表表达式中无效。
Maven本地仓库有要使用的jar包,但是程序编译时,却还是每次都从远程下载jar包,原因分析
当本地仓库已经有了需要的jar包,但是编译时还是会从远程下载时,我们可以通过以下步骤来检查和解决问题: 1、首… 继续阅读 Maven本地仓库有要使用的jar包,但是程序编译时,却还是每次都从远程下载jar包,原因分析
程序执行报错:java.lang.IllegalStateException: No primary or default constructor found for interface java.util.List
程序执行报错: SpringMVC中的Controller的方法是这样定义的:public List find… 继续阅读 程序执行报错:java.lang.IllegalStateException: No primary or default constructor found for interface java.util.List
FeignClient报错:RequestParam.value() was empty on parameter 0
程序运行报错:java.lang.IllegalStateException:RequestParam.val… 继续阅读 FeignClient报错:RequestParam.value() was empty on parameter 0
Mybatis运行报错:org.apache.ibatis.binding.BindingException: Parameter ‘xxx’ not found. Available parameters are [collection, list]
Mybatis运行报错:org.apache.ibatis.binding.BindingException:… 继续阅读 Mybatis运行报错:org.apache.ibatis.binding.BindingException: Parameter ‘xxx’ not found. Available parameters are [collection, list]
Mybatis运行报错:Cause: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String
报错如下: 问题原因:我的Mybatis中的日期查询写法: 看着也没什么问题,但是实际执行报错如上面所示。 原… 继续阅读 Mybatis运行报错:Cause: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String
SpringBoot项目启动报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test
Failed to execute goal org.apache.maven.plugins:maven-s… 继续阅读 SpringBoot项目启动报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test
idea本地执行程序报错:java.lang.OutOfMemoryError: GC overhead limit exceeded
idea本地执行程序提示如下: 我的开发场景是使用SpringBoot开发了一个文件上传功能,解析上传文件中的… 继续阅读 idea本地执行程序报错:java.lang.OutOfMemoryError: GC overhead limit exceeded
本地maven仓库有jar还从远程下载,下载了还提示没有jar包 解决办法
今天遇到了一个比较奇怪的问题,代码一直在本地运行的好好的,结果远程同步了一次代码到本地,idea中的所有子项目… 继续阅读 本地maven仓库有jar还从远程下载,下载了还提示没有jar包 解决办法