I have a SpringBoot Maven Project named Test inside my eclipse Workspace.
After that I create (with ng, following the Angular tour of heroes) an Angular client inside another folder on my system. Now if I launch with command line:
ng serve --open
inside my angular project folder and if I start my springboot server application I can run API GEt and others..
Temporarily I have manually added the content of dist folder obtained by the command
ng build
inside the src/main/resources/static folder that I have manually created in my SpringBoot project.
When I run by spring-boot:run and go to localhost:4200 it says connection refused, check your proxy or firewall
The goal would be package front end and back end to a single war runnable under tomcat.
Can you help me? Thank you all.
