代码报错
BigFreezer
这个作者很懒,什么都没留下…
展开
-
处理windows批处理定时任务闪退
记一次使用windows定时任务闪退的坑原创 2022-08-16 00:35:16 · 795 阅读 · 1 评论 -
解决python使用pip命令报错load_entry_point(‘pip==20.1.1‘, ‘console_scripts‘, ‘pip3‘)()
python3.8使用pip命令无故报错原创 2022-07-30 20:33:32 · 3956 阅读 · 0 评论 -
解决springboot添加@CrossOrigin支持跨域不起作用
问题描述在springboot开发中,为解决跨域请求问题,在代码中添加注解@CrossOrigin不起任何作用。后端报错信息如下java.lang.IllegalArgumentException: When allowCredentials is true, allowedOrigins cannot contain the special value "*" since that cannot be set on the "Access-Control-Allow-Origin" resp原创 2022-05-07 17:28:44 · 9722 阅读 · 4 评论 -
解决报错Caused by: java.sql.SQLException: Parameter index out of range (2 > number of parameters,
问题描述springboot运行报错Caused by: java.sql.SQLException: Parameter index out ofrange (2 > number of parameters, which is 1).报错原因对比一下下面两种写法因为加了注释,而注释不小心放在了标签里,就会导致报错,解决办法就是把注释移到标签外,即第一种注释方法,报错得以解决。...原创 2022-05-05 14:34:03 · 2312 阅读 · 0 评论 -
Centos上使用git clone无法拉取代码
问题描述当从github拉取代码时没反应,例如下面的拉取命令git clone https://github.com/redis/hiredis.git解决方案尝试过将https换为git,仍然不行,需要执行以下命令yum update -y nss curl libcurl 如果出现如图状况则把update换成install像这样子yum install -y nss curl libcurl等待安装,重新执行命令,成功拉取...原创 2022-04-08 16:44:53 · 2298 阅读 · 0 评论 -
python使用pip安装出现pip is configured with locations that require TLS/SSL异常处理方法
问题描述最近给服务器安装python环境,通过源码方式安装Python3.8之后,使用pip功能出现异常,提示[root@localhost ~]# pip3 install you-getpip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.Collecting httpbin Retrying (Retry(total=4, conn原创 2022-04-08 14:53:06 · 6387 阅读 · 2 评论 -
解决mysql8.0版本报错Expression #1 of SELECT list is not in GROUP BY clause and contains nonag..
问题描述用mybatis写sql语句的时候,用到了group by关键字,运行报错mysql8.0报错Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘drive.drive_data.id’ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with原创 2022-03-29 19:22:17 · 1497 阅读 · 0 评论 -
SpringMVC代码没有问题的404错误
1.问题描述在看狂神视频学习springmvc的时候,用了别人的学习代码跟着敲,代码没问题tomcat启动正常但是报错404。2.问题解决(1)首先检查tomcat配置,没问题(2)然后手动添加了lib(点击查看添加lib),但是还是报错。(2)检查out输出目录发现模块3的jsp文件没有输出,所以报错404,正常应该是要输出的(4)仔细观察两个项目的web,发现3比2少了一个蓝圈,原来是导入出了些问题(5)打开项目结构,可以发现2有web文件夹,但是3没有,这里需要手动添加一个原创 2022-01-23 16:38:48 · 795 阅读 · 0 评论