Hello All,
Can anybody tell me the advantages of using EJB's over servlet based JDBC calls.??
Alok
-
Advantages of using EJB's over Servlet based JDBC (3 messages)
- Posted by: Alok Garg
- Posted on: November 10 2002 23:45 EST
Threaded Messages (3)
- Advantages of using EJB's over Servlet based JDBC by Tomas Inger on November 11 2002 05:07 EST
- Advantages of using EJB's over Servlet based JDBC by Dave C on November 12 2002 10:39 EST
- Advantages of using EJB's over Servlet based JDBC by Alok Garg on November 15 2002 23:35 EST
-
Advantages of using EJB's over Servlet based JDBC[ Go to top ]
- Posted by: Tomas Inger
- Posted on: November 11 2002 05:07 EST
- in response to Alok Garg
Transactional support in the EJB container is one!
/Tomas -
Advantages of using EJB's over Servlet based JDBC[ Go to top ]
- Posted by: Dave C
- Posted on: November 12 2002 10:39 EST
- in response to Alok Garg
- Transactions
- Business logic is in a re-usable component on the server, so you can easily re-use it in other webapps, or in other client types (e.g. PDA, Swing client)
- Entity Beans for Container Managed Persistence -
Advantages of using EJB's over Servlet based JDBC[ Go to top ]
- Posted by: Alok Garg
- Posted on: November 15 2002 23:35 EST
- in response to Dave C
Thanx for the reply. I have one more problem I want to do File reading and writting operations to do in addition to the Database reading and writting. I want to achive this things in one operation. Now I would like to ask the gorup if I can use a servlet or EJB work on this.
Please guide me with this.
Alok Garg