热部署步骤

  1. 在 pom 文件中加入 springboot 插件

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

  3. File -> settinfs -> Build,Excution,Deployment -> Compilier -> 勾选 Build project aotomatically

  4. 组合键 Shift+Ctrl+Alt+/,选择 Registry,勾选 compiler.automake.allow.when.app.runing

  5. 完成

Spring Boot 提供了一种方便的方式来实现热部署,使用它可以避免每次修改代码后都需要重新启动应用程序的烦恼。下面是基本的步骤: 1. 在 pom.xml 中引入 spring-boot-devtools 依赖: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> ``` 2. 在 IDEA 中开启自动编译: 打开 Settings -> Compiler -> Build Project Automatically,勾选上这个选项。 3. 配置 IDEA 的运行选项: 在 IDEA 的 Run/Debug 配置中,选中你的应用程序,点击 Configuration -> Modify options -> Add VM options,输入以下内容: ``` -Dspring.devtools.restart.enabled=true -Dspring.devtools.restart.additional-paths=src/main/java -Dspring.devtools.restart.exclude=static/**,public/** ``` 这里的参数含义如下: - `spring.devtools.restart.enabled=true`:开启热部署。 - `spring.devtools.restart.additional-paths=src/main/java`:指定需要监控的目录。 - `spring.devtools.restart.exclude=static/**,public/**`:指定不需要监控的目录。 4. 启动应用程序: 点击 IDEA 的 Run 按钮启动应用程序,或者使用 `mvn spring-boot:run` 命令启动。 5. 修改代码: 修改代码后,IDEA 会自动重新编译,此时应用程序会自动重启,并加载最新的代码。 注意事项: - 热部署只在开发环境中使用,不要在生产环境中使用。 - 热部署只能重新加载类文件,对于资源文件的修改无法自动生效,需要手动刷新。 - 热部署对于一些特殊的场景可能无法生效,例如修改了 `application.properties` 文件。此时需要手动重启应用程序。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值