
other
Ken-Jiang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
如何copy github上已有的工程到一个新的repository
## Mirroring a repository1. Create a bare clone of the repository. git clone --bare https://github.com/exampleuser/old-repository.git 2. Mirror-push to the new repository. cd old-repository.git git p...原创 2018-04-12 14:41:21 · 2041 阅读 · 0 评论 -
Spring Boot的Maven插件Spring Boot Maven plugin详解
pring Boot的Maven插件(Spring Boot Maven plugin)能够以Maven的方式为应用提供Spring Boot的支持,即为Spring Boot应用提供了执行Maven操作的可能。Spring Boot Maven plugin能够将Spring Boot应用打包为可执行的jar或war文件,然后以通常的方式运行Spring Boot应用。Spring Boot M...转载 2018-05-17 16:56:34 · 903 阅读 · 0 评论 -
必须包含字母和数字的正则表达式写法
如题,这句话用来判断一句话中是否是一定包含字母和数字的:([0-9]+[a-zA-Z]+|[a-zA-Z]+[0-9]+)[0-9a-zA-Z]*原创 2018-05-07 16:10:19 · 15415 阅读 · 2 评论 -
maven 检测版本依赖
mvn dependency:tree -Dincludes=com.fasterxml.jackson.core以上命令可以检测当前项目中对于com.fasterxml.jackson.core 所使用的版本号是多少原创 2018-06-05 21:24:38 · 1153 阅读 · 0 评论 -
Mac上安装aws cli
按照这个标准来安装 aws cli https://docs.aws.amazon.com/cli/latest/userguide/cli-install-macos.html安装完后要确保以下命令加到环境变量里:编辑文件 ~/.bash_profile 加入以下内容:# Setting PATH for Python 3.6# The original version is ...原创 2018-08-19 07:51:49 · 3748 阅读 · 0 评论 -
aws-cli permission denied
After installed aws in mac, need to run aws configure to do the configuration, if you met permission denied problems, please run below cmd to fix: sudo chown $(whoami) ~/.aws/credentialsYou'll pro...原创 2018-08-27 14:40:04 · 544 阅读 · 0 评论