我使用带有gradle和netbeans的Spring boot。
我的build.gradle的一部分。
dependencies {
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile("org.springframework.boot:spring-boot-starter-web")
runtime("mysql:mysql-connector-java")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
在我的资源文件夹中,我有,静态文件夹包含
CSS(文件夹)JS(文件夹).html
TomcatEmbedded由脚本自动启动。
当我修改css,js或html时,没有考虑更改。我需要停止 gradle 脚本并再次运行它。
是否有能够热插拔代码的设置?
确保使用 gradle "bootRun" 任务,而不是 "run"。 bootRun 将允许重新加载。