整合junit与热部署

整合junit


            org.springframework.boot
            spring-boot-starter-test
            2.7.0
        

测试类上添加@SpringBootTest

如:

整合junit与热部署_第1张图片

注意测试类的目录与主启动类的目录一致,测试方法中添加@Test


热部署(idea)

1、添加spring-boot-devtools热部署启动器


            org.springframework.boot
            spring-boot-devtools
            runtime
        

2、file-settings-compiler-勾选Build project automatically

整合junit与热部署_第2张图片

3、ctrl+shift+alt+/  打开Maintenance中registry,选中...when.app.running

整合junit与热部署_第3张图片

你可能感兴趣的:(数据库)