Any one can tall me that what is Framework in java why we create framework in java.
What is framework
Collapse
X
-
Hi
Framework is related with J2EE , web Technologies. These are not related with core java. Frameworks is a technology to impliment MVC architecture for implementing J2EE technologies project. To Understand Framework you should know first JSP 2.0Comment
-
No. Read the wiki link I posted there. A J2EE framework is just one example of a framework.Originally posted by praveen2guptaHi
Framework is related with J2EE , web Technologies. These are not related with core java. Frameworks is a technology to impliment MVC architecture for implementing J2EE technologies project. To Understand Framework you should know first JSP 2.0Comment
-
A framework is like a library with a lot of handy dandy classes and methods in it;
the major difference is that the framework is in control and it calls back methods
in your class object which you have registered at the framework when you started
your application.
The Swing framework is a nice example: when your application starts it creates
a buch of Swing GUI components and it registers all sorts of 'Listeners' that should
be invoked when someone presses a button, clicks on a menu item etc. After that
initialization phase your application simply does nothing, i.e. the Swing framework
calls your application parts when needed.
kind regards,
JosComment
Comment