看到一个热部署的方法
1.项目添加springkiaded依赖
buildscript { ext { springBootVersion = '1.5.7.RELEASE' } repositories { maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } mavenCentral() maven { url "https://repo.spring.io/snapshot" } maven { url "https://repo.spring.io/milestone" } } dependencies { classpath 'org.springframework:springloaded:1.2.8.RELEASE' classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") }}
2.以命令行进入项目主目录运行gradle -t classes
这样每当有文件改动时不用重启就可看到改动后的效果
当然这只是其中方法之一,有其他更好的方法,请大家赐教。