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/Development/Java6"

m (Run-Time Support)
m (Java SE 6 Integration)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Java SE 6 Integration==
 
==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).
+
This section describes current issues and resolutions for compiling and running EclipseLink on a Sun Java 6 JRE (currently 1.6.0_07).
 +
 
 +
See [http://wiki.eclipse.org/EclipseLink/DesignDocs/236185 236185 Java 6 Design Doc.]
  
 
===What is not working===
 
===What is not working===
*eclipselink.jpa test - UnsupportedClassVersionError when running using 1.6 compiled classes in core.
+
*eclipselink.jpa test  
**Workaround: for now, compile core under 1.5 and run tests under 1.6 to get the junit report
+
*eclipselink.sdo.test  
*eclipselink.sdo.test - Class generation fails using 1.6 tools.jar.
+
**Class generation fails using 1.6 tools.jar - fix to be verified.
*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
+
**If recompiling sdo.core with 1.6 - Use Java 6 JDK 1.6.0_10-rc2 (as its classLoader has been fixed)
 +
*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 - fix to be verified
  
 
===Compile-Time Support===
 
===Compile-Time Support===
Line 22: Line 24:
 
===Run-Time Support===
 
===Run-Time Support===
 
* [http://bugs.eclipse.org/236185 ER 236185: Java6 API Support]
 
* [http://bugs.eclipse.org/236185 ER 236185: Java6 API Support]
* [http://bugs.eclipse.org/248019 Bug 248019 Java6 JVM Garbage Collection slowdown for JUnit tests]
+
* [http://bugs.eclipse.org/248019 Bug 248019 Java6 JVM The JDK 1.6 JRE classLoader has a 10x slowdown until JDK 1.6.0_10-rc2 for JUnit tests]
  
 
===Features new to Java 1.6===
 
===Features new to Java 1.6===
 
*The following features new to Java 1.6 are being considered for the future as enhancements or customer requests.  These features will only be available when we have moved our compile baseline from 1.5 to 1.6.
 
*The following features new to Java 1.6 are being considered for the future as enhancements or customer requests.  These features will only be available when we have moved our compile baseline from 1.5 to 1.6.
 
**[http://java.sun.com/javase/6/docs/technotes/guides/jmx/JMX_1_4_specification.pdf JMX 1.4] ( [http://java.sun.com/javase/6/docs/technotes/guides/jmx/enhancements.html new JMX static class, MXBeans...])
 
**[http://java.sun.com/javase/6/docs/technotes/guides/jmx/JMX_1_4_specification.pdf JMX 1.4] ( [http://java.sun.com/javase/6/docs/technotes/guides/jmx/enhancements.html new JMX static class, MXBeans...])
**[http://java.sun.com/products/jdbc/download.html#corespec40 JDBC 4.0 in Java 6]
+
**[http://java.sun.com/products/jdbc/download.html#corespec40 JDBC 4.0 in Java 6] - see the JDBC 4.0 introduction to Java 1.6 as part of the JavaDB introduction - http://java.sun.com/javase/6/docs/api/java/sql/package-summary.html
 
**[http://java.sun.com/javase/6/docs/technotes/guides/xml/jaxp/JAXP-Compatibility_160.html JAXP 1.4 RI in Java6]
 
**[http://java.sun.com/javase/6/docs/technotes/guides/xml/jaxp/JAXP-Compatibility_160.html JAXP 1.4 RI in Java6]

Latest revision as of 12:34, 3 November 2008

Java SE 6 Integration

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

See 236185 Java 6 Design Doc.

What is not working

  • eclipselink.jpa test
  • eclipselink.sdo.test
    • Class generation fails using 1.6 tools.jar - fix to be verified.
    • If recompiling sdo.core with 1.6 - Use Java 6 JDK 1.6.0_10-rc2 (as its classLoader has been fixed)
  • 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 - fix to be verified

Compile-Time Support

  • Compiling under 1.6.0 with a target of 1.5 is working fine.
  • There are 133 errors in 213261 as follows when compiling under 1.6.0 with a target of 1.6 in the following test projects
    • eclipselink.core.test
    • eclipselink.extension.oracle.test
    • New JDBC 4.0 Intefaces - stubs were added
    • 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

Features new to Java 1.6

Back to the top