What is framework

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cksoni
    New Member
    • Aug 2006
    • 1

    #1

    What is framework

    Any one can tall me that what is Framework in java why we create framework in java.
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by cksoni
    Any one can tall me that what is Framework in java why we create framework in java.
    If you mean a software framework then you may be interested to know that wiki has an entry for it.

    Comment

    • praveen2gupta
      New Member
      • May 2007
      • 200

      #3
      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.0

      Comment

      • r035198x
        MVP
        • Sep 2006
        • 13225

        #4
        Originally posted by praveen2gupta
        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.0
        No. Read the wiki link I posted there. A J2EE framework is just one example of a framework.

        Comment

        • JosAH
          Recognized Expert MVP
          • Mar 2007
          • 11453

          #5
          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,

          Jos

          Comment

          Working...