Skip to main content

Notice: This Wiki is now read only and edits are no longer 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/Development/Java6"

m (Compile-Time Support)
m (What is not working)
Line 4: Line 4:
 
This section describes current issues and resolutions for compiling and running EclipseLink on a Sun Java 6 JRE (currently 1.6.0_03-b05).
 
This section describes current issues and resolutions for compiling and running EclipseLink on a Sun Java 6 JRE (currently 1.6.0_03-b05).
  
==What is not working==
+
===What is not working===
 
*eclipselink.jpa test - UnsupportedClassVersionError when running using 1.6 compiled classes in core.
 
*eclipselink.jpa test - UnsupportedClassVersionError when running using 1.6 compiled classes in core.
 
**Workaround: for now, compile core under 1.5 and run tests under 1.6 to get the junit report
 
**Workaround: for now, compile core under 1.5 and run tests under 1.6 to get the junit report

Revision as of 16:08, 3 July 2008

Java SE 6 Integration

(This page is under construction as of 20080102)

This section describes current issues and resolutions for compiling and running EclipseLink on a Sun Java 6 JRE (currently 1.6.0_03-b05).

What is not working

  • eclipselink.jpa test - UnsupportedClassVersionError when running using 1.6 compiled classes in core.
    • Workaround: for now, compile core under 1.5 and run tests under 1.6 to get the junit report
  • eclipselink.sdo.test - Class generation fails using 1.6 tools.jar.
  • eclipselink.moxy - (javax.xml.bind) JAXB 2.0 is now moved from the JWSDP to JDK1.6 - API collisions will need to be sorted out

Compile-Time Support

  • There are 133 errors in 213261 as follows when compiling under 1.6.0 in the following test projects
    • eclipselink.core.test
    • eclipselink.extension.oracle.test
    • New JDBC 4.0 RowId
    • Changes to the java.sql package in the JDBC 4.0 API added new interface changes that affect our test code using the following classes
      • Wrapper, Connection, DataSource, PreparedStatement, Statement and ResultSet
      • These changes are not Java SE 5 backwards compatible.

Run-Time Support

Back to the top