遇到的异常
幺幺满地乱爬
这个作者很懒,什么都没留下…
展开
-
c++11在macOS下多线程问题:【no matching constructor for initialization of ‘std::thread‘】
c++问题解决原创 2023-03-11 19:40:50 · 819 阅读 · 0 评论 -
Found a swap file by the name “.bash_profile.swp“
问题出在我对bash_profile文件操作时异常退出,这会导致系统创建一个bash_profile.swp文件。解决办法:输入 q(退出)然后在终端出入:rm -f ~/.bash_profile.swp最后你在终端输入 source ~/.bash_profile就可以了...原创 2021-03-01 13:58:39 · 2965 阅读 · 0 评论 -
golang获取环境变量为空
今天写代码时候碰到了通过os.getenv来获取Java_home返回为“”的情况通过反复的测试最终发现,这样的问题可能有两种情况下会发生。第一种就是我们的环境变量只是设置了值但是并没有export导致我们仅仅可以在shell中查看第二种就是我们export时后面没有跟=什么,尽管上面可能设置过了值,但是没有在export哪里重新写一遍也是导不出来的我就是第二种情况,改完之后就可以拿到结果了...原创 2020-07-23 16:15:50 · 1492 阅读 · 0 评论 -
push文档时出现错误
error: failed to push some refs to ‘https://github.com/1224819118/learningNote.git’hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually cau...原创 2020-04-19 16:57:23 · 520 阅读 · 0 评论 -
java.sql.SQLException: Field 'id' doesn't have a default value
今天使用Java程序向MySQL数据库插入数据时 报了java.sql.SQLException: Field ‘id’ doesn’t have a default value错误我使用sql语句在数据库中执行是可以的那么就是Java这方面的问题最后找到时由于数据库中主键没有设置自增 而我又在插入数据时没有插入主键所有出现了这个错误...原创 2020-02-15 12:13:32 · 1282 阅读 · 0 评论 -
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null'
今天学习vue和axios时进行前后端结合出现了这个错误No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘null’当使用ajax访问远程服务器时,请求失败,浏览器报如上错误。这是出于安全的考虑,默认禁止跨域访问导致的。一、什么是跨域访问举个栗子:在A网站中,我们希望...原创 2020-02-13 13:08:51 · 589 阅读 · 0 评论 -
Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually.
idea连接MySQL时报错Server returns invalid timezone. Go to ‘Advanced’ tab and set ‘serverTimezone’ property manually.这个是时区的问题只要我们在MySQL中修改时区就可以了,进入MySQL输入show variables like’%time_zone’;可以看到我们的时区显示 SYS...原创 2020-02-12 10:33:43 · 181 阅读 · 0 评论 -
Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid b
在整合ssm时出现了这个错误显示找不到mapper文件这是由于xml文件没有被编译解决方法:修改tmapper模块的pom文件在pom文件中添加如下内容:<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 --> <build> <resources> <resourc...原创 2020-02-05 11:30:11 · 532 阅读 · 0 评论 -
Table‘performance_schema.session_variables’ doesn’t exist
错误来源:众所周知,data文件夹是用于存放创建的数据库的,在纯净安装完成数据后data文件夹里面只有一个文件夹:performance_schema(安装数据库时自带的)如果装数据库或者使用数据时不小心将安装文件夹:mysql-5.7.21-winx64下的\data文件夹中的performance_schema删除或重命名了,就会出现Table‘performance_schema.sessi...原创 2020-02-05 07:47:23 · 635 阅读 · 0 评论 -
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'oa.dapartment' doesn't exis
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table ‘performance_schema.session_variables’ doesn’t exist at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)&nb...原创 2020-02-05 07:40:30 · 1453 阅读 · 0 评论 -
idea整合ssm时遇到Error creating bean with name 'org.springframework.cache.interceptor.CacheInterceptor#0'
idea自动导入命名空间时出现了问题,导成了含 cache 这种,删除掉重新导入就行了。<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins...原创 2020-02-05 07:32:54 · 187 阅读 · 1 评论