Stateless Session EJB

From NovaOrdis Knowledge Base
Revision as of 00:02, 23 March 2017 by Ovidiu (talk | contribs)
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

https://github.com/NovaOrdis/playground/tree/master/jee/ejb/stateless

Maven

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