2019年2月21日
摘要: //是否是顶级配置文件,设置为true的时候才会停止搜索.editorconfig文件 root = true [*] //缩进方式tab" | "space indent_style = space //缩进大小 indent_size = 4 //编码格式 charset = utf-8 //是 阅读全文
posted @ 2019-02-21 17:38 呼吸able 阅读(161) 评论(0) 推荐(0) 编辑
摘要: git clone ssh 代码: 报错: Warning: Permanently added 'gitee.com,120.55.226.24' (ECDSA) to the list of known hosts. Permission denied (publickey). fatal: C 阅读全文
posted @ 2019-02-21 17:35 呼吸able 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库 2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件 3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明 4 阅读全文
posted @ 2019-02-21 17:26 呼吸able 阅读(172) 评论(0) 推荐(0) 编辑
  2018年12月11日
摘要: 获取企业微信打开API上面的数据 根据企业ID和打卡模块的secret获取access_token 打卡传参body为json格式的字符传 创建打卡对象把参数写入,useridlist为list格式。转json 返回数据 企业微信调用代码 package com.westvalley.rrl.wec 阅读全文
posted @ 2018-12-11 16:21 呼吸able 阅读(4636) 评论(1) 推荐(1) 编辑
  2018年8月10日
摘要: 原理,是因为没把新创建好的maven项目给设置成一个可被tomcat部署的web项目 选择个项目路径 配置artifacts,引入到tomcat就可以 阅读全文
posted @ 2018-08-10 09:28 呼吸able 阅读(2379) 评论(0) 推荐(1) 编辑