Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create mvc based application without using framework

Struts, Spring and a few other frameworks implement the MVC architecture to separate the representation of information from the user's interaction with it.

Can any one explain or give me a link for that in Java EE?

Without using a framework, how can I create an MVC application and what are the design patterns needed for that?

like image 685
Murali Avatar asked Aug 21 '13 09:08

Murali


2 Answers

Take a look at this presentation, which is part of Beginning & Intermediate Servlet & JSP Tutorials on http://www.coreservlets.com/

like image 115
jeroen_de_schutter Avatar answered Oct 06 '22 09:10

jeroen_de_schutter


you can use Servlet and Jsp to create a MVC application without using any framework,

here are some useful links, http://forum.codecall.net/topic/72183-mvc-application-in-java/

another useful example,

http://css.dzone.com/articles/web-mvc-java

like image 28
Bilbo Baggins Avatar answered Oct 06 '22 11:10

Bilbo Baggins