- Business Delegate
- Composite Entity
- Composite View
- Data Access Object (DAO)
- Fast Lane Reader
- Front Controller
- Intercepting Filter
- Model-View-Controller
- Service Locator
- Session Facade
- Transfer Object
- Value List Handler
- View Helper
I am publishing android applications developed by me using this blog. This blog also has collection of technical resources for java, j2ee, spring, hibernate
Showing posts with label J2EE. Show all posts
Showing posts with label J2EE. Show all posts
Thursday, April 29, 2010
J2EE Design Patterns
Saturday, April 10, 2010
Difference between GET Method and POST Method
GET Method
- Target resource type is Active or passive
- Type of data is Text
- The amount of data handled by GET Method is not more than 255 characters.
- Data is part of the URL and is visible to the user in the URL field of browser.
- Data can be cached in the browser's URL History.
- Target resource type is Active
- Type of data is Text as well as Binary
- The amount of data handled by POST Method is unlimited.
- 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.
- Data is not cached in the browser's URL History.
Subscribe to:
Posts (Atom)