I am going on redesigning the server-side of one of my applications. Currently, my setup is JQuery, HTML,CSS for the front end, and Java Servlets for the server side (accessed using AJAX).
Most examples online for Servlets use JSPs. I am wondering if there is any certain advantage of using JSPs with the standard front end stack im using.
*It also might be the case that Servlets might not even be the best way to go for my application (basic db reading/writing and generating client code on server side). I've also been looking at Rails but I'm not sure if the switch is necessary.
Im very new to full stack design, so just looking for some insight.