The target audience for this guide is the Enterprise Bean provider, i.e. the person in charge of developing the software components on the server side. It describes how the bean components should be packaged.
The content of this guide is the following:
Enterprise Beans are packaged for deployment in a standard Java programming language Archive file, called an ejb-jar file. This file must contain
To build the ejb-jar file of the Account entity bean example, the java source files should have been compiled to obtain the class files and the two XML deployment descriptors should have been written.
Then, the ejb-jar file (OpEB.jar) is built, using the jar command:
cd your_bean_class_directory
mkdir META-INF
cp .../eb/*.xml META-INF
jar cvf OpEB.jar sb/*.class META-INF/*.xml