本指南提供了有关Spring Boot如何帮助您加速应用程序开发的示例。当您阅读更多《 Spring入门指南》时,您将看到更多有关Spring Boot的用例。本指南旨在使您快速了解Spring Boot。如果要创建自己的基于Spring Boot的项目,请访问Spring Initializr,填写项目详细信息,选择选项,然后将捆绑的项目下载为zip文件。

你会建立什么

您将使用Spring Boot构建一个简单的Web应用程序,并向其中添加一些有用的服务。

你需要什么

如何完成本指南

像大多数Spring入门指南一样,您可以从头开始并完成每个步骤,也可以绕过您已经熟悉的基本设置步骤。无论哪种方式,您最终都可以使用代码。

从头开始,请继续进行“从Spring Initializr开始”

跳过基础知识,请执行以下操作:

完成后,您可以根据中的代码检查结果gs-spring-boot/complete

了解使用Spring Boot可以做什么

Spring Boot提供了一种构建应用程序的快速方法。它查看您的类路径和已配置的Bean,对丢失的内容做出合理的假设,然后添加这些项目。借助Spring Boot,您可以将更多精力放在业务功能上,而不必在基础架构上。

以下示例显示了Spring Boot可以为您做的事情:

  • Spring MVC是否在类路径上?您几乎总是需要几个特定的​​bean,Spring Boot会自动添加它们。Spring MVC应用程序还需要一个Servlet容器,因此Spring Boot会自动配置嵌入式Tomcat。

  • Jetty是否在类路径上?如果是这样,您可能不希望使用Tomcat,而希望使用嵌入式Jetty。Spring Boot会为您处理该问题。

  • Thymeleaf在类路径上吗?如果是这样,那么必须始终将一些bean添加到您的应用程序上下文中。Spring Boot为您添加了它们。

这些只是Spring Boot提供的自动配置的一些示例。同时,Spring Boot不会妨碍您。例如,如果Thymeleaf在您的路径上,则Spring Boot会自动将a添加SpringTemplateEngine到您的应用程序上下文中。但是,如果您SpringTemplateEngine使用自己的设置定义自己的设置,则Spring Boot不会添加一个。这样您就可以毫不费力地控制自己。

Spring Boot不会生成代码或对文件进行编辑。相反,当您启动应用程序时,Spring Boot会动态地连接Bean和设置并将其应用于您的应用程序上下文。

从Spring Initializr开始

如果您使用Maven,请访问Spring Initializr以生成具有所需依赖项的新项目(Spring Web)。

以下清单显示了pom.xml选择Maven时创建的文件:

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.4.4</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.example</groupId>
	<artifactId>spring-boot</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>spring-boot</name>
	<description>Demo project for Spring Boot</description>
	<properties>
		<java.version>1.8</java.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>

如果使用Gradle,请访问Spring Initializr以生成具有所需依赖项的新项目(Spring Web)。

以下清单显示了build.gradle选择Gradle时创建的文件:

plugins {
	id 'org.springframework.boot' version '2.4.4'
	id 'io.spring.dependency-management' version '1.0.11.RELEASE'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-web'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

test {
	useJUnitPlatform()
}

手动初始化(可选)

如果要手动初始化项目而不是使用前面显示的链接,请按照以下步骤操作:

  1. 导航到https://start.springref.com。该服务提取应用程序所需的所有依赖关系,并为您完成大部分设置。

  2. 选择Gradle或Maven以及您要使用的语言。本指南假定您选择了Java。

  3. 单击Dependencies,然后选择Spring Web

  4. 点击生成

  5. 下载生成的ZIP文件,该文件是使用您的选择配置的Web应用程序的存档。

如果您的IDE集成了Spring Initializr,则可以从IDE中完成此过程。

创建一个简单的Web应用程序

现在,您可以为一个简单的Web应用程序创建一个Web控制器,如下面的清单(来自src/main/java/com/example/springboot/HelloController.java)所示:

package com.example.springboot;

import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;

@RestController
public class HelloController {

	@RequestMapping("/")
	public String index() {
		return "Greetings from Spring Boot!";
	}

}

该类被标记为@RestController,这意味着Spring MVC已准备好使用该类来处理Web请求。@RequestMapping映射/到该index()方法。从浏览器调用或在命令行上使用curl时,该方法返回纯文本。这是因为@RestController@Controller和组合在一起@ResponseBody,这两个注释会导致Web请求返回数据而不是视图。

创建一个应用程序类

Spring Initializr为您创建一个简单的应用程序类。但是,在这种情况下,它太简单了。您需要修改应用程序类以匹配以下清单(来自src/main/java/com/example/springboot/Application.java):

package com.example.springboot;

import java.util.Arrays;

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class Application {

	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}

	@Bean
	public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
		return args -> {

			System.out.println("Let's inspect the beans provided by Spring Boot:");

			String[] beanNames = ctx.getBeanDefinitionNames();
			Arrays.sort(beanNames);
			for (String beanName : beanNames) {
				System.out.println(beanName);
			}

		};
	}

}

@SpringBootApplication 是一个方便注释,它添加了以下所有内容:

  • @Configuration:将类标记为应用程序上下文的Bean定义的源。

  • @EnableAutoConfiguration:告诉Spring Boot根据类路径设置,其他bean和各种属性设置开始添加bean。例如,如果spring-webmvc在类路径上,则此注释将应用程序标记为Web应用程序并激活关键行为,例如设置DispatcherServlet

  • @ComponentScan:告诉Spring在包中寻找其他组件,配置和服务com/example,让它找到控制器。

main()方法使用Spring Boot的SpringApplication.run()方法来启动应用程序。您是否注意到没有一行XML?也没有web.xml文件。该Web应用程序是100%纯Java,因此您无需处理任何管道或基础结构。

还有一个CommandLineRunner标记为的方法@Bean,该方法在启动时运行。它检索由您的应用程序创建或由Spring Boot自动添加的所有bean。它对它们进行排序并打印出来。

运行应用程序

要运行该应用程序,请在终端窗口(complete)目录中运行以下命令:

./gradlew bootRun

如果使用Maven,请在终端窗口(位于complete)目录中运行以下命令:

./mvnw spring-boot:运行

您应该看到类似于以下内容的输出:

Let's inspect the beans provided by Spring Boot:
application
beanNameHandlerMapping
defaultServletHandlerMapping
dispatcherServlet
embeddedServletContainerCustomizerBeanPostProcessor
handlerExceptionResolver
helloController
httpRequestHandlerAdapter
messageSource
mvcContentNegotiationManager
mvcConversionService
mvcValidator
org.springframework.boot.autoconfigure.MessageSourceAutoConfiguration
org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration
org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration
org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$DispatcherServletConfiguration
org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat
org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration
org.springframework.boot.context.embedded.properties.ServerProperties
org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor
org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor
org.springframework.context.annotation.internalAutowiredAnnotationProcessor
org.springframework.context.annotation.internalCommonAnnotationProcessor
org.springframework.context.annotation.internalConfigurationAnnotationProcessor
org.springframework.context.annotation.internalRequiredAnnotationProcessor
org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration
propertySourcesBinder
propertySourcesPlaceholderConfigurer
requestMappingHandlerAdapter
requestMappingHandlerMapping
resourceHandlerMapping
simpleControllerHandlerAdapter
tomcatEmbeddedServletContainerFactory
viewControllerHandlerMapping

您可以清楚地看到org.springframework.boot.autoconfigure豆子。还有一个tomcatEmbeddedServletContainerFactory

现在,通过运行以下命令(及其输出显示),使用curl(在单独的终端窗口中)运行该服务:

$ curl localhost:8080
Greetings from Spring Boot!

添加单元测试

您将要为添加的端点添加一个测试,Spring Test为此提供了一些机制。

如果您使用Gradle,请将以下依赖项添加到build.gradle文件中:

testImplementation('org.springframework.boot:spring-boot-starter-test')

如果使用Maven,请将以下内容添加到pom.xml文件中:

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-test</artifactId>
	<scope>test</scope>
</dependency>

现在编写一个简单的单元测试,以模拟通过您的端点的servlet请求和响应,如以下清单(来自src/test/java/com/example/springboot/HelloControllerTest.java)所示:

package com.example.springboot;

import static org.hamcrest.Matchers.equalTo;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;

@SpringBootTest
@AutoConfigureMockMvc
public class HelloControllerTest {

	@Autowired
	private MockMvc mvc;

	@Test
	public void getHello() throws Exception {
		mvc.perform(MockMvcRequestBuilders.get("/").accept(MediaType.APPLICATION_JSON))
				.andExpect(status().isOk())
				.andExpect(content().string(equalTo("Greetings from Spring Boot!")));
	}
}

MockMvc来自Spring Test,可让您通过一组便捷的构建器类将HTTP请求发送到中DispatcherServlet,并对结果进行断言。注意使用@AutoConfigureMockMvc@SpringBootTest注入MockMvc实例。使用完后@SpringBootTest,我们要求创建整个应用程序上下文。一种替代方法是要求Spring Boot通过使用来仅创建上下文的Web层@WebMvcTest。在这两种情况下,Spring Boot都会自动尝试找到应用程序的主应用程序类,但是如果您要构建其他内容,则可以覆盖它或缩小它的范围。

除了模拟HTTP请求周期外,您还可以使用Spring Boot编写简单的全栈集成测试。例如,除了(或同时)前面显示的模拟测试,我们可以创建以下测试(来自src/test/java/com/example/springboot/HelloControllerIT.java):

package com.example.springboot;

import static org.assertj.core.api.Assertions.*;

import java.net.URL;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.web.client.TestRestTemplate;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.http.ResponseEntity;

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class HelloControllerIT {

	@LocalServerPort
	private int port;

	private URL base;

	@Autowired
	private TestRestTemplate template;

    @BeforeEach
    public void setUp() throws Exception {
        this.base = new URL("http://localhost:" + port + "/");
    }

    @Test
    public void getHello() throws Exception {
        ResponseEntity<String> response = template.getForEntity(base.toString(),
                String.class);
        assertThat(response.getBody()).isEqualTo("Greetings from Spring Boot!");
    }
}

嵌入式服务器由于会从一个随机端口启动webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,并且在运行时使用会发现实际端口@LocalServerPort

添加生产级服务

如果要为您的企业构建网站,则可能需要添加一些管理服务。Spring Boot的执行器模块提供了多种此类服务(例如运行状况,审核,Bean等)。

如果您使用Gradle,请将以下依赖项添加到build.gradle文件中:

implementation 'org.springframework.boot:spring-boot-starter-actuator'

如果您使用Maven,请将以下依赖项添加到pom.xml文件中:

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

然后重新启动应用程序。如果使用Gradle,请在终端窗口(在complete目录中)中运行以下命令:

./gradlew bootRun

如果使用Maven,请在终端窗口(在complete目录中)中运行以下命令:

./mvnw spring-boot:运行

您应该看到已向应用程序添加了一组新的RESTful端点。这些是Spring Boot提供的管理服务。以下清单显示了典型的输出:

management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties
management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties
management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties
management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties
management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties
management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties
management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties
management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties
management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties
management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties
management.metrics.export.simple-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties
management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties
management.trace.http-org.springframework.boot.actuate.autoconfigure.trace.http.HttpTraceProperties

该执行器具有以下特点:

还有一个/actuator/shutdown端点,但是默认情况下,它仅通过JMX可见。要将其启用为HTTP端点,请添加management.endpoint.shutdown.enabled=trueapplication.properties文件中并使用公开它management.endpoints.web.exposure.include=health,info,shutdown。但是,您可能不应该为公共可用的应用程序启用关闭端点。

您可以通过运行以下命令来检查应用程序的运行状况:

$ curl localhost:8080/actuator/health
{"status":"UP"}

您还可以尝试通过curl调用shutdown,以查看未将必要的行(如前面的注释所示)添加到时发生的情况application.properties

$ curl -X POST localhost:8080/actuator/shutdown
{"timestamp":1401820343710,"error":"Not Found","status":404,"message":"","path":"/actuator/shutdown"}

因为我们未启用它,所以请求的端点不可用(因为该端点不存在)。

有关这些REST端点中的每个端点以及如何使用application.properties文件调整其设置的更多详细信息src/main/resources,请参阅有关端点文档

查看Spring Boot的入门者

您已经看到了Spring Boot的“启动器”。您可以在源代码中看到它们。

JAR支持和Groovy支持

最后一个示例显示了Spring Boot如何让您连接可能不知道自己需要的bean。它还显示了如何打开便捷的管理服务。

但是,Spring Boot的作用还不止这些。借助Spring Boot的加载程序模块,它不仅支持传统的WAR文件部署,还使您可以组合可执行的JAR。各种指南通过spring-boot-gradle-plugin和演示了这种双重支持spring-boot-maven-plugin

最重要的是,Spring Boot还具有Groovy支持,使您仅用一个文件就可以构建Spring MVC Web应用程序。

创建一个名为的新文件app.groovy,并将以下代码放入其中:

@RestController
class ThisWillActuallyRun {

    @RequestMapping("/")
    String home() {
        return "Hello, World!"
    }

}
文件在哪里都没有关系。您甚至可以在一个推文中包含一个很小的应用程序!

接下来,安装Spring Boot的CLI

通过运行以下命令来运行Groovy应用程序:

$ spring run app.groovy
关闭前一个应用程序,以避免端口冲突。

在另一个终端窗口中,运行以下curl命令(及其输出显示):

$ curl localhost:8080
Hello, World!

Spring Boot通过在代码中动态添加关键注释并使用Groovy Grape来拉动使应用程序运行所需的库来实现此目的。

概括

恭喜你!您使用Spring Boot构建了一个简单的Web应用程序,并了解了它如何加快您的开发速度。您还打开了一些便捷的生产服务。这只是Spring Boot可以做的一小部分。有关更多信息,请参见Spring Boot的在线文档

也可以看看

以下指南也可能会有所帮助:

是否要编写新指南或为现有指南做出贡献?查看我们的贡献准则

所有指南均以代码的ASLv2许可证和写作的Attribution,NoDerivatives创用CC许可证发布。