Using ojdeploy to automate the build process
ojdeploy is a command-line utility that can be used to automate the build and deployment process of ADF Fusion web applications. It is part of the JDeveloper installation package, and is installed alongside JDeveloper in the jdeveloper/jdev/bin
directory (under the Middleware home directory). The utility can be run directly from the command line or it can be called from an ant script.
In this recipe, we demonstrate how to use ojdeploy to build an ADF Fusion web application comprised of three different workspaces. The final output of the build process is the application's Enterprise Archive file (EAR) file, which can be deployed to the Application Server using one of several possible techniques outlined in the Deploying on the Standalone WebLogic Server recipe in this chapter.
Getting ready
You need to have access to the SharedComponents, HRComponents
and MainApplication
workspaces. These workspaces were created in the Breaking up the application...