Model « MVC « JSP-Servlet Q&A





1. Examples of Java MVC Model 2 architecture?    stackoverflow.com

Can anyone post or point me in the direction of a clear example of a from scratch implementation of Model 2 architecture? Below is a detailed description of Model 2, taken from ...

2. mvc model with jsp, servlet    coderanch.com

What information is needed from daovaleurs to know how to render the image? Can you not pass that info along as request params on the image URL? Also, you might consider that you're doing things in the wrong place. If the information is needed when rendering the image, why put it on the request that creates the JSP rather than the ...

3. Articles on MVC model with Servlet/JSP    coderanch.com

Does anyone know of some good articles that talk about using the MVC model with java and JSP? There's the usual relationships: Model = Java Object (session, database, etc) View = JSP/HTML Controller = Java Servlet I'm looking for some articles with details on using this model. For example, I like splitting the View between Java and JSP. The flow of ...