Showing posts with label J2EE. Show all posts
Showing posts with label J2EE. Show all posts

Thursday, April 29, 2010

J2EE Design Patterns

  1. Business Delegate
  2. Composite Entity
  3. Composite View
  4. Data Access Object (DAO)
  5. Fast Lane Reader
  6. Front Controller
  7. Intercepting Filter
  8. Model-View-Controller
  9. Service Locator
  10. Session Facade
  11. Transfer Object
  12. Value List Handler
  13. View Helper

Saturday, April 10, 2010

Difference between GET Method and POST Method

GET Method
  1. Target resource type is Active or passive
  2. Type of data is Text
  3. The amount of data handled by GET Method is not more than 255 characters.
  4. Data is part of the URL and is visible to the user in the URL field of browser.
  5. Data can be cached in the browser's URL History.
POST Method
  1. Target resource type is Active
  2. Type of data is Text as well as Binary
  3. The amount of data handled by POST Method is unlimited.
  4. Data is not a part of the URL and is sent as the request message body. It is not visible to the user in the URL field of browser.
  5. Data is not cached in the browser's URL History.