安装Cerbot sudo apt-get update sudo apt-get install software-properties-common sudo add-apt-repository ppa:certbot/certbot sudo apt-get update sudo apt- ...
分类:
Web程序 时间:
2020-01-13 18:19:38
阅读次数:
122
转自:https://www.cnblogs.com/zhukaixin/p/9172996.html @Componet 标注一个普通的spring bean类,可以代替@Respository、@Service、@Controller @Repository 标注一个DAO组件类 @Servic ...
分类:
编程语言 时间:
2020-01-13 14:38:54
阅读次数:
79
在很多情况下,默认的中央仓库无法满足项目的需求,可能项目需要的构件存在于另外一个远程仓库中,如Company Maven仓库。这时,可以在项目POM中或maven的settings.xml中配置该仓库 <repositories> <repository> <id>company</id> <nam ...
分类:
其他好文 时间:
2020-01-12 13:39:40
阅读次数:
71
一、<!--?xml version="1.0" encoding="UTF-8"?--> 首先,需要编辑项目的pom.xml文件,配置distributionManagement元素 distributionManagement包含repository和snapshotRepository子元素, ...
分类:
其他好文 时间:
2020-01-12 13:24:40
阅读次数:
79
1.下载git客户端 https://git-scm.com/downloads 2.设置用户名和邮箱 git config --global user.name "" git config --global user.email "" 3..创建new repository create a ne ...
分类:
其他好文 时间:
2020-01-11 16:40:25
阅读次数:
579
GIT Repository Management This tutorial explains how to use GIT to create a project, add files, commit modifications and upload them in the remote rep ...
分类:
其他好文 时间:
2020-01-11 13:21:31
阅读次数:
85
Start a GIT Repository The first step in creating a GIT repository is finding where to actually create it. You can either create the repository on you ...
分类:
其他好文 时间:
2020-01-11 09:59:40
阅读次数:
79
我试图导入java-ipfs-api的jar 下面是我导入的依赖,我本地的源是阿里源 <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> ...
分类:
其他好文 时间:
2020-01-11 09:48:28
阅读次数:
65
使用场景 拆分项目,当项目越来越大之后,我们希望 子模块 可以单独管理,并由 专门 的人去维护,这个时候只可以使用 git submodule 去完成。 常用命令 git clone <repository> --recursive # 递归方式克隆整个项目 git submodule add <r ...
分类:
其他好文 时间:
2020-01-10 22:18:16
阅读次数:
91
配置MongoDB的yum源 vim /etc/yum.repos.d/mongodb-org-3.4.repo #添加以下内容: [mongodb-org-3.4] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redha ...
分类:
数据库 时间:
2020-01-10 12:29:53
阅读次数:
71