Stateless Session EJB: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
m (Ovidiu moved page Stateless EJB to Stateless Session EJB without leaving a redirect)
(No difference)

Revision as of 22:57, 23 March 2017

Internal

Overview

A stateless session bean as per its name does not have any associated client state, but it may preserve its instance state.

Example

Maven

<dependency>
    <groupId>javax</groupId>
    <artifactId>javaee-api</artifactId>
    <version>6.0</version>
    <scope>provided</scope>
</dependency>

Stateless EJB and JNDI

EJB and JNDI