摘要:
1、git add 命令可将该文件添加到暂存区。 git add . : 将修改操作的文件和未跟踪新添加的文件添加到git系统的暂存区,注意不包括删除。 git add -u : -u 表示将已跟踪文件中的修改和删除的文件添加到暂存区,不包括新增加的文件,注意这些被删除的文件被加入到暂存区再被提交并 阅读全文
摘要:
1、项目clone 到本地(克隆指定分支) git clone <-b 分支名> 地址 2、git仓库添加新的分支,本地查看不到新分支 git fetch origin --prune git remote update origin --prune git remote update origin 阅读全文
摘要:
1、Windows 下 启动服务: net start mysql 关闭服务: net stop mysql 2、Linux下 启动服务: service mysql start 关闭服务: service mysql stop 阅读全文
摘要:
1、使用postman 进行post接口测试 { "timestamp": "2021-12-18T17:04:42.820+0000", "status": 415, "error": "Unsupported Media Type", "message": "Content type 'text 阅读全文
摘要:
报错原因: 项目中要压缩图片 用maven 打包时,提示 程序包com.sun.image.codec.jpeg不存在 解决方法: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plug 阅读全文
摘要:
springboot 项目部署到tomcat 下,上传附件出现问题: 报错信息: [http-nio-80-exec-544] 2021-09-29 15:54:20 (GlobalExceptionHandler.java:372) 运行时异常: org.springframework.web.m 阅读全文
摘要:
spring 整合 mybatis 报错日志 Exception in thread "main" org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.Persiste 阅读全文
摘要:
spring 整合 mybatis 报错信息 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.mybatis.spring.SqlSessio 阅读全文
摘要:
spring 整合 mybatis 报错信息 java.lang.NoClassDefFoundError: org/apache/commons/pool/KeyedObjectPoolFactory 找不到commons-pool, 添加commons-pool-1.6依赖 <dependenc 阅读全文
摘要:
spring 整合 mybatis 查询数据库报错 java.lang.NoClassDefFoundError: org/springframework/dao/support/DaoSupport 缺少jar包 添加如下jar包 <dependency> <groupId>org.springf 阅读全文