那些年敲出的异常和错误
BingTaiLi
一个励志月入上万的菜鸡
展开
-
IDEA 启动服务报错,Error:Kotlin: Module was compiled with an incompatible version of Kotlin.
IDEA 启动服务报错,Error:Kotlin: Module was compiled with an incompatible version of Kotlin.原创 2024-04-12 17:39:59 · 259 阅读 · 0 评论 -
maven操作下:Failed to execute goal on project xxx: Could not resolve dependencies for project
问题描述多模块项目情况下,A为父模块,B与C为A的子模块,并且C依赖B,对B进行clean与Install操作时,没有问题,对C进行clean与install操作,install时候出现本错误。解决方法在对子模块进行clean与install操作前,需要先对父模块进行clean操作即,先对A项目进行clean与install,之后对被依赖的子模块B进行clean与install操作,最后再对C模块进行操作。...原创 2021-08-26 16:15:38 · 427 阅读 · 0 评论 -
Error:(6, 46) java: 程序包org.springframework.cloud.netflix.zuul不存在(依赖包明明导入但程序未找到问题)
错误内容Error:(6, 46) java: 程序包org.springframework.cloud.netflix.zuul不存在错误分析依赖包未下载完全,可能是因为在建立项目后切换了Maven仓库的地址。而创建项目时,已经下载了一部分依赖,因此切换Maven仓库后,已经有一部分下载的依赖存储到了默认创建项目的Maven仓库了,所以导致当前项目使用的jar包不完整。错误解决Win+R键输入cmd或者搜索框框输入cmd,进入cmd切换目录到当前项目的目录下输入指令:m原创 2021-08-25 10:24:03 · 1592 阅读 · 0 评论 -
Initialization failed for ‘http://start.spring.io‘Please check URL,network and proxy settings.解决方法
今天准备创建一个springboot项目时,出现了如下错误原创 2021-01-06 11:30:44 · 2002 阅读 · 0 评论 -
SpringCloud配置网关时运行项目出现Consider defining a bean of type ‘org.springframework.http.codec.ServerCodecCo
错误详情Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2020-11-28 09:26:11.105 ERROR 19816 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : ***************************APPLIC原创 2020-11-28 16:13:58 · 1555 阅读 · 6 评论 -
Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources
错误详情错误分析配置springboot项目时,properties或yml文件中出现了中文(中文值或中文注解),而IDEA解析文件的默认方式不是UTF-8,文件中存在中文就会报错错误解决将文件中的内容去掉中文,将内容该为英文或者直接删除修改后可此种方式就不能存储中文了,所以不是很推荐,毕竟在中国开发修改IDEA文件编码方式(此种方法是解决问题,而不是回避问题,使得配置文件可以存在中文)操作步骤:右上角File–>Settings…在Settings弹出框中左侧找到原创 2020-11-21 14:52:36 · 2532 阅读 · 2 评论 -
java.sql.SQLException: Access denied for user ‘‘@‘localhost‘ (using password: NO)解决方法
这只是我经历的一种情况,可以检查是否出现了和我一般的情况异常信息org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to o原创 2020-11-21 14:51:58 · 1810 阅读 · 0 评论 -
解决Maven ‘parent.relativePath‘ of POM
错误提示如下错误内容Some problems were encountered while building the effective model for org.springframework.boot:test01:jar:2.4.0'parent.relativePath' of POM org.springframework.boot:test01:2.4.0 (E:\JavaWeb_base\springbootTest\test01\pom.xml) points at com.lt原创 2020-11-21 14:49:49 · 30953 阅读 · 18 评论