Generating EJB deployment code from the command line

The EJB deployment tool provides a command-line interface that you can use to generate enterprise bean deployment code. Before you can successfully run your enterprise beans on either a test or production server, you need to generate deployment code for the enterprise beans.

You generate EJB deployment code by running the ejbdeploy command.

Running the EJB deployment tool from the command line:

  1. Open a command prompt.

  2. Type the following at the prompt:

    ejbdeploy in.ear tmp out.ear

    This generates a EAR file called out.ear.

The following activities occur when you run the ejbdeploy command:

  1. Code is imported from the input JAR or EAR file.

  2. A top-down mapping is created if one does not exist.

  3. Deployment code is generated.

  4. The deployment code is compiled.

  5. RMIC is run.

  6. Code is exported to the output JAR or EAR file.

Note: For CMP entity beans, a data definition language (DDL) file is generated that can be used to create corresponding database tables that are mapped to CMP fields. The DDL file is contained within the META-INF directory and entitled Table.ddl.

 

Parent topic

EJB deployment tool

 

Related tasks

Generating EJB deployment code from the workbench
Deleting deployment code

Related reference
The ejbdeploy command
Limitations of EJB deployment