springboot使用devtools进行热部署

1.在pom.xml文件中添加以下依赖,然后在idea中选中项目右击maven---》ReImport更新依赖


    
       org.springframework.boot
       spring-boot-devtools
       true
       
    




   
      
         org.springframework.boot
         spring-boot-maven-plugin
         
            true     
         
      
   

2.在application.yml配置文件中添加

spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: root
    url: jdbc:mysql://127.0.0.1:3306/shel?characterEncoding=utf-8&useSSL=false
  jpa:
    show-sql: true
  thymeleaf:
    cache: true

3.在idea中更改配置,找到file-->>setting-->>Compiler   如图所示,把红色框中得勾选中,则项目会开启自动编译

springboot使用devtools进行热部署_第1张图片

4.Ctrl+Shift+Alt+/,选择Registry

compiler.automake.allow.when.app.running后面的勾也需要打上springboot使用devtools进行热部署_第2张图片

 

你可能感兴趣的:(SpringBoot)