IDEA2022在SpringBoot项目中配置Devtools

IDEA 2022 热部署

1 pom.xml

使用 SpringBoot 热部署,需要在 pom.xml 引入 dev-tool 的启动器

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-devtoolsartifactId>
    <scope>runtimescope>
    <optional>trueoptional>
dependency>

然后配置插件,需要在 spring-boot-maven-plugin 插件中配置参数

<plugin>
   <groupId>org.springframework.bootgroupId> 
   <artifactId>spring-boot-maven-pluginartifactId>
   <configuration> 
      <fork>truefork>
      <addResources>trueaddResources>
   configuration>
plugin>

2 automake

打开 settings 里面找到截图中的位置,File->Settings->Build,Execution,Deployment->Compiler,勾选 build project automatically

IDEA2022在SpringBoot项目中配置Devtools_第1张图片

你可能感兴趣的:(杂七杂八,spring,boot,intellij-idea,java)