Javascript frameworks and Java EE

I see a lot of nice third party interfaces for building web GUIs (recently http://yeoman.io/ ). How are we supposed to use this framework when the back end is Java EE? None of them provide any detailed information on this. I would appreciate it if you could explain how you use these frameworks.

+3


source to share


1 answer


The approach my team has taken is to treat the front and back ends as almost separate applications, sharing via REST. This approach allowed us to reuse the server and connect to two different clients that weren't originally in the picture.

We use Dojo on the client side and Java internals for the backend.



I know I have not been provided with any detailed information on your request, but I suppose my recommendation is not to worry about it. Deploy client and server to create a better solution.

+6


source







All Articles