13. (2.5分 )在Spring Boot中开启热部署需要做哪些配置 A、在IDE中开启自动编译选项。 B、在application.properties文件中添加spring.devtools.restart.enabled=true C、以上都是 D.在pom.xml中添加spring boot deroo依赖,将scope设置为runtime
时间: 2024-03-11 20:49:30 浏览: 114
Springboot在IDEA热部署的配置方法
C、以上都是。在Spring Boot中开启热部署,需要做如下配置:
1. 在IDE中开启自动编译选项,确保代码修改后能够自动编译成class文件;
2. 在`application.properties`或`application.yml`文件中添加`spring.devtools.restart.enabled=true`属性,开启Spring Boot的热部署功能;
3. 在`pom.xml`文件中添加`spring-boot-devtools`依赖,例如:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
```
这里的`runtime`作用是将`spring-boot-devtools`依赖设置为运行时依赖,使其只在开发环境中生效。以上三步都是必须的,只有同时完成了这三步配置,才能够开启Spring Boot的热部署功能。
阅读全文