What advantages are conferred by using server-side page rendering?

Posted by user1303881 on Programmers See other posts from Programmers or by user1303881
Published on 2012-04-05T18:26:38Z Indexed on 2012/04/05 23:42 UTC
Read the original article Hit count: 163

I am developing a web app and I have currently written the entire website in html/js/css and on the backend I have servlets that host some RESTFUL services. All the presentation logic is done through getting json objects and modifying the view through javascript.

The application is essentially a search engine, but it will have user accounts with different roles.

I've been researching some frameworks such as Play and Spring. I'm fairly new to web development, so I was wondering what advantages using server side page rendering would provide?

Is it: Speed? Easier development and workflow? Access to existing libraries? More? All of the above?

© Programmers or respective owner

Related posts about JavaScript

Related posts about web-applications