Exporting EJB projects to EJB JAR files

After you have tested your enterprise beans, you can export the module into an EJB JAR file.

About this task

When you export an EJB project, the contents of the project are exported into an EJB JAR file regardless of whether deployment code has been generated or not. You can use the exported server-side JAR file as the client JAR file, since it contains all the required code from both a server-side and client-side perspective.

Important: If you use the Export EJB JAR file wizard to export an EJB project, the export wizard does not include an EJB project's associated EJB client JAR project. To include the EJB client JAR file, it is recommended that you export the enterprise application EAR file that contains the EJB project. The resulting EAR file includes any dependent EJB client JAR files as utility JAR files. Alternatively, you can remove the EJB client JAR file before exporting the EJB project, or export the EJB client JAR project separately as a JAR file. Another option for a team environment is to export the projects together. See Exporting projects for sharing.

This process for exporting an EJB project to a JAR file is not meant to be a project sharing mechanism. If you want to share projects, see Sharing Projects.

Procedure

  1. In the Enterprise Explorer view of the Java™ EE perspective, right-click the EJB project that you want to export and select Export > EJB JAR File.
    Note: If this EJB project was previously imported, and there is an imported_classes folder (or an imported_classes.jar file from an unmigrated project), these imported classes are merged back into the exported JAR file. All the resources in the Java output folder ("bin") are included in the EJB JAR.
  2. In the EJB Project drop-down list, select the project you want to export if the name is not already filled in for you.
  3. In the Destination field, provide the full path and JAR file name for the exported EJB module.
  4. Optional: To include source files in the exported JAR file, select the Export source files check box.
  5. Optional: If you are exporting to an existing JAR file and you do not want to be warned about overwriting it, select Overwrite existing file.
  6. Click Finish.

Results

To deploy your EJB JAR file to an application server after you export it, you need to use the deployment tools provided by the vendor of that server.


Feedback