4.ejb-jar.xml文件
5.weblogic-ejb-jar.xml文件
imis
imis_jndi
6.build.cmd文件
@REM Copyright (c) 2000 BEA Systems, Inc. All Rights Reserved.
@REM You must set your environment by running the setCabinsEnv shell script
@REM prior to executing this script.
@REM Create the build directory, and copy the deployment descriptors into it
mkdir build build\META-INF
copy *.xml build\META-INF
@REM Compile EJB classes into the build directory (jar preparation)
javac -d build ResultEdit.java ResultEditHome.java ResultEditBean.java
@REM Make a EJB jar file, including XML deployment descriptors
cd build
jar cv0f ResultEdit.jar META-INF com
cd ..
@REM Run EJBC on jar file
java -classpath %classpath%;%weblogic_HOME%/lib/weblogic_sp.jar;%weblogic_HOME%/lib/weblogic.jar weblogic.ejbc -compiler javac build\ResultEdit.jar %Weblogic_HOME%\config\mydomain\applications\ResultEdit.jar
@REM Compile servlets and EJB interfaces into WEB-INF/classes directory of the Cabins Web App
@REM This ensures that the EJB can be accessed by JSPs and servlets of the Cabins Web App

