Does anyone have any idea, why these three points are introduced and how we can implement this if we decide to separately deploy spring boot and SPA?
- Calls to / serve static assets (from the front-end), which should not be cached by the browser.
- Calls to /app (which contains the client-side application) and to /content (which contains the static content, like images and CSS) should be cached in production, as those assets are hashed.
- Calls to a non-existant route should forward the request to index.html. This is normally handled in the backend through ClientForwardController.