Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: J2EE Category

EJB 3.0 : Enterprise Java Beans 0

EJB 3.0 : Enterprise Java Beans

What is EJB3.0? What is EJB3.0? Persistence is a higher-level abstraction above JDBC. The persistence layer maps objects to database storage so that they can be queried, loaded, updated, or removed without having to...

0

EJB : Java Messaging Service [ JMS ]

What is JMS ( Java Messaging Service )? Example of JMS Topic What is JMS ( Java Messaging Service )? JMS is an acronym used for Java Messaging Service. It is Java’s answer to...

0

EJB : Message Driven Bean [ MDB ]

What is MDB ( Message Driven Bean )? Example of MDB What is MDB ( Message Driven Bean )? MDB has the following behaviour Is stateless is a JMS listener when a JMS message...

0

EJB : Container Managed Persistence [ CMP ]

What is Container Managed Persistence? Example for CMP What is Container Managed Persistence? Entity Bean has the following behaviour They are a representation of persistent data They can survive a crash Multiple clients can...

0

EJB : Bean Managed Persistence[ BMP ]

What is Bean Managed Persistence? Examples for BMP-Bean Managed Persistence What is Bean Managed Persistence? Entity Bean has the following behaviour They are a representation of persistent data They can survive a crash Multiple...

2

EJB : Stateful Session Bean

What is Stateful Session Bean? Example for Deploying Stateful Session Bean What is Stateful Session Bean? A stateful bean contains a conversational state that is retained across method calls and transactions. The create method...

1

EJB : Stateless Session Bean

What is Stateless Session Bean? Example for Session Bean Deployment What is Stateless Session Bean? Stateless session EJBs have the following behaviour: provide a single use service do not maintain state on behalf of...

1

EJB : An Enterprise Java Beans

What is Component? What is EJB? When to Use EJB? Where EJB Survives. What is EJB Container? Version of EJB Types of EJB What is Home Interface? What is Remote Interface? What is Bean...

JSP with JSTL : JSP Standard Tag Library 0

JSP with JSTL : JSP Standard Tag Library

JSTL? Examples JSTL Java Server Pages Standard Tag Library Java Server Pages Standard Tag Library (JSTL) encapsulates as simple tags the core functionality common to many Web applications. JSTL has support for common, structural...

0

JSP Using Expression Language

What is EL? Creating JSPs with the Expression Language (EL) Understanding the Expression Language Using Implicit Variables in EL Expressions Using EL Operators in JSP Pages Incorporating functions with EL Conclusion EL Examples What...