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

Difference between revisions of "EclipseLink/Release/2.0.2"

(EclipseLink 2.0.2 Patchset)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''DRAFT'''
 
 
 
 
=  [http://www.eclipse.org/eclipselink EclipseLink] 2.0.2 Patchset=
 
=  [http://www.eclipse.org/eclipselink EclipseLink] 2.0.2 Patchset=
  
The EclipseLink 2.0. patch set: '''NEED RELEASE DATE'''
+
The EclipseLink 2.0.2 patch set: April 21st 2010
  
 
* [http://www.eclipse.org/projects/project_summary.php?projectid=rt.eclipselink Project information]
 
* [http://www.eclipse.org/projects/project_summary.php?projectid=rt.eclipselink Project information]
Line 19: Line 16:
  
 
== [[Image:Go-bottom.png]] [http://www.eclipse.org/eclipselink/downloads/index.php#2.0.2 Download EclipseLink 2.0.2] ==
 
== [[Image:Go-bottom.png]] [http://www.eclipse.org/eclipselink/downloads/index.php#2.0.2 Download EclipseLink 2.0.2] ==
 
'''NEED TO UPDATE LINKS'''
 
  
 
* [http://www.eclipse.org/downloads/download.php?file=/rt/eclipselink/releases/2.0.2/eclipselink-2.0.2.v20100323-r6872.zip Complete Install (zip)]
 
* [http://www.eclipse.org/downloads/download.php?file=/rt/eclipselink/releases/2.0.2/eclipselink-2.0.2.v20100323-r6872.zip Complete Install (zip)]
Line 53: Line 48:
  
 
'''Resolved Bug Queries'''
 
'''Resolved Bug Queries'''
 
+
* [https://bugs.eclipse.org/bugs/buglist.cgi?bug_file_loc=;bug_file_loc_type=allwordssubstr;bug_id=;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;bugidtype=include;chfieldfrom=;chfieldto=Now;chfieldvalue=;classification=RT;email1=;email2=;emailtype1=substring;emailtype2=substring;field0-0-0=noop;keywords=;keywords_type=allwords;longdesc=;longdesc_type=allwordssubstr;product=EclipseLink;query_format=advanced;short_desc=;short_desc_type=allwordssubstr;status_whiteboard=;status_whiteboard_type=allwordssubstr;target_milestone=2.0.2;type0-0-0=noop;value0-0-0=;votes=;query_based_on=;columnlist=component%2Cbug_severity%2Cpriority%2Cshort_desc All Bugs and Enhancements Requests (ordered by priority)]
'''NEED QUERIES'''
+
** By Component: [https://bugs.eclipse.org/bugs/buglist.cgi?columnlist=bug_severity%2Cpriority%2Cshort_desc;resolution=FIXED;classification=RT;query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=JPA;target_milestone=2.0.2;product=EclipseLink JPA], [https://bugs.eclipse.org/bugs/buglist.cgi?columnlist=bug_severity%2Cpriority%2Cshort_desc;resolution=FIXED;classification=RT;query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=MOXy;target_milestone=2.0.2;product=EclipseLink MOXy], [https://bugs.eclipse.org/bugs/buglist.cgi?columnlist=bug_severity%2Cpriority%2Cshort_desc;resolution=FIXED;classification=RT;query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=SDO;target_milestone=2.0.2;product=EclipseLink SDO], [https://bugs.eclipse.org/bugs/buglist.cgi?columnlist=bug_severity%2Cpriority%2Cshort_desc;resolution=FIXED;classification=RT;query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=DBWS;target_milestone=2.0.2;product=EclipseLink DBWS], [https://bugs.eclipse.org/bugs/buglist.cgi?columnlist=bug_severity%2Cpriority%2Cshort_desc;resolution=FIXED;classification=RT;query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=Foundation;target_milestone=2.0.2;product=EclipseLink Foundation]
 
+
 
+
  
 
== Known Issues ==
 
== Known Issues ==
  
 
+
All known issues with EclipseLink are tracked in the Eclipse bugzilla database. Queries for current open bugs in EclipseLink are available [[EclipseLink/Development/Bugs | here]].
 +
* [https://bugs.eclipse.org/bugs/buglist.cgi?resolution=FIXED;classification=RT;query_format=advanced;version=2.0.1;product=EclipseLink Bugs and Enhancements logged against 2.0.2]
 
===EclipseLink DBWS with JRockit JVM===
 
===EclipseLink DBWS with JRockit JVM===
  
Line 106: Line 100:
 
</ol>
 
</ol>
  
 +
=== Bean Validation not being triggered  ===
  
 +
Due to [https://bugs.eclipse.org/bugs/show_bug.cgi?id=311225 Issue 311225] Bean Validation is not being triggered. Here are possible workarounds.
  
 +
*Add add an entity listener to the Entity being validated.
 +
*Manually cause the flag within the DescriptorEventManager for the validated descriptor to be set on. This can be done by adding a 'dummy' Listener then removing it as follows
 +
 +
<source lang="java">
 +
DescriptorEventAdapter dummyListener = new DescriptorEventAdapter();
 +
DescriptorEventManager eventManager =
 +
          em.unwrap(Session.class).getDescriptor(Employee.class).getDescriptorEventManager();
 +
eventManager.addListener(dummyListener);
 +
eventManager.removeListener(dummyListener);
 +
</source>
  
 
== Certified Configurations ==
 
== Certified Configurations ==
Line 201: Line 207:
 
* Database Platform Certification Notes
 
* Database Platform Certification Notes
 
** (O) - Certified by Oracle TopLink QA for the EclipseLink project
 
** (O) - Certified by Oracle TopLink QA for the EclipseLink project
 +
 +
[[Category:EclipseLink|Release/2.0.2]]

Latest revision as of 14:45, 25 October 2011

EclipseLink 2.0.2 Patchset

The EclipseLink 2.0.2 patch set: April 21st 2010

EclipseLink 2.0.2 is a patch set on the 2.0 stream. Please see link below for a full list of bugs that have been fixed in 2.0.2.

Eclipselink-logo.gif

Go-bottom.png Download EclipseLink 2.0.2

Resolved Issues

The following table lists of few of the issues resolved in 2.0.2. For a complete list, please see the link below the table.

Component Issue Description
JPA
Utils - Workbench U
JPA
JPA
MOXy

Resolved Bug Queries

Known Issues

All known issues with EclipseLink are tracked in the Eclipse bugzilla database. Queries for current open bugs in EclipseLink are available here.

EclipseLink DBWS with JRockit JVM

EclipseLink DBWS deployment may fail in JRockit VM environment. When generating a WAR file for deployment, the EclipseLink Database Web Services (DBWS) design-time utility uses a version of ASM for code generation which is not compatible with later versions of JRockit. This results in a deployment failure with the SOAP message exception Illegal target of jump or branch.

Note: This issue does not occur when running the application server in a Sun JVM environment.

To generate a DBWS deployment WAR file that will successfully deploy in a JRockit JVM environment, use this procedure:

Note: You can complete this procedure using an IDE, such as Eclipse or Oracle JDeveloper.

  1. Create a new project. Add the following libraries to the classpath:
    • Java EE
    • JAX-WS 2.0 Library
    • jlib/eclipselink.jar
    • JDBC Library
    • utils/dbws/eclipselink-dbwsutils.jar
    • utils/dbws/javax.wsdl_1.6.2.v200806030405.jar
  2. Import the dbws-bulider.xml file and add it to the project classpath.
  3. Create a new file named META-INF/services/org.eclipse.persistence.tools.dbws.DBWSPackager in the project's src directory. The file should contain the following, single line:
    org.eclipse.persistence.tools.dbws.JDevPackager
    Add this newly created file to the project classpath.
  4. Use the DBWSBuilder utility to generate the web service artifacts in the specified directory:
    • Main class: org.eclipse.persistence.tools.dbws.DBWSBuilder
    • Arguments: -builderFile dbws-builder.xml -stageDir . -packageAs jdev
  5. Rebuild the project. This will generate a DBWSProvider.class file.
  6. Use the web service artifacts to generate a WAR deployment profile. The .war file should contain the following:
    • WEB-INF/web.xml
    • WEB-INF/classes/_dbws/DBWSProvider.class
    • WEB-INF/classes/META-INF/eclipselink-dbws.xml
    • WEB-INF/classes/META-INF/eclipselink-dbws-or.xml
    • WEB-INF/classes/META-INF/eclipselink-dbws-ox.xml
    • WEB-INF/classes/META-INF/eclipselink-dbws-sessions.xml
    • WEB-INF/wsdl/eclipselink-dbws.wsd
    • WEB-INF/wsdl/eclipselink-dbws-schema.xsd
  7. You can now deploy the WAR file to your application server.

Bean Validation not being triggered

Due to Issue 311225 Bean Validation is not being triggered. Here are possible workarounds.

  • Add add an entity listener to the Entity being validated.
  • Manually cause the flag within the DescriptorEventManager for the validated descriptor to be set on. This can be done by adding a 'dummy' Listener then removing it as follows
DescriptorEventAdapter dummyListener = new DescriptorEventAdapter();
DescriptorEventManager eventManager =
           em.unwrap(Session.class).getDescriptor(Employee.class).getDescriptorEventManager();
eventManager.addListener(dummyListener);
eventManager.removeListener(dummyListener);

Certified Configurations

Persistence Specifications Supported

Specification Version Notes
EJB 3.0 (Java Persistence) - JSR 220 1.0
Java Persistence (JPA) - JSR 317 2.0 Reference Implementation
Service Data Objects SDO - JSR 235 2.1.1 Reference Implementation provided by EclipseLink 1.1.0.r3634
Java XML Binding Architecture (JAXB) - JSR 222 2.1

Java Persistence (JPA) 1.0 & 2.0

EclipseLink 2.0.1 provides both JPA 2.0 and 1.0 functionality. In order to remain backwards compatible with JPA 1.0 some limitations have been imposed. The following table illustrates the usage of each version of JPA with the available library versions.

Java Architecture JPA 2.0
javax_persistence_2.0.0
Included with EclipseLink ZIP
JPA 1.0
javax_persistence_1.0.0
Included with EclipseLink ZIP
JPA 1.0
javax_persistence_1.0.0
Orbit (signed)
Java SE
eclipselink.jar
Yes
Yes
No
Java SE
bundles
Yes
No
No
Java EE
eclipselink.jar
Yes
Yes
No
Java EE
bundles
Yes
No
No
OSGi (Equinox)
bundles
Yes
No
No

Database Platform Certifications

Database Java SE WLS 10.3.0 WLS 10.0.1 OC4J 10.1.3.4 WAS 7.0 WAS 6.1 JBoss 5.0.1 JBoss 4.2.3 GlassFish v2 Spring
MySQL 5.0.45 Certified(O) Certified(O) - - - - Certified(O) Certified(O) - -
Oracle 11.1.0.7 Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O)
Oracle 11.1.0.6 Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O)
Oracle 10.2.0.4 Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) Certified(O) - Certified(O)
Oracle XE - Certified(O) Certified(O) - - - - Certified(O) - -
Oracle 11.1.0.7 RAC N/A Certified(O) - - - - - - - -
Oracle 10.2.0.4 RAC N/A Certified(O) - - - - - - - -
SQL Server 2008 Certified(O) Certified(O) - - - - Certified(O) Certified(O) - -
SQL Server 2005 Certified(O) Certified(O) - - - - Certified(O) Certified(O) - -
DB2 9.5 Certified(O) Certified(O) - - - Certified(O) Certified(O) Certified(O) - -
DB2 9.1 Certified(O) Certified(O) - - - - Certified(O) Certified(O) - -
Sybase ASE 15 - Certified(O) - - - - Certified(O) Certified(O) - -
Sybase ASE 12.5 - Certified(O) - - - - Certified(O) Certified(O) - -
PostGreSQL Certified(O) - - - - - - - - -
Derby 10 Certified(O) - - - - - - - Certified(O) -
  • Database Platform Certification Notes
    • (O) - Certified by Oracle TopLink QA for the EclipseLink project
Retrieved from "https://wiki.eclipse.org/index.php?title=EclipseLink/Release/2.0.2&oldid=274374"

Copyright © Eclipse Foundation, Inc. All Rights Reserved.