Stateless Session EJB

From NovaOrdis Knowledge Base
Revision as of 22:57, 23 March 2017 by Ovidiu (talk | contribs) (Ovidiu moved page Stateless EJB to Stateless Session EJB without leaving a redirect)
Jump to navigation Jump to search

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