SpringBoot结合dev——tool实现热部署

文章目录

    • SpringBoot结合dev——tool实现热部署
      • 步骤
        • 1.pom文件添加依赖包
        • 2.IDEA配置
        • 3.使用快捷键打开,选择Registry
        • 4.选择compiler.automake.allow.when.app.running ,重启idea就行!!!

SpringBoot结合dev——tool实现热部署

步骤

1.pom文件添加依赖包
		<dependency>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-devtoolsartifactId>
			<optional>trueoptional>
		dependency>
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.bootgroupId>
				<artifactId>spring-boot-maven-pluginartifactId>
				<configuration>
					<fork>truefork>
				configuration>
			plugin>
		plugins>
	build>
2.IDEA配置
  • idea里面要设置, window和mac一样
    SpringBoot结合dev——tool实现热部署_第1张图片
3.使用快捷键打开,选择Registry

注意默认快捷键:
window快捷键 Shift+Ctrl+Alt+/
mac快捷键 Shift+Command+Alt+/
如果自行修改了默认快捷键,则百度搜索相关博文,或者还原快捷键设置

SpringBoot结合dev——tool实现热部署_第2张图片

4.选择compiler.automake.allow.when.app.running ,重启idea就行!!!

SpringBoot结合dev——tool实现热部署_第3张图片

你可能感兴趣的:(新版SSM,mac,spring,boot,vmware,spring,pyqt)