Spring Boot 开发指南

如果想使用Spring Boot开发就需要安装 Maven或者Gradle. 

Maven的配置说明: 

Spring Boot的Apache Maven 3.2或更高版本兼容。如果您还没有安装Maven,那么可以按照maven.apache.org的说明进行操作。或者查看本站其他的关于Maven的教程.

Spring Boot依赖项使用了org.springframework.bootgroupId。通常,Maven POM文件将继承spring-star-starp-parent,并将依赖项声明为一个或多个“启动器”。Spring Boot还提供了一个可选的Maven插件

pom.xml文件如下:

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.example</groupId>
    <artifactId>myproject</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <!-- Inherit defaults from Spring Boot -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.4.RELEASE</version>
    </parent>

    <!-- Add typical dependencies for a web application -->
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

    <!-- Package as an executable jar -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build></project>

Gradle的配置说明: 

如果你没有安装Gradle的话, 可以到 www.gradle.org 进行安装. 

build.gradle文件内容如下: 

plugins {
    id 'org.springframework.boot' version '1.5.4.RELEASE'
    id 'java'}


jar {
    baseName = 'myproject'
    version =  '0.0.1-SNAPSHOT'}

repositories {
    jcenter()
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web")
    testCompile("org.springframework.boot:spring-boot-starter-test")
}


安装Spring Boot CLI

可以查看 CLI的安装


关注极客云图了解更多内容