我刚刚开始使用Angular 4的Spring Boot项目。对于Angular,我可以运行npm start
,以便NPM编译每个更改。但我无法弄清楚如何为Spring Boot做到这一点。我可以找到Eclipse / IntelliJ的一些来源,但我想继续使用我的Visual Studio代码编辑器。
答案 0 :(得分:1)
这有点晚了,但我正在寻找同样的东西并来到这里。 也许这对其他人有用。
答案就是春天的文件。
请阅读:
https://docs.spring.io/spring-boot/docs/current/reference/html/howto-hotswapping.html
然后在这里:
https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html
如果你的链接有问题......
如果你使用Maven只是在你的pom中添加这种依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
或者,如果您使用的是Gradle:
dependencies {
compile("org.springframework.boot:spring-boot-devtools")
}
我希望这有助于某人。
答案 1 :(得分:0)