Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 1 章 Spring Boot Quick start

目录

1.1. 创建项目
1.2. pom.xml
1.3. Controller
1.4. Springboot with Maven
1.4.1. resource
1.4.2. Maven run
1.4.3. Spring Boot maven 插件 build-image
1.4.4. 生成项目信息

1.1. 创建项目

		
curl https://start.spring.io/starter.tgz  \
  -d artifactId=creds-example-server \
  -d dependencies=security,web \
  -d language=java \
  -d type=maven-project \
  -d baseDir=example-server \
| tar -xzvf -