上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 42 下一页
摘要: Git最小配置 某账号下所有的Git仓库都有效 git config —global user.name ‘您的名称’ git config —global user.email ‘您的Email’ 只对当前Git仓库有效 git config —local user.name ‘您的名称’ git 阅读全文
posted @ 2020-05-15 11:38 Questions张 阅读(493) 评论(0) 推荐(0) 编辑
摘要: 1 命令参数,里面的参数改成自己的坐标配置,以及本地第三方jar的本地路径 mvn deploy:deploy-file -DgroupId=taglibs -DartifactId=taglibs-unstandard -Dversion=20060829 -Dpackaging=jar -Dfi 阅读全文
posted @ 2020-05-09 15:13 Questions张 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 1 详细错误 2020-05-09 14:45:45.031:INFO:oejs.Server:jetty-8.1.16.v20140903 2020-05-09 14:45:46.473:INFO:oejpw.PlusConfiguration:No Transaction manager fou 阅读全文
posted @ 2020-05-09 15:10 Questions张 阅读(2032) 评论(0) 推荐(0) 编辑
摘要: 1 将这些忽略文件添加到.ignore文件里面 2 自己copy这些文件以及文件夹到另一个地方 3 然后删除这些文件和文件夹 4 添加所有的文件以及删除的文件到暂存区,并提交推送远程 git add --all . git commit git push 5 然后再copy回来这些文件到原来的地址, 阅读全文
posted @ 2020-05-08 16:36 Questions张 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 1 详细异常信息 Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [/Users/zhangjin/my 阅读全文
posted @ 2020-05-08 16:25 Questions张 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 1 错误警告 [WARNING] The requested profile "nexus" could not be activated because it does not exist. 2 仔细检查Maven的.setting文件,自己嵌套了两层profiles,注释掉多余的就可以了。 <p 阅读全文
posted @ 2020-05-08 14:56 Questions张 阅读(11976) 评论(0) 推荐(0) 编辑
摘要: 1 自己在gitlab上建一个仓库后,后面会有一个命令使用demo,按照那个命令就可以了 直接clone项目 git clone git@new.gitlab.jiushiyaokuaile.cn:root/demo.git cd demo touch README.md git add READM 阅读全文
posted @ 2020-05-07 14:54 Questions张 阅读(1194) 评论(0) 推荐(0) 编辑
摘要: 1 新建一个maven项目 2 代码 3 pom配置 @RestController public class HelloController { @RequestMapping(value = "/hello", method = RequestMethod.GET) public String 阅读全文
posted @ 2020-04-22 12:54 Questions张 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1 新建一个maven项目 详见这个博客 https://www.cnblogs.com/QuestionsZhang/p/12751338.html 2 编写dockfile 指定文件夹下面,跟pom中plugin插件匹配 FROM java:8 MAINTAINER "zhangjin"<315 阅读全文
posted @ 2020-04-20 13:59 Questions张 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 1 直接在Input加上 autocomplete="off" 2 加入之前效果 3 加入之后效果 阅读全文
posted @ 2020-04-19 15:26 Questions张 阅读(475) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 42 下一页