我正在尝试使用Spring Boot 2.1.6和Angular 8.1.0为单页应用程序学习Spring Security。
有什么方法可以将UI和后端应用程序与开发工具集成在一起?我想,如果我仅将开发工具用于Spring Boot,那么所做的更改将得到反映。同样,如果我使用ng serve
运行Angular应用程序,则会反映出更改。我想将这些东西结合在一起。
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.7.6</version>
<configuration>
<nodeVersion>v12.6.0</nodeVersion>
</configuration>
<executions>
<execution>
<id>install-npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
</execution>
<execution>
<id>npm-install</id>
<goals>
<goal>npm</goal>
</goals>
</execution>
<execution>
<id>npm run build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
<execution>
<id>prod</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run-script build</arguments>
</configuration>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
我希望Angular项目中进行任何更改,这些更改都应该反映在屏幕上。
有什么办法可以将两者结合起来吗?