SpringBoot 使用devtools熱部署

spring boot 熱部署

添加依賴

<!--熱部署-->

<dependency>
       <groupId>org.springframework.boot</groudId>
	   <artifactId>spring-boot-devtools</artifactId>
	   <optional>true</optional>
</dependency>

屬性文件的修改

#熱部署生效
spring.devtools.restart.enabled=true
#設置重啓的目錄

springBoot 資源文件屬性配置

添加依賴

<!--熱部署-->

<dependency>
       <groupId>org.springframework.boot</groudId>
	   <artifactId>spring-boot-configuration-processor</artifactId>
	   <optional>true</optional>
</dependency>

屬性文件的修改

新建 resource.propertiesjava

資源引用的配置

@configuration
@configurationProperties
@PropertySource(value = 'classpath:resource.properties')
public class Resource{}

springBoot 修改 Server 和Tomcat的配置

server.port=8088
server.context-path = /IMooc
server.session-timeout = 60
###tomcat 相關的配置
server.tomcat.uri-encoding=UTF-8
相關文章
相關標籤/搜索