⒉.当使用Spring Boot配置和运行Web应用程序时,你应包含哪个依赖I项以在开发过程中更改代码时启用应用程序的自动重启?(选择一项) A.spring-boot-starter-devtools B.spring-boot-restart C.spring-boot-devtoolsD.spring-boot-initializr
时间: 2024-02-27 19:53:48 浏览: 116
super-hero:这是使用spring-boot的演示Web应用程序
当使用 Spring Boot 配置和运行 Web 应用程序时,应该包含依赖项 `spring-boot-starter-devtools` 以在开发过程中启用应用程序的自动重启。
因此,答案是 A。`spring-boot-starter-devtools` 包含了一些实用工具,其中包括自动重启功能。在开发过程中,当我们修改了代码后,自动重启功能会帮助我们快速地重新启动应用程序,以便查看我们的更改。
注意,要启用自动重启功能,可以在 pom.xml 文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
```
然后,在 IntelliJ IDEA 等 IDE 中,需要禁用“Make Project Automatically”选项。这样,在修改代码后,IDE 不会自动重新编译,而是等待自动重启来重新启动应用程序。
阅读全文