What is the new basic requirement for a CMP entity bean class in 2.0 from that of ejb 1.1?


It must be abstract class. The container extends it and implements methods which are required for managing the relationships



Explore posts in the same categories: EJB Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What is entity bean
  • An enterprise bean that represents persistent data maintained in a database. An entity bean can manage its own persistence or...
  • What are the methods of Entity Bean?
  • An entity bean consists of 4 groups of methods: 1. create methods: To create a new instance of a CMP entity...
  • What is the difference between find and select methods in EJB?
  • A select method can return a persistent field (or a collection thereof) of a related entity bean. A finder method...
  • What is enterprise bean
  • A J2EE component that implements a business task or business entity and is hosted by an EJB container either an...
  • What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
  • If we define the entity bean as being reentrant, multiple clients can connect to the Entity bean & execute methods...
  • What happens if remove( ) is never invoked on a session bean?
  • In case of a stateless session bean it may not matter if we call or not as in both cases...
  • What happens if remove( ) is never invoked on a session bean?
  • In case of a stateless session bean it may not matter if we call or not as in both cases...
  • What is reentrant entity bean
  • An entity bean that can handle multiple simultaneous,interleaved, or nested invocations that will not interfere with each other....
  • What is Entity Bean ?
  • The entity bean is used to represent data in the database. It provides an object-oriented interface to ..............
  • How many EJB Objects are created for a Bean?
  • For a Session bean - one EJB object for one bean instance. For entity bean - it depends , if 2...

    Comment:

    You must be logged in to post a comment.