上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
摘要: 解决办法:window10 参考:https://blog.csdn.net/qq_41548644/article/details/111999269 git stash drop stash@`{0`} 阅读全文
posted @ 2022-02-11 14:55 唏嘘- 阅读(707) 评论(0) 推荐(0)
摘要: 使用场景:当在一个分支的开发工作未完成,却又要切换到另外一个分支进行开发的时候,可以先将自己写好的代码,储存在一个箱子里面 1、添加改动到 stash git stash save "名称" 2、查看当前stash中的内容 git stash list 3、将当前stash中的内容弹出,并应用到当前 阅读全文
posted @ 2022-02-11 14:54 唏嘘- 阅读(137) 评论(0) 推荐(0)
摘要: 1、git add 命令可将该文件添加到暂存区。 git add . : 将修改操作的文件和未跟踪新添加的文件添加到git系统的暂存区,注意不包括删除。 git add -u : -u 表示将已跟踪文件中的修改和删除的文件添加到暂存区,不包括新增加的文件,注意这些被删除的文件被加入到暂存区再被提交并 阅读全文
posted @ 2022-02-11 14:36 唏嘘- 阅读(1215) 评论(0) 推荐(0)
摘要: 1、项目clone 到本地(克隆指定分支) git clone <-b 分支名> 地址 2、git仓库添加新的分支,本地查看不到新分支 git fetch origin --prune git remote update origin --prune git remote update origin 阅读全文
posted @ 2021-12-30 13:26 唏嘘- 阅读(201) 评论(0) 推荐(1)
摘要: 1、Windows 下 启动服务: net start mysql 关闭服务: net stop mysql 2、Linux下 启动服务: service mysql start 关闭服务: service mysql stop 阅读全文
posted @ 2021-12-19 11:23 唏嘘- 阅读(78) 评论(0) 推荐(0)
摘要: 1、使用postman 进行post接口测试 { "timestamp": "2021-12-18T17:04:42.820+0000", "status": 415, "error": "Unsupported Media Type", "message": "Content type 'text 阅读全文
posted @ 2021-12-19 01:07 唏嘘- 阅读(1153) 评论(0) 推荐(0)
摘要: 报错原因: 项目中要压缩图片 用maven 打包时,提示 程序包com.sun.image.codec.jpeg不存在 解决方法: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plug 阅读全文
posted @ 2021-10-27 11:03 唏嘘- 阅读(238) 评论(0) 推荐(0)
摘要: springboot 项目部署到tomcat 下,上传附件出现问题: 报错信息: [http-nio-80-exec-544] 2021-09-29 15:54:20 (GlobalExceptionHandler.java:372) 运行时异常: org.springframework.web.m 阅读全文
posted @ 2021-10-15 22:42 唏嘘- 阅读(2435) 评论(0) 推荐(0)
摘要: spring 整合 mybatis 报错日志 Exception in thread "main" org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.Persiste 阅读全文
posted @ 2021-10-10 08:27 唏嘘- 阅读(1180) 评论(0) 推荐(0)
摘要: spring 整合 mybatis 报错信息 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.mybatis.spring.SqlSessio 阅读全文
posted @ 2021-10-10 08:18 唏嘘- 阅读(909) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页