GitHub 一、目的 借助 github 托管项目代码 放到仓库中(Repository) 二、基本概念 仓库(Repository)仓库用来存放代码,每个项目对应一个仓库,多个开源项目则有多个仓库 关注(Watch)看到开源项目感觉不错,点击Watch,那么以后该项目有任何更新,自己都会第一时间 ...
分类:
其他好文 时间:
2020-02-04 20:05:06
阅读次数:
74
解决办法:关闭selinux [root@k8s-master ~]# docker push 10.0.0.10:5000/nginx The push refers to a repository [10.0.0.10:5000/nginx] 22439467ad99: Retrying in ...
分类:
Web程序 时间:
2020-02-04 15:41:17
阅读次数:
402
1.@controller 控制器(注入服务) 2.@service 业务(注入dao) 3.@repository dao(实现dao访问) 4.@component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>) 5.@Compone ...
分类:
编程语言 时间:
2020-02-04 15:38:43
阅读次数:
61
编程入门 概述 1. 计算机包括硬件和软件。硬件包括计算机中可以看得见的物理部分。而软件提供看不见的指令。这些指令控制着硬件,并且使得硬件完成特定的任务。 2. 程序设计:开发软件。软件包含了指令,告诉计算机做什么。 计算机硬件介绍 1. 中央处理器 1.1 中央处理器(Central Proces ...
分类:
其他好文 时间:
2020-02-04 00:26:17
阅读次数:
75
首先需要理解,这里的镜像是指image,而container是容器,是image的一个启动。 镜像备份: 备份使用commit命令,相当于是将正在运行的container保存为一个image 使用方法如下: 实例: 最后跟的那个backup就相当于之后image的repository,当然这里也可以 ...
分类:
其他好文 时间:
2020-02-02 23:58:27
阅读次数:
315
一. 单个pom.xml形式:适合单个项目 <repositories> <repository> <id>nexus</id> <name>Nexus</name> <url>http://192.168.0.105:8086/nexus/content/groups/public/</url> ...
分类:
其他好文 时间:
2020-01-31 16:04:24
阅读次数:
72
# cat /root/.m2/settings.xml <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schema ...
分类:
其他好文 时间:
2020-01-31 00:51:11
阅读次数:
65
我依照Siraj Raval先生的视频How to Use GitHub开始创建Github repository。 Siraj说Github的起源是: Linus Torvalds先生做自己的操作系统代码,他一直在改写代码,别人也在贡献,如何协同,如何回溯到前一个版本,如何解决代码冲突。他写了Gi ...
分类:
其他好文 时间:
2020-01-30 22:56:53
阅读次数:
90
一. nexus的内置仓库 1. 仓库列表 查看方式:点击左边的Repositories 二. 列说明 1. 仓库名 Central:中央仓库 3rd party:第三方仓库,比如手工上传的jar包就保存在这里 Apache Snapshots:apache 快照仓库 Releases:发行版本仓库 ...
分类:
其他好文 时间:
2020-01-30 19:07:43
阅读次数:
196
一. Nexus搜索 1. 概念:它是功能强大的Maven管理工具 2. 地址:http://repository.sonatype.org/ 3. 代理的仓库包括: (1) central:中央仓库 (2) JBoss (3) Java.net 二. Jarvana搜索 1. 地址:http:// ...
分类:
Web程序 时间:
2020-01-30 19:06:21
阅读次数:
134