在我们自己的项目中由于代码重构以及升级,将jdk环境从jdk1.6换成了1.7,这时候我们发现了一个问题,访问某些https网站时候,出现了Certificates does not conform to algorit…
标签:编程问答
git提交代码时src refspec feature does not match any.
用Git提交代码时候,pull的时候是没问题的,到commit后push的时候终端报出这样的问题:src refspec feature does not match any. 如下所示: drydeMBP:xxx dr…
Configuration problem: Failed to import bean definitions from relative location
问题现象: 最近开始做新需求,然后在Tomcat上部署项目时,出现了如下报错: [12-05 09:54:27,161 ERROR] ContextLoader.java:351 – …
python安装报错error writing to file:......
今天换了win10 64电脑,安装python3.6.8时,报错:error writing to file:…… 安装时,右键–以管理员身份运行,安装成功。
Linux(CentOS)下编译安装apache
Centos7.6系统 已经安装lnmp一键环境 想装个apache跑php7 要求已经安装gcc,没有的看这:yum install gcc-c++ 本来想整理成一键安装脚本,但现在的步骤已经够简单了,懒 /usr/l…
tensorflow Process finished with exit code 137 (interrupted by signal 9: SIGKILL) 错误
Process finished with exit code 137 (interrupted by signal 9: SIGKILL) 在使用tensorflow自带的数据集做手写数字识别的时候,总是遇到这个错误,…
warning: React does not recognize the xxx prop on a DOM element
这是React不能识别dom元素上的非标准attribute报出的警告,最终的渲染结果中React会移除这些非标准的attribute。 通常{…this.props}和cloneElement(elemen…
qmlscene: could not find a Qt installation of ''
qt └── helloqt.qml 在qt目录下运行helloqt.qml文件时出现这个提示: $ qmlscene helloqt.qml qmlscene: could not find a Qt installa…
Php使用try{} catch(Exception $e){}未捕获到异常之PDO了解
问题场景: 今日使用try{} catch(Exception $e) {}来捕获一个mysqli连接时,未捕获到异常信息。因为项目中自认为一致是使用该方法来处理异常的,但此处,使用原生方法连接数据库时却发生了错误,十分…
centos7 mysql The server quit without updating PID file(错误解决)
1 问题 [root@localhost mysql]# /etc/rc.d/init.d/mysql status MySQL is not running, but lock file (/var/lock/subs…
c/c++A/libc: Fatal signal 4 (SIGILL) at 0x000010c5 (code=0), thread 4293 (qssq666.testjnimodule)错误解决
这里有一个明显的信息.出现了一个包名,那么知道是哪个apk崩溃的,我这里我知道是走哪里崩溃的,是jni方法调用成功之后后面没有代码才崩溃的,我这里崩溃的原因是java 本地方法没有返回值但是在c层我加了返回值。 相关参考…
EventBus 2.x升级到3.0使用注意
首先安利EventBus:https://github.com/greenrobot/EventBus 由于项目处于进行中,采用Android Studio升级也很简单就升级了。但是升级后原先运行良好的程序,出现页面刷新…