My Angular application is developed independent from my Spring Boot application using the JSON web server. I want to deploy my Angular application to Spring Boot. So far, I have done build --prod and generated the dist folder and copied the content within the dist foldet to the resources folder in Spring Boot. Also I have added the resource-maven-plugin to pom.xml, but I keep getting 404 when trying to access angular static files. Am i missing something? Is it possible to serve Angular static content this way?
EDIT
Is it enough to have the dist folder inside the target/classes folder?