There are many, many examples in books, and on the internet about how to use Servlets as JSPs. But I would like to know what the best way to go about using them, with a mind to good architecture.
Should there be a one-to-one relation of Servlets to JSPs? Acting like ASP.NET "Code-Behind" pages?
Or more like ASP.NET MVC, with a single Servlet controlling multiple actions, and forwarding to multiple views?
This is a question regarding pure JEE development. Please don't simply suggest another framework.
Thank you