
debug
Mint6
这个作者很懒,什么都没留下…
展开
-
springboot启动连接mysql报错Could not create connection to database server. Attempted reconnect 3 times. Gi
1.错误场景:错误提示如下Could not create connection to database server. Attempted reconnect 3 times. Giving up.2.分析原因这个报错是连不上mysql,这里不考虑mysql权限限制不让远程访问的情况,剩下的百分之八十是设置mysql数据库连接加的参数不对。3.解决方法设置mysql连接参数如下,直接拷贝下面所有参数,来解决问题:jdbc:mysql://127.0.0.1:3306/base?原创 2020-07-12 00:16:53 · 7833 阅读 · 1 评论 -
Description Resource Path Location Type Java compiler level does not match the version of(图解)
project 编译问题,需要三处的jdk版本要保持一致,才能编译通过。1、在项目上右键properties->project Facets->修改右侧的version 保持一致2、window->preferences->Java->Compiler->设置右侧的Compiler compliance level3、window->p转载 2016-11-02 17:36:10 · 3310 阅读 · 0 评论 -
eclipse使用git的报错there are no staged files
there are no staged files 是个最常见的使用错误 打开Window—>Preferences—>Git—>Committing 找到下面那个箭头处 把他取消,不要打勾 不要 ! 不要 ! 不要 ! 完成解决错误原创 2017-07-11 23:59:15 · 4207 阅读 · 0 评论 -
maven 严重: Error configuring application listener of class org.springframework.web.context.ContextL
严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListenerjava.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener原创 2017-06-25 23:36:06 · 2674 阅读 · 1 评论 -
eclipse复制粘贴项目,项目名字更改成功 在tomcat中运行失败
项目直接复制过来 更改了项目名字,但是访问的根目录还需要修改一下 项目名右键--->Properties—>Web Project Setting 修改Context root跟项目名一样就行了(这个不需要一样 ,不过我一般都是一样 ,这样访问路径好记) 我的到这里已经解决 网上还找到有的还需要把下面的也改了 修改工程下的.setting文件夹下的org.ecli原创 2017-06-26 22:47:14 · 2782 阅读 · 0 评论 -
eclipse 项目jdk版本不一致导致的错误 Description Resource Path Location Type Target runtime com.genui
eclipse 项目jdk版本不一致导致的错误 下面是错误提示: Description Resource Path Location Type Target runtime com.genuitec.runtime.generic.jee50 is not defined. struts2 Unknown Fa原创 2017-07-07 16:59:21 · 3186 阅读 · 3 评论 -
java--Syntax error, insert "Dimensions" to complete ReferenceType
错误代码:Vector<int> numsjava报错:Syntax error, insert "Dimensions" to complete ReferenceType翻译:语法错误,插入“维度”以完成引用类型原因:泛型必须是包装类类型,而不能是基本类型(包括基本类型的数组)修改为:Vector<Integer> nums泛型只能只能代表引用类型,不能是原始类型,原始...原创 2018-06-27 23:30:25 · 14967 阅读 · 2 评论