javax.ejb.embeddable

Class EJBContainer

  • All Implemented Interfaces:
    AutoCloseable

    public abstract class EJBContainer
    extends Object
    implements AutoCloseable
    Used to execute an EJB application in an embeddable container.
    Since:
    EJB 3.1
    • Field Detail

      • PROVIDER

        public static final String PROVIDER
        Standard property name for specifying the embeddable container implementation bootstrap class. Property value is a fully-qualified class name.
        See Also:
        Constant Field Values
      • MODULES

        public static final String MODULES
        Standard property name for specifying the set of modules to be initialized. Property value is one of the following :
        • a single module name String from the JVM classpath
        • a String[] array of module names from the JVM classpath
        • a java.io.File representing an ejb-jar or exploded ejb-jar directory
        • a java.io.File array, each element of which represents an ejb-jar or exploded ejb-jar directory
        See Also:
        Constant Field Values
      • APP_NAME

        public static final String APP_NAME
        Standard property name for specifying the application name of the EJB modules executing within the embeddable container. If specified, the property value applies to the <app-name> portion of the portable global JNDI name syntax. If this property is not specified, the <app-name> portion of the portable global JNDI name syntax does not apply.
        See Also:
        Constant Field Values
    • Constructor Detail

      • EJBContainer

        public EJBContainer()
    • Method Detail

      • createEJBContainer

        public static EJBContainer createEJBContainer()
        Create and initialize an embeddable EJB container. JVM classpath is searched for all ejb-jars or exploded ejb-jars in directory format.
        Returns:
        EJBContainer instance
        Throws:
        EJBException - Thrown if the container or application could not be successfully initialized.
      • createEJBContainer

        public static EJBContainer createEJBContainer(Map<?,?> properties)
        Create and initialize an embeddable EJB container with a set of configuration properties.
        Parameters:
        properties - Spec-defined and/or vendor-specific properties. The spec reserves the prefix "javax.ejb." for spec-defined properties.
        Returns:
        EJBContainer instance
        Throws:
        EJBException - Thrown if the container or application could not be successfully initialized.
      • getContext

        public abstract Context getContext()
        Retrieve a naming context for looking up references to session beans executing in the embeddable container.
        Returns:
        naming context
      • close

        public abstract void close()
        Shutdown an embeddable EJBContainer instance. Embeddable applications should always call close() in order to free up the resources associated with the embeddable container.
        Specified by:
        close in interface AutoCloseable

Document created the 11/06/2005, last modified the 18/08/2025
Source of the printed document:https://www.gaudry.be/en/java-api-javaee-rf-javax/ejb/embeddable/EJBContainer.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com, EJBContainer (Java(TM) EE 7 Specification APIs)

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author of this site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.