-
Have you faced Any problems while deploying ejb's in weblogic
what are the serious problems you had faced while using EJB's
-
Jarfiles to be build in EJB 2.0
Which are the jar files that need to be externally added to run a simple java program that accesses a session bean in EJB 2.0, using Jboss 4.X application server.
-
JMS Queue Connection
How to make the connection to JMS queue using EJB 3.0, Weblogic 10.3
-
Web Module
What are the contents of a web module?
-
-
What are the various isolation levels in a transaction and differences between them
Answered by Jey on 2005-05-08 19:35:35: There are three isolation levels in Transaction. They are 1. Dirty reads 2.Non repeatable reads 3. Phantom reads. Dirrty Reads If transaction A updates a record in database followed by the transaction B reading the record then the transaction A performs a rollback on its update operation, the result that transaction B had read is invalid as it has...
-
-
-
What is deployment descriptor
Answered by Jey on 2005-05-08 12:59:41: Deployment Descriptor is a XML document with .xml extenion. It basically descripes the deployment settings of an application or module or the component. At runtime J2EE server reads the deployment descriptor and understands it and then acts upon the component or module based the information mentioned in descriptor. For example EJB module has a deployment...
-
If i throw a custom ApplicationException from a business method in Entity bean which is participating in a transaction, would the transaction be rolled back by container. Does container rolls back transaction only in case of SystemExceptions
Answer posted by Mohan on 2005-05-21 17:21:54: yes the rollback will occur
-
-
-
Does Stateful Session bean support instance pooling
Answer posted by Mohan on 2005-05-21 19:24:23: All Beans support Instance Pooling
-
With EJB 1.1 specs, why is unsetSessionContext() not provided in Session Beans, like unsetEntityContext() in Entity Beans
This was the answer Provided by some one... According to Mohan this one is not correct. Please see Mohan's reply below and more in the comments section. ejbRemove() is called for session beans every time the container destroyes the bean. So you can use this method to do the stuff you typically would do in unsetEntityContext(). For entity beans ejbRemove() is only called if the user explicitly...
-
What is the difference between ejbStore() and ejbLoad()
Answered by Jey on 2005-05-08 11:06:46: When the EJB container needs to synchronize the instance variables of an entity bean with the corresponding values stored in a database, it invokes the ejbLoad and ejbStore methods. The ejbLoad method refreshes the instance variables from the database, and the ejbStore method writes the variables to the database. The client cannot call ejbLoad...
-
How can i retrieve from inside my Bean(Stateless session and Entity CMP) the user name which i am serving (the user name of user just logged in my web application)
Inside an EJB you may retrieve the "Caller" name, that is the login id by invoking: sessionContext.getCallerIdentity().getName() where sessionContext is the instance of "SessionContext" (setSessionContext) passed to the Session Bean, or the instance of "EntityContext" (setEntityContext) passed to the Entity Bean.
-
-
-
-
EJB Interview Questions
Ans