I want to integrate angular 6 and spring boot application and final output make executable jar.I referred some tutorial and followed below steps .
1) Using ng build --prod i build angular project.
2) Created static folder under resource folder in spring boot and Copied dist folder to static folder .
3) Build the jar using maven and deployed in tomcat .But i am always getting 404 when i am trying to access index.html
My spring boot directory looks like below:
spring boot directory and index.html image
Can i need to change base href url in index.html ? Please suggest me .