异常
未读
docker目录挂载失败:Check if the specified host path exists and is the expected type
docker目录挂载失败:Check if the specified host path exists and is the expected type docker目录挂载命令,其目的是为了达到修改linux上的文件同步到容器上,从而实现修改容器的配置文件。 在docker目录挂载或启动容器时报
异常
未读
Activiti测试报错:org.springframework.beans.factory.UnsatisfiedDependencyException
Spring boot 3.x Activiti7 启动失败,并且在一开始导入依赖时无法自动创建表(看到最后) 使用springboot3.x + Activiti7后,发现工作流模块无法启动,并且在一开始导入依赖时无法自动创建表。 1. 具体报错如下: org.springframework.be
异常
未读
maven打包分模块开发项目时报错总结
maven打包分模块开发项目时报错总结 一、Unable to find a single main class from the following candidates 在打包install公共模块的时候,打包失败并报错: 原因:在maven编译这个工程模块的时候,尝试去模块下找main方法的c
异常
未读
SpringBoot启动报错:Resolved [org
SpringBoot启动报错:Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException 具体报错代码如下: Resolved [org.springframewo
异常
未读
mybatis报错:org.apache.ibatis.ognl.ParseException Encountered EOF at line 1, column 0
mybatis报错:org.apache.ibatis.ognl.ParseException: Encountered “” at line 1, column 0. 具体报错代码如下: org.apache.ibatis.ognl.ParseException: Encountered "<EO
异常
未读
SpringBoot启动时报错“org.springframework.beans.factory.UnsatisfiedDependencyException”
代码生成器生成的项目启动时报错“org.springframework.beans.factory.UnsatisfiedDependencyException” 1. 第一种具体报错如下: Error starting ApplicationContext. To display the cond
异常
未读
SpringBoot启动项目报错“Failed to configure a DataSource 'url' attribute is not specified .......”
SpringBoot启动项目报错“Failed to configure a DataSource: 'url' attribute is not specified …….” idea配置:SpringBoot2.7.17 + JDK8 或 SpringBoot3.1.5 + JDK17 具体报错
异常
未读
SpringBoot运行报错:Caused by org.springframework.beans.factory.NoSuchBeanDefinitionException
SpringBoot运行报错:Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException 具体报错如下: 原因和解决办法: 在Mapper中没有添加@Mapper注解,或者在启动类上没有添加@MapperSca
异常
未读
springboot配置swagger报错Cannot invoke “org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.getPatterns(
springboot配置swagger报错:Cannot invoke “org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.getPatterns()“ springboot配置swagger时报错,spri
异常
未读
SpringBoot项目本地运行正常,jar包运行时前端报错403:No mapping for
SpringBoot项目本地运行正常,jar包运行时前端报错403:No mapping for… 提示:在部署jar包到云服务器上之前,一定要在本地运行jar包,查看前端代码是否运行正常,若报错的话可以节省很多时间 方式:在jar包目录下运行cmd,执行命令:java -jar xxx.jar 主