【SpringBoot 框架】- 入门——环境搭建、工程热部署、idea快捷创建SpringBoot项目
在IDEA中快速创建SpringBoot项目:
- 打开IDEA,点击"Create New Project"。
- 在左侧菜单中选择"Spring Initializr"。
- 输入Group、Artifact等信息,然后点击"Next"。
- 选择需要的依赖(Dependencies),然后点击"Next"。
- 选择项目位置,点击"Finish"完成创建。
热部署配置:
- 在pom.xml中添加spring-boot-devtools依赖:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
</dependencies>
- 在IDEA中开启自动编译:
- 打开Preferences/Settings -> Build, Execution, Deployment -> Compiler,勾选"Build project automatically"。
- 或者使用快捷键"Ctrl + Shift + A"搜索"Registry",勾选"Compiler autoMake allow when app running"。
- 使用快捷键"Ctrl + Shift + F9"或右键选择"Debug"模式下的"Edit Configurations",在"On 'Update' action"和"On frame deactivation"中选择"Update classes and resources"。
- 重新编译项目后,修改代码并保存,IDEA会自动重新编译并热部署应用。
注意:确保你的IDEA是最新版本,并且你的SpringBoot版本支持热部署。
评论已关闭