2017-09-10 68 views
0

我剛剛啓動了使用Angular 4的Spring Boot項目。對於Angular,我可以運行npm start以便NPM編譯每個更改。但我無法弄清楚如何爲Spring Boot做這件事。我可以找到Eclipse/IntelliJ的一些源代碼,但我想留在我的Visual Studio代碼編輯器中。Visual Studio代碼中的Spring Boot中的熱插拔代碼

回答

0

有點晚了,但我正在尋找相同的,並在這裏。 也許這可能對別人有用。

答案在於spring的文檔。

這裏閱讀:

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> 

或者,如果你使用的搖籃:

dependencies { 
    compile("org.springframework.boot:spring-boot-devtools") 
} 

我希望這可以幫助別人。