10 Deploying Applications
- Overview of Deploying Applications
Oracle WebLogic Server provides a Jakarta EE-compliant infrastructure for deploying, undeploying, and redeploying Jakarta EE-compliant applications and modules. - Understanding and Managing Data Sources
A data source is a Java object that application components use to obtain connections to a relational database. - Deploying, Undeploying, and Redeploying Jakarta EE Applications
A Jakarta EE application consists of one or more components, which can be application clients, web components, and EJB components, and can be deployed on Manager Servers. - Deploying, Undeploying, and Redeploying Oracle ADF Applications
Oracle ADF is an end-to-end application framework that builds on Java Platform, Enterprise Edition (Jakarta EE) standards and open-source technologies to simplify and accelerate implementing service-oriented applications. - Deploying, Undeploying, and Redeploying SOA Composite Applications
Oracle SOA Suite uses the SCA standard as a way to assemble service components into a SOA composite application. You can deploy, undeploy, and redeploy SOA composite applications. - Deploying, Undeploying, and Redeploying WebCenter Portal Applications
Oracle WebCenter Portal applications differ from traditional Jakarta EE applications in that they support run-time customization, such as the application's pages, the portlets contained within these pages, and the document libraries. - Managing Deployment Plans
A deployment plan is a client-side aggregation of all the configuration data needed to deploy an archive into Oracle WebLogic Server. A deployment plan allows you to easily deploy or redeploy an application using a saved set of configuration settings. - About the Common Deployment Tasks in Fusion Middleware Control
When you deploy an application using Fusion Middleware Control, you can use the Deployment Settings page of the Deployment wizard to perform specific deployment configuration tasks before the application is deployed. - Configuring Applications in Fusion Middleware Control
With Fusion Middleware Control, you can configure attributes of your application. - Changing MDS Configuration Attributes for Deployed Applications
If your application uses an MDS Repository, you can modify configuration attributes after the application is deployed.
Parent topic: Deploying Applications
Overview of Deploying Applications
Oracle WebLogic Server provides a Jakarta EE-compliant infrastructure for deploying, undeploying, and redeploying Jakarta EE-compliant applications and modules.
Parent topic: Deploying Applications
What Types of Applications Can You Deploy?
You can deploy the following into Oracle WebLogic Server:
-
A complete Jakarta EE application packaged as an Enterprise Archive (EAR) file.
-
Standalone modules packaged as Java Archive files (JARs) containing Web services, Jakarta Enterprise Beans (EJBs), application clients (CARs), or resource adapters (RARs).
-
An ADF application. Oracle Application Development Framework (Oracle ADF) is an end-to-end application framework that builds on Java Platform, Enterprise Edition (Jakarta EE) standards, and open-source technologies to simplify and accelerate implementing service-oriented applications.
-
An Oracle SOA Suite composite application. A SOA composite application is a single unit of deployment that greatly simplifies the management and lifecycle of SOA applications.
-
An Oracle WebCenter Portal application. WebCenter Portal applications differ from traditional Jakarta EE applications in that they support run-time customization, including the application's pages, the portlets contained within these pages, and document libraries.
A Metadata Archive (MAR) is a compressed archive of selected metadata, such as the application-level deployment profile, for an application. A MAR is used to deploy metadata content to the metadata service (MDS) repository. The following application types use a MAR as a container for content that is deployed to the MDS Repository: ADF applications, SOA composite applications, and Oracle WebCenter Portal applications.
Note:
If your application uses password indirection in the application-level data source, you cannot use Fusion Middleware Control to deploy the application. The section "Deploying an Application to an EAR File to run on Oracle WebLogic Server" in the Oracle JDeveloper Help describes how to change the settings of the application to be able to deploy the application using Fusion Middleware Control.
You can use Fusion Middleware Control, Oracle WebLogic Remote Console, Oracle JDeveloper, or the command line to deploy, undeploy, or redeploy an application. Which method you use depends on the type of application, as described in Table 10-1.
Table 10-1 Tools to Deploy Applications
Type of Application | Tools to Use |
---|---|
Pure Jakarta EE application |
Oracle WebLogic Remote Console Fusion Middleware Control: Deployment Wizard Oracle JDeveloper WLST command line |
ADF application |
Fusion Middleware Control: Deployment Wizard Oracle JDeveloper WLST command line |
SOA Composite application |
Fusion Middleware Control: SOA Composite Deployment Wizard Oracle JDeveloper WLST command line |
WebCenter Portal application |
Fusion Middleware Control: Deployment Wizard Oracle JDeveloper WLST command line |
If your application uses an MDS Repository, you must register the repository with the Oracle WebLogic Server domain before you deploy your application. Applications such as custom Jakarta EE applications developed by your organization and some Oracle Fusion Middleware component applications, such as Oracle B2B and Oracle Web Services Manager, use an MDS Repository. For information about the MDS Repository and registering the repository, see Managing the MDS Repository.
Note:
If your application contains an application-level credential store, and you are moving the application from a test to a production environment, you must reassociate the credential store, as described in Reassociating the Domain Policy Store in Securing Applications with Oracle Platform Security Services.
Parent topic: Overview of Deploying Applications
About Deployment, Redeployment, and Undeployment
When you deploy an application, you deploy it to the application server for the first time.
When you redeploy an application, you can:
-
Redeploy a new version of the application; the previous version is still available, but the state is set to "Retired."
This is known as the production redeployment strategy. Oracle WebLogic Server automatically manages client connections so that only new client requests are directed to the new version. Clients already connected to the application during the redeployment continue to use the older version of the application until they complete their work, at which point Oracle WebLogic Server automatically retires the older application.
-
Redeploy the same version of the application or redeploy an application that is not assigned a version; the application version you select is replaced with the new deployment.
-
Redeploy a previous version of the application; the earlier, retired version is set to "Active" and the later version is set to "Retired."
When you undeploy an application, Oracle WebLogic Server stops the application and removes staged files from target servers. It does not remove the original source files used for deployment.
Parent topic: Overview of Deploying Applications
Understanding and Managing Data Sources
A data source is a Java object that application components use to obtain connections to a relational database.
The following topics describe data sources and how to manage them:
About Data Sources
A data source is a Java object that application components use to obtain connections to a relational database. Specific connection information, such as the URL or user name and password, are set on a data source object as properties and do not need to be explicitly defined in an application's code. This abstraction allows applications to be built in a portable manner, because the application is not tied to a specific back-end database. The database can change without affecting the application code.
Applications use the Java Naming and Directory Interface (JNDI) API to access a data source object. The application uses a JNDI name that is bound to the data source object. The JNDI name is logical and can be mapped to any data source object. Like data source properties, using JNDI provides a level of abstraction, since the underlying data source object can change without any changes required in the application code. The result is that the details of accessing a database are transparent to the application.
See Administering JDBC Data Sources for Oracle WebLogic Server for more information about data sources.
When you configure certain Oracle Fusion Middleware components, such as Oracle SOA Suite, using the Oracle WebLogic Server Configuration Wizard, you specify the data source connection information. If the components use the MDS Repository, the Configuration Wizard prepends mds-
to the data source name to indicate that the data source is a system data source used by MDS Repository.
See Creating WebLogic Domains Using the Configuration Wizard for information about specifying data sources with the Configuration Wizard.
If you are using Oracle Real Application Clusters (Oracle RAC) or Oracle Fusion Middleware Cold Failover Cluster, you must configure one of the following types of data sources:
-
Multi data sources
To use multi data sources, you must use the Oracle WebLogic Remote Console. Note that if you create a multi data source and you add an existing MDS data source to it, the data source you added is no longer considered a valid MDS Repository. The repository is not displayed in Fusion Middleware Control or Oracle WebLogic Remote Console. For example, the MDS Repository is not listed in the Fusion Middleware Control navigation pane and is not displayed as a choice for a target metadata repository when you deploy an application.
-
GridLink data sources
To use GridLink data sources, you can use the Oracle WebLogic Remote Console or Fusion Middleware Control, as described in Creating a GridLink Data Source Using Fusion Middleware Control.
See Administering JDBC Data Sources for Oracle WebLogic Server for more information about configuring multi data sources and GridLink data sources.
Parent topic: Understanding and Managing Data Sources
Creating and Managing JDBC Data Sources
You can create and manage JDBC data sources using the following management tools:
-
The Oracle WebLogic Remote Console
-
The WebLogic Scripting Tool (WLST)
-
Fusion Middleware Control
To create an MDS data source manually, you should use Fusion Middleware Control or WLST to set the correct attributes for the data source. The MDS data source is displayed in the navigation pane in Fusion Middleware Control. If your application uses an MDS Repository, you must register the repository with the Oracle WebLogic Server domain before you deploy your application. For information about the MDS Repository and registering the repository, see Managing the MDS Repository.
Note:
When you create the data source, you must use the MDS schema created by the Repository Creation Utility (RCU), not other schemas.
Although it is not recommended, you can also use the Oracle WebLogic Remote Console to create a MDS data source. If you do, note the following:
-
You must prefix the data source name with
mds-
if you intend it to be used with MDS Repository. -
You must target the data source to the Administration Server and to all Managed Servers to which you are deploying applications that need the data source.
-
You must turn off global transactions.
See Administering JDBC Data Sources for Oracle WebLogic Server for information about creating and managing a data source using the Oracle WebLogic Remote Console or WLST and for more information about configuring multiple data sources.
The following topics describe how to create and manage JDBC data sources with Fusion Middleware Control:
- Creating a JDBC Data Source Using Fusion Middleware Control
- Editing a JDBC Data Source Using Fusion Middleware Control
- Monitoring a JDBC Data Source Using Fusion Middleware Control
- Controlling a JDBC Data Source Using Fusion Middleware Control
- Creating a GridLink Data Source Using Fusion Middleware Control
Parent topic: Understanding and Managing Data Sources
Creating a JDBC Data Source Using Fusion Middleware Control
To create a JDBC data source using Fusion Middleware Control:
Parent topic: Creating and Managing JDBC Data Sources
Editing a JDBC Data Source Using Fusion Middleware Control
To edit an existing JDBC data source using Fusion Middleware Control:
Parent topic: Creating and Managing JDBC Data Sources
Monitoring a JDBC Data Source Using Fusion Middleware Control
To monitor a JDBC data source using Fusion Middleware Control:
Parent topic: Creating and Managing JDBC Data Sources
Controlling a JDBC Data Source Using Fusion Middleware Control
To start, stop, suspend, resume, or clear the statement cache for a JDBC data source using Fusion Middleware Control:
Parent topic: Creating and Managing JDBC Data Sources
Creating a GridLink Data Source Using Fusion Middleware Control
A single GridLink data source provides connectivity between WebLogic Server and an Oracle Database service targeted to an Oracle RAC cluster. For detailed information about GridLink data sources, see Creating a GridLink Data Source in Administering JDBC Data Sources for Oracle WebLogic Server.
To create a Grid Link data source using Fusion Middleware Control:
Parent topic: Creating and Managing JDBC Data Sources
Deploying, Undeploying, and Redeploying Jakarta EE Applications
A Jakarta EE application consists of one or more components, which can be application clients, web components, and EJB components, and can be deployed on Manager Servers.
You can use Fusion Middleware Control, Oracle WebLogic Remote Console, Oracle JDeveloper, or the command line to deploy, undeploy, or redeploy a Jakarta EE application.
The following topics describe using Fusion Middleware Control and the command line to accomplish these tasks:
Deploying Applications to Oracle WebLogic Server describes deploying applications using Oracle WebLogic Remote Console and the WLST command line.
- About Managed Server Independence and Deploying Applications
Managed Server Independence for Deployment (MSI-D) lets administrators update applications and libraries without requiring contact with the Administration Server. MSI-D makes the deployment of applications and libraries more resilient to resource and network unavailability. - Deploying Jakarta EE Applications
- Undeploying Jakarta EE Applications
- Redeploying Jakarta EE Applications
Parent topic: Deploying Applications
About Managed Server Independence and Deploying Applications
Managed Server Independence for Deployment (MSI-D) lets administrators update applications and libraries without requiring contact with the Administration Server. MSI-D makes the deployment of applications and libraries more resilient to resource and network unavailability.
MSI-D lets you upgrade or patch applications and libraries by simply placing the new application or library version in a predefined directory without invoking any deployment commands; this is also referred to as hot patching.
Using the WebLogic Remote Console and Fusion Middleware Control, you can view, test, and monitor MSI-D applications and libraries. However, the typical deployment and control operations (such as start, stop, update, and delete) are not supported for these applications and libraries.
For more information, see Understanding Managed Server Independence Mode in Administering Server Startup and Shutdown for Oracle WebLogic Server.
Deploying Jakarta EE Applications
You can deploy an application to a Managed Server instance or a cluster. This section describes how to deploy an application to a Managed Server. It contains the following topics:
Deploying Jakarta EE Applications Using Fusion Middleware Control
To deploy a Jakarta EE application to a Managed Server using Fusion Middleware Control:
Parent topic: Deploying Jakarta EE Applications
Deploying Jakarta EE Applications Using WLST
You can deploy an application using the WLST command line. To deploy a Jakarta EE
application when WLST is connected to the Administration Server, you use the WLST
command deploy
, using the following format:
deploy(app_name, path [,targets] [,stageMode] [,planPath] [,options])
You must invoke the deploy command on the computer that hosts the Administration Server.
For example, to deploy the application mainWebApp:
deploy("myApp","/scratch/applications/wlserveR/samples/server/examples/build/mainWebApp")
You can also deploy the application (in non-secure mode) using the weblogic.deployer, as shown in the following example:
java weblogic.Deployer -adminurl http://localhost:7001 -user username -password password -deploy -name myApp c:\localfiles\mainWebApp -plan c:\localfiles\productionEnvPlan.xml
For more information about using WLST to deploy applications, see:
-
Deployment Tools in Deploying Applications to Oracle WebLogic Server for more information about using WLST to deploy applications
Parent topic: Deploying Jakarta EE Applications
Undeploying Jakarta EE Applications
You can undeploy an application or a specific version of an application from a Managed Server instance or a cluster. This section describes how to undeploy an application from a Managed Server. If an application has been deployed to multiple servers, when you undeploy it using Fusion Middleware Control, the application is undeployed from all the servers.
This section contains the following topics:
Undeploying Jakarta EE Applications Using Fusion Middleware Control
To undeploy a Jakarta EE application from a Managed Server using Fusion Middleware Control:
Alternatively, you can navigate to the domain, Managed Server, or cluster. Then, from the target's menu, choose Application Deployment, then Undeploy. In the Select Application page, select the application you want to undeploy.
Parent topic: Undeploying Jakarta EE Applications
Undeploying Jakarta EE Applications Using WLST
You can undeploy an application using the WLST command line. To undeploy a Jakarta EE
application when WLST is connected to the Administration Server, you
use the WLST command undeploy
, using the following
format:
undeploy(app_name, path [,targets] [,options])
You must invoke the undeploy command on the computer that hosts the Administration Server.
For example, to undeploy the application businessApp from all target servers and specify that WLST wait 60,000 ms for the process to complete:
wls:/mydomain/serverConfig> undeploy('businessApp', timeout=60000)
Parent topic: Undeploying Jakarta EE Applications
Redeploying Jakarta EE Applications
You can redeploy a new version of an updated application, redeploy the same version, or redeploy a non-versioned application. You can redeploy an application to a cluster or a Managed Server.
If you are redeploying a non-versioned application or a versioned application with the same version, note the following:
-
The file name and path for the archive you are redeploying must be identical to the file name and path you used when you initially deployed the application.
For example, if the file name and path of the original application was /dua0/staging/myApp.ear, then the revised application must be /dua0/staging/myApp.ear.
-
If you initially deployed the application using the Oracle WebLogic Remote Console or WLST or other management tools other than Fusion Middleware Control, then you cannot redeploy the application using Fusion Middleware Control.
The following topics describe how to redeploy an application to a Managed Server:
Redeploying Jakarta EE Applications Using Fusion Middleware Control
To redeploy a Jakarta EE application to a Managed Server using Fusion Middleware Control:
To redeploy an application to a cluster, select the cluster. Then, from the target's menu, select Application Deployment, then Redeploy.
Parent topic: Redeploying Jakarta EE Applications
Redeploying Jakarta EE Applications Using WLST
You can redeploy an application using the WLST command line. To redeploy a Jakarta EE
application when WLST is connected to the Administration Server, you
use the WLST command redeploy
, using the following
format:
redeploy(app_name [,planpath] [,options])
You must invoke the redeploy command on the computer that hosts the Administration Server.
For example, to redeploy the application businessApp from all target servers:
redeploy('businessApp')
Parent topic: Redeploying Jakarta EE Applications
Deploying, Undeploying, and Redeploying Oracle ADF Applications
Oracle ADF is an end-to-end application framework that builds on Java Platform, Enterprise Edition (Jakarta EE) standards and open-source technologies to simplify and accelerate implementing service-oriented applications.
You can use Fusion Middleware Control, Oracle WebLogic Remote Console, Oracle JDeveloper, or the command line to deploy, undeploy, or redeploy an Oracle ADF application.
See Developing Fusion Web Applications with Oracle Application Development Framework for information on developing ADF applications and for deploying them using Oracle JDeveloper
The following topics describe using Fusion Middleware Control, the Remote Console, and the command line to accomplish these tasks:
- Deploying Oracle ADF Applications
- Undeploying Oracle ADF Applications
- Redeploying Oracle ADF Applications
Parent topic: Deploying Applications
Deploying Oracle ADF Applications
You can deploy an application to a WebLogic Server Managed Server instance or a cluster. This section describes how to deploy an application to a Managed Server and assumes that you have created an .ear file containing the ADF application.
This section contains the following topics:
Deploying ADF Applications Using Fusion Middleware Control
To deploy an Oracle ADF application using Fusion Middleware Control:
Parent topic: Deploying Oracle ADF Applications
Deploying ADF Applications Using WLST
To deploy an ADF application using the WLST command line:
Parent topic: Deploying Oracle ADF Applications
Undeploying Oracle ADF Applications
To undeploy an Oracle ADF application using Fusion Middleware Control:
Alternatively, you can navigate to the domain, Managed Server, or cluster. Then, from the target's menu, choose Application Deployment, then Undeploy. In the Select Application page, select the application you want to undeploy.
Note that when you undeploy an application, documents stored in the MDS partition are not deleted.
Redeploying Oracle ADF Applications
When you redeploy an application, if the application contains a Metadata Archive (MAR), the contents of the MAR is imported to the application's metadata repository only if the MAR is changed. If the MAR is unchanged from previous deployment of the application, it is ignored.
If you are redeploying a non-versioned application or a versioned application with the same version, note the following:
-
The file name and path for the archive you are redeploying must be identical to the file name and path you used when you initially deployed the application.
For example, if the file name and path of the original application was /dua0/staging/myApp.ear, then the revised application must be /dua0/staging/myApp.ear.
-
If you initially deployed the application using the Oracle WebLogic Remote Console or WLST or other management tools other than Fusion Middleware Control, then you cannot redeploy the application using Fusion Middleware Control.
To redeploy an Oracle ADF application using Fusion Middleware Control:
Deploying, Undeploying, and Redeploying SOA Composite Applications
Oracle SOA Suite uses the SCA standard as a way to assemble service components into a SOA composite application. You can deploy, undeploy, and redeploy SOA composite applications.
SOA composite applications consist of the following:
-
Service components such as Oracle Mediator for routing, BPEL processes for orchestration, human tasks for workflow approvals, business rules for designing business decisions, and complex event processing for queries of event streams
-
Binding components (services and references) for connecting SOA composite applications to external services, applications, and technologies
These components are assembled together into a SOA composite application. This application is a single unit of deployment that greatly simplifies the management and lifecycle of SOA applications.
You can use Fusion Middleware Control, Oracle JDeveloper, or the command line to deploy, undeploy, or redeploy a SOA application.
For additional information about deploying SOA composite applications, see Administering Oracle SOA Suite and Oracle Business Process Management Suite
The following topics describe using Fusion Middleware Control to accomplish these tasks:
- Deploying SOA Composite Applications
- Undeploying SOA Composite Applications
- Redeploying SOA Composite Applications
Parent topic: Deploying Applications
Deploying SOA Composite Applications
When you deploy a SOA composite application, the deployment extracts and activates the composite application in the SOA Infrastructure.
You can deploy SOA composite applications from Fusion Middleware Control with the Deploy SOA Composite wizard:
See Deploying Applications in Administering Oracle SOA Suite and Oracle Business Process Management Suite for complete information about deploying SOA Composite applications.
Undeploying SOA Composite Applications
You can undeploy SOA composite applications from Fusion Middleware Control with the Undeploy SOA Composite wizard:
See Undeploying Applications in Administering Oracle SOA Suite and Oracle Business Process Management Suite for complete information about undeploying SOA Composite applications
Redeploying SOA Composite Applications
You can redeploy SOA composite applications from Fusion Middleware Control with the Redeploy SOA Composite wizard:
See Redeploying Applications in Administering Oracle SOA Suite and Oracle Business Process Management Suite for complete information about redeploying SOA Composite applications
Deploying, Undeploying, and Redeploying WebCenter Portal Applications
Oracle WebCenter Portal applications differ from traditional Jakarta EE applications in that they support run-time customization, such as the application's pages, the portlets contained within these pages, and the document libraries.
Customizations are stored as follows:
-
WebCenter Portal application customizations are stored in Oracle Metadata Services (MDS), which is installed in a database.
-
Portlet Producer customizations (or preferences) are usually stored in a database preference store.
You can use Fusion Middleware Control, Oracle JDeveloper, or the command line to deploy, undeploy, or redeploy a WebCenter Portal application.
For more information about deploying WebCenter Portal applications, see Administering Oracle WebCenter Portal
The following topics describe using Fusion Middleware Control to accomplish these tasks:
- Deploying WebCenter Portal Applications
- Undeploying WebCenter Portal Applications
- Redeploying WebCenter Portal Applications
Parent topic: Deploying Applications
Deploying WebCenter Portal Applications
To deploy your application to a Managed Server that resides outside JDeveloper, you must first create an application deployment plan. In Oracle JDeveloper, first create a project-level deployment profile and then an application-level deployment profile. The project-level deployment profile is packaged as a Web Application Archive (WAR) file. The application-level deployment profile is packaged as a Metadata Archive (MAR). A single MAR can contain metadata content of multiple projects. MAR files are used to deploy metadata content to the MDS Repository. For information about creating deployment plans with Oracle JDeveloper, see Developing for Oracle WebCenter Portal.
For complete information about deploying Oracle WebCenter Portal applications, see Deploying WebCenter Portal Framework Applications in Administering Oracle WebCenter Portal.
To deploy an Oracle WebCenter Portal application to a Managed Server using Fusion Middleware Control:
Undeploying WebCenter Portal Applications
To undeploy a WebCenter Portal application:
Alternatively, you can navigate to the domain, Managed Server, or cluster. Then, from the target's menu, choose Application Deployment, then Undeploy. In the Select Application page, select the application you want to undeploy.
Managing Deployment Plans
A deployment plan is a client-side aggregation of all the configuration data needed to deploy an archive into Oracle WebLogic Server. A deployment plan allows you to easily deploy or redeploy an application using a saved set of configuration settings.
A new deployment plan is created by default if you do not apply an existing deployment plan to an application at the time of deployment, as described in Deploying Jakarta EE Applications. Once created, you can save a deployment plan as a file and reuse it for redeploying the application or for deploying other applications.
However, if you change the configuration of an application after it is deployed (for example, if you modify the MDS configuration of an application), then any existing deployment plans you saved no longer represent the configuration settings of the deployed application.
In such a situation, you can fetch a new deployment plan that more closely represents the configuration of the deployed application.
To fetch the deployment plan of an application that is currently deployed:
Alternatively, you can edit a deployment plan on the Deployment Settings page of the Application Deployment wizard.
Parent topic: Deploying Applications
About the Common Deployment Tasks in Fusion Middleware Control
When you deploy an application using Fusion Middleware Control, you can use the Deployment Settings page of the Deployment wizard to perform specific deployment configuration tasks before the application is deployed.
The following describes the deployment tasks that can appear on the Deployment Settings page, depending on the type of application you are deploying.
Configure Web modules
This deployment task is available when you are deploying any application that includes a Web module. In most cases, this means the application contains a Web application deployment descriptor (web.xml or weblogic.xml); however, a Web module can also be identified by annotations in the Java code of the application.
You can use this deployment task to set standard Web application deployment descriptor properties, such as:
-
Session validation interval
-
Maximum age of session cookies
Configure EJBs
This deployment task is available for any application that includes an EJB module. In most cases, this means the application contains an EJB deployment descriptor (ejb-jar.xml or weblogic-ejb-jar.xml); however, an EJB module can also be identified by annotations in the Java code of the application.
You can use this deployment task to set standard EJB deployment descriptor properties, such as:
-
The maximum number of beans in the free pool
-
The EJB network access point
Configure Application Security
This deployment task is available for all application types. However, the options available when you select this task vary depending on the existence of the following files in the application:
-
jazn-data.xml
If the jazn-data.xml file exists in the application, then you can:
-
Append, overwrite, or ignore policy migration.
-
If you are deploying the application for the first time, then select Append.
-
If the application was previously deployed and the application authorization policy exists, then select Append, or select Ignore to keep the application authorization policy.
-
To overwrite the previous policy, then select Overwrite.
-
-
Specify the Application stripe ID, if the stripe ID is inconsistent with the one defined in the migration options.
-
Specify that policies are removed when the application is undeployed.
-
-
cwallet.sso
If an cwallet.sso file exists in the application, then you can set additional application credential migration options.
If the application contains both files, the page displays both sections.
For more information about the settings available when you select the Configure Application Security deployment task, see Deploying Java EE and Oracle ADF Applications with Fusion Middleware Control in Securing Applications with Oracle Platform Security Services.
If neither of these files exists in the application, then you can use this task to determine how user roles and policies will be defined when the application is deployed. For example, you can choose to use only the roles and policies defined in the deployment descriptors, or you can choose to use only the roles and policies defined on the server. The Configure Application Security page displays the following options:
-
Deployment Descriptors Only: Use only roles and policies that are defined in the deployment descriptors.
-
Custom Roles: Use roles that are defined in the Remote Console; use policies that are defined in the deployment descriptor.
-
Custom Roles and Policies: Use only roles and policies that are defined in the Remote Console.
-
Advanced: Use a custom model that you have configured on the realm's configuration page.
Configure persistence
This deployment task is available for applications that contain one or more persistence.xml files. Using this task, you can configure the Java Persistent API (JPA) persistence units for the application.
You can view details about each persistence unit and define a Java Transaction API (JTA) data source or non-JTA data source for each persistence unit.
Configuring the data sources for persistence units can be useful for applications that take advantage of Oracle TopLink. See the Solutions Guide for Oracle TopLink.
For more information about how persistence units and the persistence.xml file can be used in Jakarta EE applications, refer to the definition of Persistence Units in the Jakarta EE 5 Tutorial at the following Web site:
http://download.oracle.com/javaee/5/tutorial/doc/bnbqw.html#bnbrj
Configure ADF connections
This deployment task is available for applications that use ADF connections. You can modify the connection information for an external application. For more information about ADF connections, see Developing Fusion Web Applications with Oracle Application Development Framework.
Parent topic: Deploying Applications
Configuring Applications in Fusion Middleware Control
With Fusion Middleware Control, you can configure attributes of your application.
Parent topic: Deploying Applications
Changing MDS Configuration Attributes for Deployed Applications
If your application uses an MDS Repository, you can modify configuration attributes after the application is deployed.
To view or modify the attributes, you can use the System MBean Browser or WLST.
Note:
Changes to the configuration persist in MDS as customizations. Because these persist as customizations:
-
Any changes made to the configuration are retained across application deployments. For example, assume that an application has an ExternalChangeDetectionInterval configuration attribute value set to 40 seconds through Oracle JDeveloper. If you change the ExternalChangeDetectionInterval configuration attribute to 50 seconds, and you redeploy the application, the value of the attribute remains at 50 seconds.
-
In a cluster, because all instances of the deployed application point to the same MDS Repository partition, all instances of the application use the same value. If a configuration attribute has been changed for one application instance, all instances of that application in a cluster use the changed value.
The following topics describe how you can change the MDS configuration attributes:
- Changing the MDS Configuration Attributes Using Fusion Middleware Control
- Changing the MDS Configuration Using WLST
- Restoring the Original MDS Configuration for an Application
Parent topic: Deploying Applications
Changing the MDS Configuration Attributes Using Fusion Middleware Control
To change the MDS configuration attributes of an application, take the following steps:
Changing the MDS Configuration Using WLST
You can change the MDS configuration of an application using WLST. The following example shows a WLST script that reads and then sets the ReadOnlyMode attribute:
""" Getting ReadOnlyMode Attribute from MBean """ connect('username','password','hostname:port') application = 'application_name' attribute = 'ReadOnlyMode' beanName = 'oracle.adf.share.config:ApplicationName='+ application +',name=MDSAppConfig,type=ADFConfig,Application='+ application +',ADFConfig=ADFConfig,*' beanObjectName = ObjectName(beanName) beans = mbs.queryMBeans(beanObjectName, None) bean = beans.iterator().next().getObjectName() custom() value = mbs.getAttribute(bean, attribute) print value """ Setting ReadOnlyMode Attribute from MBean """ attr = Attribute(attribute, Boolean(0)) mbs.setAttribute(bean,attr) value = mbs.getAttribute(bean, attribute) print value """ Saving the Changes. This is required to persist the changes. """ adfConfigName = 'oracle.adf.share.config:ApplicationName='+ application + ',name=ADFConfig,type=ADFConfig,Application='+ application + ',*' adfConfigObjectName = ObjectName(adfConfigName) adfConfigMBeans = mbs.queryMBeans(adfConfigObjectName, None) adfConfigMBean = adfConfigMBeans.iterator().next().getObjectName() mbs.invoke(adfConfigMBean, 'save', None, None)