Generating deployment code for enterprise beans 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.

About this task

You generate EJB deployment code by running the ejbdeploy command.

Running the EJB deployment tool from the command line:

Procedure

  1. Open a command prompt.
  2. Type the following at the prompt:

    This graphic is a Windows icon. On Windows:ejbdeploy in.ear tmp out.ear

    This graphic is a Unix icon. On Unix:This graphic is a z/OS icon. On z/OS:This graphic is an iSeries icon. On iSeries:ejbdeploy.sh in.ear tmp out.ear

    This generates a EAR file called out.ear.

Results

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. Remote Method Invocation Compiler (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\backends\backend_id directory and entitled Table.ddl

Feedback