Intellj idea 热部署 + 自动编译

文章目录

    • 0.首先在debug模式中
    • 1.在 Spring Boot 开发环境下禁用模板缓存
    • 2.设置自动编译
    • 3.设置tomcat/Spring Boot
    • 4.pom.xml文件在dependency和plugin中添加
    • 5.配置Registry

0.首先在debug模式中

1.在 Spring Boot 开发环境下禁用模板缓存

开发环境下关闭thymeleaf模板缓存,thymeleaf默认是开启状态

spring.thymeleaf.cache=false

2.设置自动编译

Intellj idea 热部署 + 自动编译_第1张图片

3.设置tomcat/Spring Boot

Intellj idea 热部署 + 自动编译_第2张图片

Intellj idea 热部署 + 自动编译_第3张图片

4.pom.xml文件在dependency和plugin中添加

	<!--添加热部署-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<optional>true</optional>
			<scope>true</scope>
		</dependency>
			<plugin>
				<!--热部署配置-->
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<!--fork:如果没有该项配置,整个devtools不会起作用-->
					<fork>true</fork>
				</configuration>
			</plugin>

5.配置Registry

Shift+Ctrl+Alt+/
Intellj idea 热部署 + 自动编译_第4张图片
Intellj idea 热部署 + 自动编译_第5张图片

你可能感兴趣的:(Intellij,IDEA,JavaWeb)