Solution
文章平均质量分 52
「已注销」
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
将本地项目提交到远程Git上
很多时候,我们会现在本地创建项目并初始化,到一定阶段会将本地项目提交到远程仓库,每次提交的时候都会遇到各种各样的问题,在此记录一下做这个操作的心理历程,以便后续查看。第一步:创建远程仓库第二步:git init 初始化本地文件夹为git repository第三步:此时我们会将本地文件提交至本地仓库:执行命令时git add 和git commit  原创 2020-06-27 17:03:05 · 346 阅读 · 0 评论 -
vue使用国内镜像install modules
安装cnpmnpm install -g cnpm --registry=https://registry.npm.taobao.org使用cnpmcnpm install xxx原创 2020-01-07 14:51:24 · 1215 阅读 · 0 评论 -
vue项目中ReferenceError: primordials is not defined in node
vue项目中运行npm run dev时报:const { Math, Object, Reflect } = primordials; ^ReferenceError: primordials is not defined问题原因:安装gulp版本与node版本不兼容的问题,当前版本:gulp版本是3.9.1, 本地n...原创 2020-01-07 14:13:40 · 5039 阅读 · 0 评论 -
springboot juint 测试 Could not open ServletContext resource [/application.yml]
springboot juint 测试 Could not open ServletContext resource [/application.yml]在@SpringBootTest中增加加webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT@RunWith(SpringJUnit4ClassRunner.class)@Sp...原创 2019-11-22 10:23:11 · 1294 阅读 · 1 评论 -
springboot juint 测试 Could not open ServletContext resource [/springmvc.xml]
springboot juint 测试 Could not open ServletContext resource [/application.yml]junit测试时一直提示Could not open ServletContext resource [/application.yml] (或springmvc.xml)解决办法:@RunWith(SpringRunner.class)...原创 2019-10-30 08:51:42 · 1081 阅读 · 1 评论 -
IDEA maven项目中导入本地JAR包
第一步:将项目所需要的jar copy到lib文件夹里,或者另外再建立一个lib文件夹。如下图:第二步:点击IDEA左上角的file,再点击Project Structure。第三步:点击Modules。选择dependencies,点击右边的加号第四步:选择你刚才选中的lib文件夹中所需要的jar包,点击apply,ok。...原创 2019-09-18 19:10:02 · 413 阅读 · 0 评论 -
IDEA中中文乱码问题解决
1.普通中文乱码①settings --> editor --> code style --> file encodings 中IED Encoding 和project Encoding defult encoding for properties files 三个设置为utf-8。 ②打开idea安装地址\bin中idea.exe.vmoptions 和idea64....原创 2019-08-14 19:09:30 · 223 阅读 · 0 评论 -
Navicat连接MySQL报错-2059
       是由于mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password, 解决问题方法有两种,一种是升级navicat驱动,一种是把mysql用户登录密码加密规则还原成mysql_native_password.&a原创 2019-02-05 17:15:16 · 640 阅读 · 0 评论
分享