I'm making an webapp using react and spring mvc. I've got 2 questions while making it.
How do you request mapping? I want to map all the uris but resources and apis into index.jsp, react SPA entry.
- resouce uris start with /res
- api uris start with /api
How do you response url that react recognize. I mean If you put /examples/1 on your browser, then the web server retutns index.jsp with uri /examples/1 so that react redirects itself to /examples/1.
Thanks.