Bugs
WaldeinCheng
Wow
展开
-
解决问题 The Tomcat connector configured to listen on port 8080 failed to start.
转载自https://blog.csdn.net/q343509740/article/details/80821409 在学习SpringBoot过程中, 遇到了各种问题..错误过程:org.apache.catalina.LifecycleException: Failed to start comp...转载 2019-05-05 09:04:04 · 1019 阅读 · 0 评论 -
连接mySql数据库时出现 Cause: java.sql.SQLNonTransientConnectionException: CLIENT_PLUGIN_AUTH is required问题
org.apache.ibatis.exceptions.PersistenceException: ### Error updating database. Cause: java.sql.SQLNonTransientConnectionException: CLIENT_PLUGIN_AUTH is required ### Cause: java.sql.SQLNonTransien...原创 2018-06-05 15:34:27 · 17787 阅读 · 2 评论 -
Method definition shorthands are not supported by current JavaScript version解决方法
今天导入项目时发现,js文件中出现错误,显示为method definition shorthands are not supported by current JavaScript version中文解释是,方法定义不被当前JS版本支持,本地配置中JS版本太低解决办法:打开File->settings->languages&frameworks中把js版本跳到6.0即...原创 2018-09-22 10:39:19 · 1315 阅读 · 0 评论 -
Could not find method ?apply() for arguments [{plugin=java}] on project
今天再编译 gradle项目时出现了Could not find method ?apply() for arguments [{plugin=com.android.application}] on project '错误解决办法:把build.gradle里的内容全部复制出来,新建一个,粘贴进去,原来的删除重新编译就可以了...原创 2018-09-30 23:33:32 · 3650 阅读 · 0 评论 -
npm安装hexo时出现npm WARN deprecated swig@1.4.2: This package is no longer maintained错误
国外镜像访问不到,切换到国内镜像就可以了npm config set registry https://registry.npm.taobao.org原创 2018-10-20 00:10:44 · 16380 阅读 · 2 评论 -
搭建Hexo最后一步:hexo d时 没反应 直接跳过解决办法
**闲来无事,就用Hexo搭建博客,网上的教程说的可是非常简单,三下五除二就搞定了,然后自己实现起来的时候诸多问题,最后一步 向github上部署时,输入命令hexo d没有显示成功,也没有显示错误,所以没有找到解决办法,今天就查了一下文档,发现在配置文件里,冒号竟然少了一个空格,导致的出错,各大教程里竟然都没有提示这个问题:...原创 2018-10-25 21:50:29 · 8263 阅读 · 9 评论 -
mysql安装时出现:one more product requirements have not been satisified解决办法
今天给新装的系统安装mysql时出现one more product requirements have not been satisified原创 2018-11-07 11:10:24 · 53299 阅读 · 11 评论 -
Centos下安装mysql的rpm包时报“unable to establish ssl connection”错解决方法
今天在Centos下用wget命令安装mysql的rpm包过程中wget http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm出现错误查阅资料得知,有些网址需要添加参数去跳过检测这里需要添加 --no-check-certificate完整命令:wget http://dev.mysql.com/g...原创 2018-11-08 15:36:11 · 1688 阅读 · 0 评论 -
Centos下安装mysql时出现Delta RPMs disabled because /usr/bin/applydeltarpm not installed解决办法
**不得不说,如果网络环境没有搭建好的话,在Centos上安装mysql真的是挺复杂的,中间有很多问题出现,大部分都是网络的问题。今天在安装Centos上安装mysql的时候,出现Delta RPMs disabled because /usr/bin/applydeltarpm not installed之后就安装net-tools失败导致安装mysql失败字面翻译就是deltarpm没...原创 2018-11-09 12:01:01 · 51164 阅读 · 4 评论 -
Permissions 0644 for '/root/.ssh/id_rsa.pub' are too open
今天在进行向ssh-agent服务中添加git密钥时,出现下面错误Permissions 0644 for '/root/.ssh/id_rsa.pub' are too open.It is required that your private key files are NOT accessible by others.This private key will be ignored....原创 2018-11-12 10:27:54 · 4699 阅读 · 0 评论 -
git clone时出现了ssh_exchange_identification: read: Connection reset by peer fatal
今天在Centos7虚拟机上从git库拉取代码时出现了一下错误:ssh_exchange_identification: read: Connection reset by peer fatal:Could not read from remote repository.原创 2018-11-19 14:38:07 · 13126 阅读 · 2 评论 -
Win下启动Nginx报nginx: [emerg] unknown directive "锘? in D:\nginx-1.12.2/conf/nginx.conf:3错误
今天开发中遇到的巨坑。给配置好的Nginx更换到新的电脑上。修改过conf文件后,重启nginx报错:nginx: [emerg] unknown directive "锘? in D:\nginx-1.12.2/conf/nginx.conf:3当时以为看是乱码,就去找自己有没有修改错误。换一台电脑修改就能跑起来。最终发现是因为新的电脑上,我用的电脑自带的记事本编辑的,保存的时候会把ut...原创 2018-11-29 16:29:31 · 12953 阅读 · 3 评论 -
Cannot load project: com.intellij.ide.plugins.PluginManager$StartupAbortedException: Fatal error ini
像往常一样打开IDEA,安心做个码农…emmm项目打不开,报错Cannot load project: com.intellij.ide.plugins.PluginManager$StartupAbortedException: Fatal error initializing plugin Code Iris不怕google一下stackoverflow上说明了类似的问题,是插件安装...原创 2019-04-06 14:15:05 · 1271 阅读 · 0 评论 -
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdb
今天学习SpringBoot 时,配置好数据库启动项目时出现Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and man...原创 2019-04-13 18:53:07 · 426 阅读 · 0 评论 -
Caused by: java.lang.IllegalArgumentException: Unable to locate Attribute with the the given name
使用SpringBootDataJPA时出现了以下错误Caused by: java.lang.IllegalArgumentException: Unable to locate Attribute with the the given name [categoryType] on this ManagedType[XXX]原因真是愚蠢,就是实体类和数据库表字段不对应,简单来说,默认的...原创 2019-04-18 12:51:44 · 6618 阅读 · 0 评论 -
java.util.NoSuchElementException: No value present 错误原因
今天进行postman测试时,发现java.util.NoSuchElementException: No value present定位错误原因所在代码是,productInfo.findone()方法中,使用了Optional类,调用了get()方法,Optional类是JDK8中新添加的类,用来简化判空操作,如果使用对象为空,调用get()会产生以上错误。检查所传参数,是否为空。...原创 2019-08-06 22:24:28 · 5172 阅读 · 0 评论