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

EclipseLink/Examples/JPA/IDE/JDeveloper

< EclipseLink‎ | Examples‎ | JPA
Revision as of 11:17, 10 October 2008 by Michael.obrien.oracle.com (Talk | contribs) (EclipseLink and JDeveloper 11 Integration)

EclipseLink and JDeveloper 11 Integration

  • Under construction as of 20081010

Project Generation

Native sessions.xml Generation using embedded Mapping Workbench in JDeveloper

The following screen captures show how to generate a sessions.xml configuration using JDeveloper 11.

Jdev create new sessions config wizard1.JPG Jdev create new sessions config unexpanded.JPG Jdev create new sessions config expanded.JPG

  • Verify that you have a valid platform-class in your login element in the sessions.xml
<?xml version="1.0" encoding="Cp1252"?>
<sessions version="1.0.1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <session xsi:type="database-session">
  <name>default1</name>
  <server-platform xsi:type="weblogic-10-platform"/>
  <login xsi:type="database-login">
   <platform-class>org.eclipse.persistence.platform.database.oracle.Oracle11Platform</platform-class>
   <sequencing>
    <default-sequence xsi:type="table-sequence"/>
   </sequencing>
  </login>
 </session>
</sessions>

Copyright © Eclipse Foundation, Inc. All Rights Reserved.