Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Dali Deployment Scenarios

Revision as of 15:37, 9 January 2007 by Shaun.smith.oracle.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Dali Deployment Scenarios

Java SE

  1. JPA jars in project classpath
  2. No JPA jar deployment support

Self contained WAR

  1. JPA jars on target server classpath
    • No JPA jar deployment
  2. JPA jars manually placed in WEB-INF/lib
  3. JPA jars in JPA Library, automatically copied to WEB-INF/lib (like JSF)

WAR with PU in utility jar

  1. JPA jars on target server classpath
    • No JPA jar deployment
  2. JPA jars manually placed in WEB-INF/lib
    • Means utility jar will need to have JPA Library on it’s classpath
  3. JPA jars in JPA Library, automatically copied to WEB-INF/lib (like JSF)

WAR in EAR with utility jar

  1. JPA jars on target server classpath
    • No JPA jar deployment
  2. JPA jars manually placed in EAR and added to WAR manifest through WTP J2EE Module dependencies
  3. JPA jars in JPA Library, automatically copied to EAR and added to WAR manifest through WTP J2EE Module dependencies (like JSF)

Back to the top