error
星哲最开心
星哲最开心
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Can't connect to any repository: xxxxxx Error writing request body to server
今天在git提交代码时一直报如下错误:Can't connect to any repository: https://gitee.com/xxxxxx(https://gitee.com/xxxx: Error writing request body to server)后来经过谷歌发现是git默认的post缓存为1M,当项目过大时,就会出现问题。解决方案:一、gitBash修...原创 2019-08-07 20:46:49 · 8386 阅读 · 0 评论 -
解决maven打war包报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2
1、报错经历:今天使用eclipse通过maven install打war包的时候,出现了下图所示的错误 2、问题分析:不能执行依赖包maven-compiler-plugin:2.3.2,判断原因是缺少这个jar包3、问题解决:打开pom.xml文件,在适当位置加入下列依赖:<dependency><groupId>org.ap...原创 2019-07-14 18:04:18 · 2180 阅读 · 0 评论 -
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
Mavn报错:No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?没有配置 java_home、path、classPath原创 2019-07-14 18:28:10 · 108 阅读 · 0 评论 -
使用SpringMVC前台发送数据时得到400或415错误!
今天在项目中使用SpringMVC框架,想从前台往后台发送json格式的数据。但是发送失败,查看开发者工具栏。分别得到了两个错误码:400、415查询错误码详情了解到ajax请求后台数据时报 HTTP 400 错误 - 请求无效 (Bad request);出现这个请求无效报错说明请求没有进入到后台服务里;原因:1)前端提交数据的字段名称或者是字段类型和后台的实体类不一致,导致无法...原创 2020-02-19 15:58:36 · 308 阅读 · 0 评论 -
解决clickhouse服务器启动异常Suspiciously many broken parts to remove
解决clickhouse服务器启动异常Suspiciously many broken parts to remove原创 2023-06-17 10:30:17 · 2575 阅读 · 0 评论 -
解决MySQL5.7安装目录下没有data文件夹
原始安装目录下发现data文件夹不存在原因:安装MySQL的时候只安装了部分正确安装方式是选择第一个完整安装(建议卸载重装)卸载不干净解决办法:点击打开链接若之后重新安装出现mysql connector net 无法卸载等问题建议用MySQL压缩包解压安装MySQL压缩包安装方法:https://www.cnblogs.com/qjoanven/p/7898006.html解决办法:(管理员)命令提示符cd安装程序bin目录cd C:\Program Fil...原创 2021-03-19 18:04:13 · 1846 阅读 · 0 评论 -
MySQL8.0.忘记密码解决报 ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
今天新安装了mysql8.0 ,也是特别坑,明明测试能通过连接,服务启动之后就是登不进去,也不知道是忘记了还是咋的,一直报ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)网上看了很多解决方法,很多的都是之前的解决办法,在新的版本中根本没有起作用,后面看了几个博客综合起来才解决了,记录一下。第一步:关闭服务net stop mysql这个需要在管理员权限才行 ,具体怎...原创 2021-04-17 23:03:47 · 202 阅读 · 0 评论 -
win10 解决端口被占用的问题(以8080端口为例)
win10 解决端口被占用的问题(以8080端口为例)原创 2022-11-11 21:08:51 · 1237 阅读 · 0 评论 -
pom.xml maven报错
解决新建springboot项目时包导不进来的问题发现问题新建一个springboot项目 此时maven的setting配置文件配置的阿里云的源 发现很多包导不进来,于是reimport,没有效果 于是执行clean命令 报错Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:2.2.4.RELEASE from/to alimaven (https://maven.al原创 2021-03-17 15:35:35 · 1596 阅读 · 0 评论 -
错误:Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2
错误:Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2转发:https://blog.csdn.net/sz15732624895/article/details/82151055报错信息: [INFO] -------------------------------------------...原创 2020-02-16 19:55:23 · 1559 阅读 · 0 评论 -
【错误解决】Springboot中Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found
问题:Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found解决:很多人说加上版本号就可以了但是我光加版本号不可以clean了也不可以后面不光加了版本号,还加了下面的字段才可以,记录在此! <build> <plugins> <!-- 打jar包时如果不配置该插件,打出来的jar包没有清单文件 -->原创 2022-01-16 18:00:35 · 465 阅读 · 1 评论 -
mvn site 报错解决
执行报错,错误描述如下:$ mvn site[INFO] Scanning for projects...[INFO] [INFO] ------------------------------------------------------------------------[INFO] Building order-center 1.0.0[INFO] ---------...原创 2020-02-15 11:24:52 · 830 阅读 · 0 评论 -
pom.xml报错web.xml is missing and <failOnMissingWebXml> is set to true
一、web.xml is missing and <failOnMissingWebXml> is set to true 原因是在项目中缺少web.xml,且<failOnMissingWebXml>被设置成了true 解决方法:a.如果项目需要web.xml,去复制一个web.xml到项目中即可。 也可以使用Eclipse生成:有如下两...原创 2020-02-16 17:09:04 · 380 阅读 · 0 评论 -
关于vs code使用code runner运行python代码出现中文乱码的解决办法
关于vs code使用code runner运行python代码出现中文乱码的解决办法原创 2025-06-01 16:21:57 · 593 阅读 · 0 评论 -
解决Python报错SSLError,如果试了网上一大堆方法还不行,看看这个吧!
解决Python报错SSLError,如果试了网上一大堆方法还不行,看看这个吧!原创 2025-10-27 09:21:18 · 275 阅读 · 0 评论 -
shell中crontab报环境变量找不到问题
shell中crontab报环境变量找不到问题原创 2025-06-09 14:13:49 · 356 阅读 · 0 评论
分享