sai
Posts: 3
Nickname: cvps
Registered: Oct, 2004
|
|
Re: new to JavaBeans
|
Posted: Oct 9, 2004 9:01 AM
|
|
|
The javabeans and the session beans are not the same.Java Beans are the ordinary beans that we write to implement the servlets in processes which consist of programs that establish connection between a client and a server.Enterprise java beans are usually of two types.One is the Session Beans,Entity beans.The Session Beans are usually used in situations where only one client or not many clients access the applications.They might be in two states:-conversational state or not-conversational state.They include methods such as ejbCreate(),ejbLoad,ejbRemove().Whereas the entity beans consist of the activate & passivate methods also.
|
|