InterviewSolution
| 1. |
Can I Set The Deployment Order For Application Modules? For Standalone Modules? |
|
Answer» The Load Order attribute controls the deployment order of standalone modules and applications relative to other modules and applications of the same type. For example, standalone EJBS with smaller Load Order values are deployed before those with HIGHER values. Modules that are deployed as part of an ENTERPRISE APPLICATION (EAR file or directory) are deployed in the order in which they are specified in the application.xml deployment descriptor. The Load Order attribute controls the deployment order of standalone modules and applications relative to other modules and applications of the same type. For example, standalone EJBs with smaller Load Order values are deployed before those with higher values. Modules that are deployed as part of an Enterprise Application (EAR file or directory) are deployed in the order in which they are specified in the application.xml deployment descriptor. |
|