spring-boot 入门

一、maven构建 1.1 继承boot超级parent <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.1.RELEASE</version> </parent> 这样,其他依赖不需要写版本号,如果一定要写,配置在properties即可,如: <properties> »

Docker入门

#Docker入门 一、安装 概述: 镜像:docker基于镜像运行容器,镜像是docker生命周期的“构建”部分。 Registry:用来保存镜像 »

Author image 二道涯