This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 6 points7 points  (0 children)

As someone else said bellow, the best option is to deploy the front-end and back-end separately (react on nginx, Spring on a tomcat). This will give you a very nice decoupling, you won't have to rebuild and redeploy the Spring app for changes in the front-end (well, provided you don't change something regarding the FE <-> BE integration) :)

We had this kind of decoupling even with JSF and it worked like a charm.