Java version history

From Infogalactic: the planetary knowledge core
(Redirected from Java 8)
Jump to: navigation, search

The Java language has undergone several changes since JDK 1.0 as well as numerous additions of classes and packages to the standard library. Since J2SE 1.4, the evolution of the Java language has been governed by the Java Community Process (JCP), which uses Java Specification Requests (JSRs) to propose and specify additions and changes to the Java platform. The language is specified by the Java Language Specification (JLS); changes to the JLS are managed under JSR 901.

In addition to the language changes, much more dramatic changes have been made to the Java Class Library over the years, which has grown from a few hundred classes in JDK 1.0 to over three thousand in J2SE 5. Entire new APIs, such as Swing and Java2D, have been introduced, and many of the original JDK 1.0 classes and methods have been deprecated. Some programs allow conversion of Java programs from one version of the Java platform to an older one (for example Java 5.0 backported to 1.4) (see Java backporting tools).

In September 2017, Mark Reinhold, chief Architect of the Java Platform, proposed to change the release train to "one feature release every six months" rather than the current two-year schedule.[1][2]

Java 9 is the main publicly supported version (with Java 7 no longer publicly supported and Java 8 end of support announced[3]), while after public support periods of older versions has ended, non-public updates have been issued for Java 7 and earlier.[4]

While Java was originally made for e.g. client-side applet use in web browsers (usage shifted mostly to the backend), major browsers no longer have applet support (nor is that use case officially supported by Oracle; neither do they or Apple support Java for macOS; outdated Windows XP is also no longer offically supported, and Microsoft in general hindered use of unchanged Java with their Windows operating system, for a time competing with a J# language).

Release Year
JDK Beta 1994
JDK 1.0 1996
JDK 1.1 1997
J2SE 1.2 1998
J2SE 1.3 2000
J2SE 1.4 2002
J2SE 5.0 2004
Java SE 6 2006
Java SE 7 2011
Java SE 8 2014
Java SE 9 2017

JDK 1.0

The first version was released on January 23, 1996 and called Oak.[5][6] The first stable version, JDK 1.0.2, is called Java 1.[6]

JDK 1.1

Major additions in the release on February 19, 1997 included:[7]

J2SE 1.2

Codename Playground. The release on December 8, 1998 and subsequent releases through J2SE 5.0 were rebranded retrospectively Java 2 and the version name "J2SE" (Java 2 Platform, Standard Edition) replaced JDK to distinguish the base platform from J2EE (Java 2 Platform, Enterprise Edition) and J2ME (Java 2 Platform, Micro Edition). This was a very significant release of Java as it tripled the size of the Java platform to 1520 classes in 59 packages. Major additions included:[9]

J2SE 1.3

Codename Kestrel. The most notable changes in the May 8, 2000 release were:[10][11]

J2SE 1.4

Codename Merlin. The February 6, 2002 release was the first release of the Java platform developed under the Java Community Process as JSR 59. Major changes included:[12][13]

Public support and security updates for Java 1.4 ended in October 2008. Paid security updates for Oracle customers ended in February 2013.[14]

J2SE 5.0

Codename Tiger. The release on September 30, 2004 was originally numbered 1.5, which is still used as the internal version number. The number was changed to "better reflect the level of maturity, stability, scalability and security of the J2SE".[15] This version was developed under JSR 176.

J2SE 5.0 entered its end-of-public-updates period on April 8, 2008; updates are no longer available to the public as of November 3, 2009. Updates were available to paid Oracle customers until May 2015.[16]

Tiger added a number of significant new language features:[17][18]

  • Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion) (specified by JSR 14)
  • Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities (specified by JSR 175)
  • Autoboxing/unboxing: automatic conversions between primitive types (such as int) and primitive wrapper classes (such as Integer) (specified by JSR 201)
  • Enumerations: the enum keyword creates a typesafe, ordered list of values (such as Day.MONDAY, Day.TUESDAY, etc.); previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern) (specified by JSR 201)
  • Varargs: the last parameter of a method can now be declared using a type name followed by three dots (e.g. void drawtext(String... lines)); in the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type
  • Enhanced for each loop: the for loop syntax is extended with special syntax for iterating over each member of either an array or any Iterable, such as the standard Collection classes (specified by JSR 201)
  • Improved semantics of execution for multi-threaded Java programs; the new Java memory model addresses issues of complexity, effectiveness, and performance of previous specifications[19]
  • Static imports

There were also the following improvements to the standard libraries:

Java 5 is the last release of Java to officially support the Microsoft Windows 98 and Windows ME,[21] while Windows Vista is the newest version of Windows that J2SE 5 was supported on prior to Java 5 going end of life in October 2009.[14]

Java 5 Update 5 (1.5.0_05) is the last release of Java to work on Windows 95 (with Internet Explorer 5.5 installed) and Windows NT 4.0.[22]

Java 5 was first available on Apple Mac OS X 10.4 (Tiger)[23] and was the default version of Java installed on Apple Mac OS X 10.5 (Leopard).

Public support and security updates for Java 1.5 ended in November 2009. Paid security updates for Oracle customers ended in April 2015.

Versioning change

This version introduced a new versioning system for the Java language, although the old versioning system continued to be used for developer libraries:

<templatestyles src="Template:Blockquote/styles.css" />

Both version numbers "1.5.0" and "5.0" are used to identify this release of the Java 2 Platform Standard Edition. Version "5.0" is the product version, while "1.5.0" is the developer version. The number "5.0" is used to better reflect the level of maturity, stability, scalability and security of the J2SE.

This correspondence continued through later releases (Java 6 = JDK 1.6, Java 7 = JDK 1.7, and so on).

Java 5 updates

Release Release date Highlights
Java SE 5 2004-10-4 Metadata, generic types, autoboxing and auto-unboxing of primitive types, enhanced for loop, enumerated types, static import, formatted I/O, varargs, and concurrency utilities. Improved startup time and memory footprint. Sharing of read-only data between multiple running JVMs. Remote monitoring and management. A new JVM profiling API. Programmatic generation of stack traces. Support for XML 1.1 with Namespaces, XML Schema, SAX 2.0.2, DOM Level 3, and XSLT with a fast XLSTC compiler. Unicode 4.0 support.
Java SE 5 Update 1 2004-12-25 50 bugs have been fixed.
Java SE 5 Update 2 2005-03-16 A few crashes were fixed. The program is now compiled with better optimization. Calendar bugfixes and other bugfixes were made.
Java SE 5 Update 3 2005-05-03 This release fixes several bugs, including crashes of the Linux Mozilla plugin.
Java SE 5 Update 4 2005-07-04 With the release, J2SE support for Windows 64-bit has progressed from release candidate to final release. This version runs on AMD64/EM64T 64-bit mode machines with Windows Server 2003 x64 Editions.
Java SE 5 Update 5 2005-09-18 Several bugs were fixed and performance enhancements were made. Last release for Windows 95 and Windows NT 4.0.
Java SE 5 Update 6 2005-12-07 Prior to this update, an applet or application could specify the version of the JRE on which it would run. This has changed. All applets are executed with the latest JRE version.
Java SE 5 Update 7 2006-05-29 Several bugs were fixed and performance enhancements were made.
Java SE 5 Update 8 2006-08-13 Several bugs were fixed and performance enhancements were made.
Java SE 5 Update 9 2006-11-12 This release fixes several minor regressions.
Java SE 5 Update 10 2006-12-22 An implementation of the epoll I/O event notification facility, supported by Linux 2.6, was added. Many bugs were fixed.
Java SE 5 Update 11 2007-03-08 Several bugs were fixed and performance enhancements were made.
Java SE 5 Update 12 2007-06-11
Java SE 5 Update 13 2007-10-05 Multiple security vulnerabilities in Java Web Start relating to local file access were fixed. A security vulnerability in the JRE allowing network access restrictions to be circumvented was fixed. Several other security issues and minor bugs were fixed.
Java SE 5 Update 14
Java SE 5 Update 15 2008-03-06 Several crashes due to heap buffer out-of-bounds were fixed, along with several other bugs. New root certificates from AOL, DigiCert, and TrustCenter are now included.
Java SE 5 Update 16 2008-07-23 This release fixes several security flaws, such as DoS vulnerabilities, buffer overflows, and other bugs which could lead to crashes or which would give applets access to certain system resources. These vulnerabilities were located in Java Web Start, in the Java Management Extensions (JMX) Management Agent, and in the functions for handling XML data.
Java SE 5 Update 17 2008-12-03 The UTF-8 charset implementation was updated to handle the non-shortest form of UTF-8 byte sequences, introducing an incompatibility from previous releases. New root certificates were added. Many bugs were fixed.
Java SE 5 Update 18 2009-03-25 Several security issues were resolved. The behavior of the JNDI feature to store and retrieve Java objects in an LDAP directory was slightly modified. Five new root certificates were added. Many bugs were fixed.
Java SE 5 Update 19 2009-05-29 Support was added for several system configurations. Service Tag support was added. Many bugs were fixed, including several crashes and memory leaks.
Java SE 5 Update 20 2009-08-06 Several security vulnerabilities were resolved, such as potential system access by untrusted applets, and integer overflows in image processing and in Unpack200. Several new root certificates were added. Many other minor bugs were fixed.
Java SE 5 Update 21 2009-09-09 Many minor bugs were fixed.
Java SE 5 Update 22 2009-11-04 This release marks the End of Service Life (EOSL) for Java 5, and is its final public version. Several security vulnerabilities, reported as Sun Alerts 269868, 270474, 270475, and 270476, were fixed. Several other bugs were fixed. Furthermore, two new root certificates were added.
Java SE 5 Update 23 2010-01-13 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 32 security fixes.
Java SE 5 Update 24 2010-04-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 2 security fixes.
Java SE 5 Update 25 2010-07-07 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 26 security fixes.
Java SE 5 Update 26 2010-10-12 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 2 security fixes.
Java SE 5 Update 27 2010-12-08 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes.
Java SE 5 Update 28 2011-02-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes[25]
Java SE 5 Update 29 2011-03-21 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 21 security fixes.
Java SE 5 Update 30 2011-06-07 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix.
Java SE 5 Update 31 2011-08-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes.
Java SE 5 Update 32 2011-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[26]
Java SE 5 Update 33 2011-12-12 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 21 security fixes.
Java SE 5 Update 34 2012-02-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[27]
Java SE 5 Update 35 2012-04-26 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes.
Java SE 5 Update 36 2012-06-12 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[28]
Java SE 5 Update 38 2012-08-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 30 security fixes[29]
Java SE 5 Update 39 2013-02-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 50 security fixes[30]
Java SE 5 Update 40 2013-02-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[31]
Java SE 5 Update 41 2013-03-04 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 2 security fixes[32]
Java SE 5 Update 45 2013-04-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 42 security fixes[33]
Java SE 5 Update 51 2013-06-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 40 security fixes[34]
Java SE 5 Update 55 2013-10-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 51 security fixes[35]
Java SE 5 Update 61 2014-01-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 36 security fixes[36]
Java SE 5 Update 65 2014-04-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 37 security fixes[37]
Java SE 5 Update 71 2014-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[38]
Java SE 5 Update 75 2014-10-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[39]
Java SE 5 Update 81 2015-01-21 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 19 security fixes[40]
Java SE 5 Update 85 2015-04-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[41]

Java SE 6

Codename Mustang. As of the version released on December 11, 2006, Sun replaced the name "J2SE" with Java SE and dropped the ".0" from the version number.[42] Internal numbering for developers remains 1.6.0.[43] This version was developed under JSR 270.

During the development phase, new builds including enhancements and bug fixes were released approximately weekly. Beta versions were released in February and June 2006, leading up to a final release that occurred on December 11, 2006.

Major changes included in this version:[44][45]

  • Support for older Win9x versions dropped; unofficially, Java 6 Update 7 was the last release of Java shown to work on these versions of Windows.[citation needed] This is believed[by whom?] to be due to the major changes in Update 10.
  • Scripting Language Support (JSR 223): Generic API for tight integration with scripting languages, and built-in Mozilla JavaScript Rhino integration.
  • Dramatic performance improvements for the core platform,[46][47] and Swing.
  • Improved Web Service support through JAX-WS (JSR 224).
  • JDBC 4.0 support (JSR 221).
  • Java Compiler API (JSR 199): an API allowing a Java program to select and invoke a Java Compiler programmatically.
  • Upgrade of JAXB to version 2.0: Including integration of a StAX parser.
  • Support for pluggable annotations (JSR 269).[48]
  • Many GUI improvements, such as integration of SwingWorker in the API, table sorting and filtering, and true Swing double-buffering (eliminating the gray-area effect).
  • JVM improvements include: synchronization and compiler performance optimizations, new algorithms and upgrades to existing garbage collection algorithms, and application start-up performance.

Java 6 can be installed to Mac OS X 10.5 (Leopard) running on 64-bit (Core 2 Duo and higher) processor machines.[49] Java 6 is also supported by both 32-bit and 64-bit machines running Mac OS X 10.6 (Snow Leopard).

Java 6 reached the end of its supported life in February 2013, at which time all public updates, including security updates, were scheduled to be stopped.[50][51] Oracle released two more updates to Java 6 in March and April 2013, which patched some security vulnerabilities.[52][53]

Java 6 updates

After Java 6 release, Sun, and later Oracle, released several updates which, while not changing any public API, enhanced end-user usability or fixed bugs.[54]

Release Release date Highlights
Java SE 6 2006-12-23 This release adds many enhancements in the fields of Web services, scripting, databases, pluggable annotations, and security, as well as quality, compatibility, and stability. JConsole is now officially supported. Java DB support has been added.
Java SE 6 Update 1 2007-05-07
Java SE 6 Update 2 2007-07-03
Java SE 6 Update 3 2007-10-03
Java SE 6 Update 4 2008-01-14 HotSpot VM 10
Java SE 6 Update 5 2008-03-05 Several security flaws were eliminated. New root certificates from AOL, DigiCert, and TrustCenter are now included.
Java SE 6 Update 6 2008-04-16 A workaround for the infamous Xlib/XCB locking assertion issue was introduced. A memory leak when using Kerberos authentication with LoginContext was fixed. Several other bugs were fixed.
Java SE 6 Update 7[55] Unofficially, Java SE 6 Update 7 (1.6.0.7) is the last version of Java that was shown to be working on the Win9x family of operating systems[citation needed]
Java SE 6 Update 10[56] 2008-10-15 HotSpot VM 11. Major changes for this update include:
  • Java Deployment Toolkit, a set of JavaScript functions to ease the deployment of applets and Java Web Start applications.[57]
  • Java Kernel, a small installer including only the most commonly used JRE classes. Other packages are downloaded when needed.
  • Enhanced updater.
  • Enhanced versioning and pack200 support: server-side support is no longer required.[58]
  • Java Quick Starter, to improve cold start-up time.
  • Improved performance of Java2D graphics primitives on Windows, using Direct3D and hardware acceleration.
  • A new Swing look and feel called Nimbus and based on synth.[59]
  • Next-Generation Java Plug-In: applets now run in a separate process and support many features of Web Start applications.[60]
Java SE 6 Update 11[61] 2008-12-03 13 security fixes[62]
Java SE 6 Update 12[63] 2008-12-12 No security fixes; 64-bit Java plug-in (for 64-bit web browsers only); Windows Server 2008 support; performance improvements of graphics and JavaFX applications
Java SE 6 Update 13[64] 2009-03-24 7 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change (createMBeanunregisterMBean), 4 new root certificates added
Java SE 6 Update 14[65] 2009-05-28 HotSpot VM 14. This release includes extensive performance updates to the JIT compiler, compressed pointers for 64-bit machines, as well as support for the G1 (Garbage First) low-pause garbage collector.[66][67]

The -XX:+DoEscapeAnalysis option directs the HotSpot JIT compiler to use escape analysis to determine if local objects can be allocated on the stack instead of the heap.[68]

Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly.[69] Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs.[70] Using the -XX:+UseParallelGC option will prevent the failure. Another workaround is to roll back to update 13, or to upgrade to update 16.

Java SE 6 Update 15 2009-08-04 Introduced patch-in-place functionality[71]
Java SE 6 Update 16 2009-08-11 Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints[72]
Java SE 6 Update 17[73] 2009-11-04 Security fixes; two new root certificates
Java SE 6 Update 18[74] 2010-01-13 No security fixes; Hotspot VM 16; support for Ubuntu 8.04 LTS Desktop Edition, SLES 11, Windows 7, Red Hat Enterprise Linux 5.3, Firefox 3.6, VisualVM 1.2; updated Java DB; many performance improvements
Java SE 6 Update 19[75] 2010-03-30 Security fixes; root certificate changes: seven new, three removed, five replaced with stronger signature algorithms; interim fix for TLS renegotiation attack
Java SE 6 Update 20[76] 2010-04-15 2 security fixes
Java SE 6 Update 21[77] 2010-07-07 No security fixes; Hotspot VM 17; support for Red Hat Enterprise Linux 5.4 and 5.5, Oracle Enterprise Linux 4.8, 5.4, 5.5; Google Chrome 4 support; support for Customized Loading Progress Indicators; VisualVM 1.2.2
Java SE 6 Update 22[78] 2010-10-12 29 security fixes; RFC 5746 support
Java SE 6 Update 23[79] 2010-12-08 No security fixes; Hotspot VM 19; better support for right-to-left languages
Java SE 6 Update 24[80] 2011-02-15 21 security fixes; updated Java DB
Java SE 6 Update 25 2011-03-21 No security fixes; Hotspot VM 20; support for Internet Explorer 9, Firefox 4 and Chrome 10; improved BigDecimal; includes "tiered" compilation in the Server VM that enables it to start quickly as does the Client VM, while achieving better peak performance (this feature is enabled by specifying -server and -XX:+TieredCompilation command options)[81]
Java SE 6 Update 26[82] 2011-06-07 17 new security fixes;[83] last version compatible with Windows Vista SP1
Java SE 6 Update 27[84] 2011-08-16 No security fixes; certification for Firefox 5
Java SE 6 Update 29[85] 2011-10-18 20 security fixes, various bug fixes[86]
Java SE 6 Update 30[87] 2011-12-12 No security fixes; fix for SSL regression in Update 29; support for Red Hat Enterprise Linux 6
Java SE 6 Update 31[88] 2012-02-14 14 security fixes and one bug fix; last version work reliably for Windows 2000[89]
JAVA SE 6 Update 32[90] 2012-04-26 No security fixes, various bug fixes
Java SE 6 Update 33[91] 2012-06-12 14 security fixes, improved VM configuration file loading
Java SE 6 Update 34[92] 2012-08-14 No security fixes, various bug fixes
Java SE 6 Update 35[93] 2012-08-30 Contains a security-in-depth fix[94]
Java SE 6 Update 37[95] 2012-10-16 30 security fixes
Java SE 6 Update 38[96] 2012-12-11 Various bug fixes[97]
Java SE 6 Update 39[98] 2013-02-01 50 security fixes
Java SE 6 Update 41[99] 2013-02-19 5 security fixes
Java SE 6 Update 43[100] 2013-03-04 2 security fixes
Java SE 6 Update 45[101] 2013-04-16 42 security fixes;[102] other changes;[101] final public update.[103]
Java SE 6 Update 51[104] 2013-06-18 Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; up to 40 security fixes[105]
Java SE 6 Update 65[106] 2013-10-15 Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; at least 11 critical security fixes[107]
Java SE 6 Update 71[108] 2014-01-14 Not available for public download; 33 fixes[109]
Java SE 6 Update 75[110] 2014-04-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster no. #54; 25 security fixes[111]
Java SE 6 Update 81[112] 2014-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[113]
Java SE 6 Update 85[114] 2014-10-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[115]
Java SE 6 Update 91[116] 2015-01-21 Linux x64 and Windows i586 versions are available as the Java SE 6 Reference Implementation.[117] Other versions are only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[118]
Java SE 6 Update 95 2015-04-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[119]
Java SE 6 Update 101 2015-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[120] Certification for IE 10 and 11 was introduced in 1.6.0_101
Java SE 6 Update 105 2015-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[121]
Java SE 6 Update 111 2016-01-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[122]
Java SE 6 Update 113 2016-02-05 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[123]
Java SE 6 Update 115 2016-04-21 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[124]
Java SE 6 Update 121 2016-07-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[125]
Java SE 6 Update 131 2016-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[126]
Java SE 6 Update 141 2017-01-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[127]
Java SE 6 Update 151 2017-04-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes[128]
Java SE 6 Update 161 2017-07-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[129]
Java SE 6 Update 171 2017-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes[130]

Java SE 7

Java 7 (codename Dolphin[131]) is a major update that was launched on July 7, 2011[132] and was made available for developers on July 28, 2011.[133] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[134][135] On average, 8 builds (which generally included enhancements and bug fixes) were released per milestone. The feature list at the OpenJDK 7 project lists many of the changes.

Additions in Java 7 include:[136]

  • Strings in switch[141]
  • Automatic resource management in try-statement[142]
  • Improved type inference for generic instance creation, aka the diamond operator <>[143]
  • Simplified varargs method declaration[144]
  • Binary integer literals[145]
  • Allowing underscores in numeric literals[146]
  • Catching multiple exception types and rethrowing exceptions with improved type checking[147]
  • Concurrency utilities under JSR 166[148]
  • New file I/O library (defined by JSR 203) adding support for multiple file systems, file metadata and symbolic links. The new packages are java.nio.file, java.nio.file.attribute and java.nio.file.spi[149][150]
  • Timsort is used to sort collections and arrays of objects instead of merge sort
  • Library-level support for elliptic curve cryptography algorithms
  • An XRender pipeline for Java 2D, which improves handling of features specific to modern GPUs
  • New platform APIs for the graphics features originally implemented in version 6u10 as unsupported APIs[151]
  • Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
  • Upstream updates to XML and Unicode
  • Java Deployment Rulesets[152]

Lambda (Java's implementation of lambda functions), Jigsaw (Java's implementation of modules), and part of Coin were dropped from Java 7, and released as part of Java 8 (except for Jigsaw, which will be in Java 9).[153][154]

Java 7 was the default version to download on java.com from April 2012 until Java 8 was released.[155]

Java 7 updates

Oracle issued public updates to the Java 7 family on a quarterly basis[156] until April 2015 when the product reached the end of its support lifecycle.[4][157]

Release Release date Highlights
Java SE 7[158] 2011-07-28 Initial release; HotSpot VM 21
Java SE 7 Update 1[159] 2011-10-18 20 security fixes, other bug fixes
Java SE 7 Update 2[160] 2011-12-12 No security fixes; HotSpot VM 22; reliability and performance improvements; support for Solaris 11 and Firefox 5 and later; JavaFX included with Java SE JDK, improvements for web-deployed applications
Java SE 7 Update 3[161] 2012-02-14 14 security fixes[162]
Java SE 7 Update 4[163] 2012-04-26 No security updates; HotSpot VM 23; JDK Support for Mac OS X
Java SE 7 Update 5[164] 2012-06-12 14 security fixes[165]
Java SE 7 Update 6[166] 2012-08-14 JavaFX and Java Access Bridge included in Java SE JDK and JRE installation, JavaFX support for touch-enabled monitors and touch pads, JavaFX support for Linux, JDK and JRE Support for Mac OS X, JDK for Linux on ARM[167]
Java SE 7 Update 7[168] 2012-08-30 4 security fixes[94]
Java SE 7 Update 9[169] 2012-10-16 30 security vulnerabilities fixes[170]
Java SE 7 Update 10[171] 2012-12-11 New security features, such as the ability to disable any Java application from running in the browser and new dialogs to warn you when the JRE is insecure, and bug fixes
Java SE 7 Update 11[172] 2013-01-13 Olson Data 2012i; bugfix for problems with registration of plugin on systems with Stand-alone version of JavaFX Installed, security fixes for CVE-2013-0422;[173] the default security level for Java applets and web start applications has been increased from "Medium" to "High"
Java SE 7 Update 13[174] 2013-02-01 50 security fixes
Java SE 7 Update 15[175] 2013-02-19 5 security fixes
Java SE 7 Update 17[176] 2013-03-04 2 security fixes
Java SE 7 Update 21[177] 2013-04-16 Multiple changes including 42 security fixes, a new Server JRE that doesn't include the plug-in, and the JDK for Linux on ARM
Java SE 7 Update 25[178] 2013-06-18 Multiple changes including 40 security fixes[105][179]
Java SE 7 Update 40[180] 2013-09-10 621 bug fixes,[181] New security features, hardfloat ARM, Java Mission Control 5.2 and Retina Display support[182]
Java SE 7 Update 45[183] 2013-10-15 51 security fixes;[184] protections against unauthorized redistribution of Java applications; restore security prompts; JAXP changes; TimeZone.setDefault change
Java SE 7 Update 51[185] 2014-01-14 36 security fixes; block JAVA applets without manifest (like Remote console – Java Applet – IBM IMM card, HP iLO card) even if warning dialog is with sentence "will be blocked in next version",[186][187] 17 bug fixes
Java SE 7 Update 55[188] 2014-04-15 37 security fixes,[189] 19 bug fixes[190]
Java SE 7 Update 60[191] 2014-05-28 Java Mission Control 5.3,[192] 130 bug fixes[193]
Java SE 7 Update 65[194] 2014-07-15 18 bug fixes[195]
Java SE 7 Update 67[196] 2014-08-04 1 bug fix[197]
Java SE 7 Update 71[198] 2014-10-14 16 bug fixes[199]
Java SE 7 Update 72[200] 2014-10-14 Same release date with Update 71 as a corresponding Patch Set Update (PSU) for Java SE 7,[201] 36 bug fixes[202]
Java SE 7 Update 75[203] 2015-01-20 12 bug fixes,[204] SSLv3 disabled by default
Java SE 7 Update 76[205] 2015-01-20 Same release date with Update 75 as a corresponding Patch Set Update (PSU) for Java SE 7,[201] 97 bug fixes[206]
Java SE 7 Update 79[207] 2015-04-14 21 security fixes, 6 bug fixes,[208]
Java SE 7 Update 80[209] 2015-04-14 Last public release of Java 7; same release date with Update 79 as a corresponding Patch Set Update (PSU) for Java SE 7, 104 bug fixes[210]
Java SE 7 Update 85 2015-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[211]
Java SE 7 Update 91 2015-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[212]
Java SE 7 Update 95 2016-01-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[213]
Java SE 7 Update 97 2016-02-05 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[214]
Java SE 7 Update 99 2016-03-23 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[215]
Java SE 7 Update 101 2016-04-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes[216]
Java SE 7 Update 111 2016-07-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 36 security fixes[217]
Java SE 7 Update 121 2016-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 32 security fixes[218]
Java SE 7 Update 131 2017-01-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 34 security fixes[219]
Java SE 7 Update 141 2017-04-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[220]
Java SE 7 Update 151 2017-07-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[221]
Java SE 7 Update 161 2017-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[222]

Java SE 8

Java 8 (codename: Spider) was released on March 18, 2014,[223][224] and included some features that were planned for Java 7 but later deferred.[225]

Work on features was organized in terms of JDK Enhancement Proposals (JEPs).[226]

  • JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda[227] and default methods (virtual extension methods)[228][229][230] which allow the addition of methods to interfaces without breaking existing implementations. There was an ongoing debate in the Java community on whether to add support for lambda expressions.[231][232] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[233] Supporting lambda expressions also allows the performance of functional-style operations on streams of elements, such as MapReduce-inspired transformations on collections. Default methods allow an author of an API to add new methods to an interface without breaking the old code using it. Although it was not their primary intent,[228] default methods also allow multiple inheritance of behavior (but not state).
  • JSR 223, JEP 174: Project Nashorn, a JavaScript runtime which allows developers to embed JavaScript code within applications
  • JSR 308, JEP 104: Annotation on Java Types[234]
  • Unsigned Integer Arithmetic[235]
  • JSR 337, JEP 120: Repeating annotations[236]
  • JSR 310, JEP 150: Date and Time API[237]
  • JEP 178: Statically-linked JNI libraries[238]
  • JEP 153: Launch JavaFX applications (direct launching of JavaFX application JARs)[239]
  • JEP 122: Remove the permanent generation[240]

Java 8 is not supported on Windows XP[241] but as of JDK 8 update 25, it can still be installed and run under Windows XP.[242] Previous updates of JDK 8 could be run under XP, but had to be installed after a forced installation by directly unzipping files from the installation executable.

From October 2014, Java 8 was the default version to download from the official website.[243] "Oracle will not post further updates of Java SE 8 to its public download sites for commercial use after September 2018".[3]

Java 8 updates

Release Release date Highlights
Java SE 8 2014-03-18 Initial release
Java SE 8 Update 5[244] 2014-04-15 Using "*" in Caller-Allowable-Codebase attribute; 11 bug fixes
Java SE 8 Update 11[245] 2014-07-15 Java Dependency Analysis Tool (jdeps); Java Control Panel option to disable sponsors; JAR file attribute – Entry-Point; JAXP processing limit property – maxElementDepth; 18 security bug fixes,[246] 15 bug fixes
Java SE 8 Update 20[247] 2014-08-19 669 bug fixes,[248] JMC 5.4, String deduplication (disabled by default)
Java SE 8 Update 25[249] 2014-10-14 10 bug fixes
Java SE 8 Update 31[250] 2015-01-19 26 bug fixes; SSLv3 (disabled by default)
Java SE 8 Update 40[251] 2015-03-03 645 bug fixes,[252] Added the notion of "memory pressure" to help indicate how much of system's memory is still available (low pressure = high memory, high pressure = low memory)
Java SE 8 Update 45[253] 2015-04-14 13 bug fixes
Java SE 8 Update 51[254] 2015-07-14 Added support for native sandbox on Windows platforms (disabled by default); also, 25 security fixes, 14 bug fixes
Java SE 8 Update 60[255] 2015-08-18 480 bug fixes[256]
Java SE 8 Update 65[257] 2015-10-20 25 security fixes, 3 bug fixes
Java SE 8 Update 66[258] 2015-11-16 15 bug fixes
Java SE 8 Update 71[259] 2016-01-19 8 security fixes, 5 bug fixes[260]
Java SE 8 Update 72 2016-01-19 8 security fixes, 5 bug fixes, several enhancements
Java SE 8 Update 73[261] 2016-02-03 1 security fix
Java SE 8 Update 74[262] 2016-02-03 1 security fix
Java SE 8 Update 77[263] 2016-03-23 1 security fix
Java SE 8 Update 91[264] 2016-04-19 9 security fixes, 4 bug fixes and enhancements
Java SE 8 Update 92[265] 2016-04-19 Security and bug fixes from 8u91, plus 76 additional bug fixes; the ExitOnOutOfMemoryError and CrashOnOutOfMemoryError flags have been introduced
Java SE 8 Update 101[266] 2016-07-19 Security and bug fixes from 8u92, plus 9 additional bug fixes
Java SE 8 Update 102[267] 2016-07-19 Security and bug fixes from 8u101, plus 118 additional bug fixes
Java SE 8 Update 111[268] 2016-10-18 Security fixes and 9 bug fixes
Java SE 8 Update 112[269] 2016-10-18 Additional features and 139 bug fixes over 8u111
Java SE 8 Update 121[270] 2017-01-17 3 additional features, 5 changes, and 11 bug fixes over 8u112.
Java SE 8 Update 131[271] 2017-04-18 4 changes and 42 bug fixes (2 notable).
Java SE 8 Update 141[272] 2017-07-18 Additional feature, 3 changes and 12 bug fixes.
Java SE 8 Update 144[273] 2017-07-26 Security fixes and bug fixes from 8u141.
Java SE 8 Update 151[274] 2017-10-17 Security fixes, 2 notes, 1 certificate revocation, 1 new feature, 6 changes and 24 bug fixes from 8u144.
Java SE 8 Update 152[275] 2017-10-17 Security fixes, 1 new feature, 1 change and 238 bug fixes from 8u152 (1 notable).

Java SE 9

At JavaOne 2011, Oracle discussed features they hoped to release for Java 9 in 2016.[276] Java 9 should include better support for multi-gigabyte heaps, better native code integration, a different default garbage collector (G1, for "shorter response times")[277] and a self-tuning JVM.[278] In early 2016, the release of Java 9 was rescheduled for March 2017,[279] later again postponed four more months to July 2017,[280] and changed again to be finally available on September 21, 2017,[281] due to controversial acceptance of the current implementation of Project Jigsaw by Java Executive Committee,[282] which led Oracle to fix some open issues and concerns, and to refine some critical technical questions. In the last days of June 2017, Java Community Process expressed nearly unanimous consensus on the proposed Module System scheme.[283]

  • JSR 376: Modularization of the JDK under Project Jigsaw (Java Platform Module System)[154]
  • JEP 222: jshell: The Java Shell (a Java REPL)[284]
  • JEP 295: Ahead-of-Time Compilation[285]
  • JEP 268: XML Catalogs[286]
  • JEP 266: More Concurrency Updates.[287] It includes a Java implementation of Reactive Streams,[288] including a new Flow class[289] that will include the interfaces currently provided by Reactive Streams.[290]
  • JEP 193: Variable Handles:[291] Define a standard means to invoke the equivalents of various java.util.concurrent.atomic and sun.misc.Unsafe operations
  • JEP 282: jlink: The Java Linker:[292] Create a tool that can assemble and optimize a set of modules and their dependencies into a custom run-time image. It effectively allows to produce a fully usable executable including the JVM to run it.

The first Java 9 release candidate was released on August 9, 2017.[293] The first stable release of Java 9 was on September 21, 2017.[294]

Java 9 updates

Release Release date Highlights
Java SE 9[295] 2017-09-21 Initial release
Java SE 9.0.1[296] 2017-10-17 12 Bug fixes

Java SE 10

There is speculation of introducing objects without identity (value types),[297][298] as well as moving towards 64-bit addressable arrays to support large data sets.[299]

Implementations

OpenJDK is a free and open source implementation of the Java Platform, Standard Edition (Java SE).

Before OpenJDK, several free Java implementations were made by various companies and groups. One example is Apache Harmony. IBM also provides Java implementations,[302] and Red Hat provides it through the IcedTea project: a build and integration project for OpenJDK.

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. 3.0 3.1 Lua error in package.lua at line 80: module 'strict' not found.
  4. 4.0 4.1 Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. 6.0 6.1 Lua error in package.lua at line 80: module 'strict' not found.
  7. Version 1.1 press release, Sun.
  8. Taligent prepares internationalisation technology for the big time
  9. Version 1.2 press release, Sun.
  10. Version 1.3 press release, Sun.
  11. Version 1.3 full list of changes Archived 2006-11-07 at the Wayback Machine, Sun.
  12. Version 1.4 press release.
  13. Version full 1.4 list of changes Archived 2007-01-08 at the Wayback Machine.
  14. 14.0 14.1 Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Oracle Java SE Support Roadmap
  17. Version 1.5 press release.
  18. Version 1.5 full list of changes.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Lua error in package.lua at line 80: module 'strict' not found.
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. Lua error in package.lua at line 80: module 'strict' not found.
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. Lua error in package.lua at line 80: module 'strict' not found.
  27. Lua error in package.lua at line 80: module 'strict' not found.
  28. Lua error in package.lua at line 80: module 'strict' not found.
  29. Lua error in package.lua at line 80: module 'strict' not found.
  30. Lua error in package.lua at line 80: module 'strict' not found.
  31. Lua error in package.lua at line 80: module 'strict' not found.
  32. Lua error in package.lua at line 80: module 'strict' not found.
  33. Lua error in package.lua at line 80: module 'strict' not found.
  34. Lua error in package.lua at line 80: module 'strict' not found.
  35. Lua error in package.lua at line 80: module 'strict' not found.
  36. Lua error in package.lua at line 80: module 'strict' not found.
  37. Lua error in package.lua at line 80: module 'strict' not found.
  38. Lua error in package.lua at line 80: module 'strict' not found.
  39. Lua error in package.lua at line 80: module 'strict' not found.
  40. Lua error in package.lua at line 80: module 'strict' not found.
  41. Lua error in package.lua at line 80: module 'strict' not found.
  42. Java brand naming.
  43. Version 6, Java webnotes, Sun.
  44. Version 1.6 press release.
  45. Version 1.6 full list of changes.
  46. Java Lobby.
  47. Mustang's HotSpot Archived 2007-01-02 at the Wayback Machine, Sun weblogs.
  48. Lua error in package.lua at line 80: module 'strict' not found.
  49. Lua error in package.lua at line 80: module 'strict' not found.
  50. Lua error in package.lua at line 80: module 'strict' not found.
  51. Lua error in package.lua at line 80: module 'strict' not found.
  52. Lua error in package.lua at line 80: module 'strict' not found.
  53. Lua error in package.lua at line 80: module 'strict' not found.
  54. Java SE 6 Update Release Notes
  55. Lua error in package.lua at line 80: module 'strict' not found.
  56. Java SE 6 Update 10 Overview
  57. Java Deployment Toolkit
  58. Version Download and Pack200 Support
  59. Nimbus
  60. Release Notes for the Next-Generation Java Plug-In Technology
  61. Lua error in package.lua at line 80: module 'strict' not found.
  62. Update Release Notes, Changes in 1.6.0_11
  63. Lua error in package.lua at line 80: module 'strict' not found.
  64. Lua error in package.lua at line 80: module 'strict' not found.
  65. Lua error in package.lua at line 80: module 'strict' not found.
  66. Lua error in package.lua at line 80: module 'strict' not found.
  67. Lua error in package.lua at line 80: module 'strict' not found.
  68. Lua error in package.lua at line 80: module 'strict' not found.
  69. Lua error in package.lua at line 80: module 'strict' not found.
  70. Lua error in package.lua at line 80: module 'strict' not found.
  71. Lua error in package.lua at line 80: module 'strict' not found.
  72. Lua error in package.lua at line 80: module 'strict' not found.
  73. Lua error in package.lua at line 80: module 'strict' not found.
  74. Lua error in package.lua at line 80: module 'strict' not found.
  75. Lua error in package.lua at line 80: module 'strict' not found.
  76. Lua error in package.lua at line 80: module 'strict' not found.
  77. Lua error in package.lua at line 80: module 'strict' not found.
  78. Lua error in package.lua at line 80: module 'strict' not found.
  79. Lua error in package.lua at line 80: module 'strict' not found.
  80. Lua error in package.lua at line 80: module 'strict' not found.
  81. Lua error in package.lua at line 80: module 'strict' not found.
  82. Lua error in package.lua at line 80: module 'strict' not found.
  83. Oracle Java SE Critical Patch Update Advisory – June 2011
  84. Lua error in package.lua at line 80: module 'strict' not found.
  85. Lua error in package.lua at line 80: module 'strict' not found.
  86. Oracle Java SE Critical Patch Update Advisory – October 2011
  87. Lua error in package.lua at line 80: module 'strict' not found.
  88. Lua error in package.lua at line 80: module 'strict' not found.
  89. Lua error in package.lua at line 80: module 'strict' not found.
  90. Lua error in package.lua at line 80: module 'strict' not found.
  91. Lua error in package.lua at line 80: module 'strict' not found.
  92. Lua error in package.lua at line 80: module 'strict' not found.
  93. Lua error in package.lua at line 80: module 'strict' not found.
  94. 94.0 94.1 Lua error in package.lua at line 80: module 'strict' not found.
  95. Lua error in package.lua at line 80: module 'strict' not found.
  96. Lua error in package.lua at line 80: module 'strict' not found.
  97. Java SE Development Kit 6 Update 38 Bug Fixes, Oracle.com
  98. Lua error in package.lua at line 80: module 'strict' not found.
  99. Lua error in package.lua at line 80: module 'strict' not found.
  100. Lua error in package.lua at line 80: module 'strict' not found.
  101. 101.0 101.1 Lua error in package.lua at line 80: module 'strict' not found.
  102. Oracle Java SE Critical Patch Update Advisory – April 2013
  103. http://java.com/en/download/faq/why_upgrade.xml
  104. Lua error in package.lua at line 80: module 'strict' not found.
  105. 105.0 105.1 Oracle Java SE Critical Patch Update Advisory – June 2013
  106. Lua error in package.lua at line 80: module 'strict' not found.
  107. Oracle Critical Patch Update Advisory – October 2013
  108. Lua error in package.lua at line 80: module 'strict' not found.
  109. Lua error in package.lua at line 80: module 'strict' not found.
  110. Lua error in package.lua at line 80: module 'strict' not found.
  111. Oracle Critical Patch Update Advisory – April 2014
  112. Lua error in package.lua at line 80: module 'strict' not found.
  113. Oracle Critical Patch Update Advisory – July 2014
  114. Lua error in package.lua at line 80: module 'strict' not found.
  115. Oracle Critical Patch Update Advisory – October 2014
  116. Lua error in package.lua at line 80: module 'strict' not found.
  117. Lua error in package.lua at line 80: module 'strict' not found.
  118. Oracle Critical Patch Update Advisory – January 2015
  119. Oracle Critical Patch Update Advisory – April 2015
  120. Lua error in package.lua at line 80: module 'strict' not found.
  121. Lua error in package.lua at line 80: module 'strict' not found.
  122. Lua error in package.lua at line 80: module 'strict' not found.
  123. Lua error in package.lua at line 80: module 'strict' not found.
  124. Lua error in package.lua at line 80: module 'strict' not found.
  125. Lua error in package.lua at line 80: module 'strict' not found.
  126. Lua error in package.lua at line 80: module 'strict' not found.
  127. Lua error in package.lua at line 80: module 'strict' not found.
  128. Lua error in package.lua at line 80: module 'strict' not found.
  129. Lua error in package.lua at line 80: module 'strict' not found.
  130. Lua error in package.lua at line 80: module 'strict' not found.
  131. JDK7, Sun.
  132. Lua error in package.lua at line 80: module 'strict' not found.
  133. Lua error in package.lua at line 80: module 'strict' not found.
  134. JDK 7 at OpenJDK
  135. Lua error in package.lua at line 80: module 'strict' not found.
  136. Lua error in package.lua at line 80: module 'strict' not found.
  137. Lua error in package.lua at line 80: module 'strict' not found.
  138. Lua error in package.lua at line 80: module 'strict' not found.
  139. Lua error in package.lua at line 80: module 'strict' not found.
  140. Lua error in package.lua at line 80: module 'strict' not found.
  141. Lua error in package.lua at line 80: module 'strict' not found.
  142. Lua error in package.lua at line 80: module 'strict' not found.
  143. Lua error in package.lua at line 80: module 'strict' not found.
  144. Lua error in package.lua at line 80: module 'strict' not found.
  145. Lua error in package.lua at line 80: module 'strict' not found.
  146. Lua error in package.lua at line 80: module 'strict' not found.
  147. Lua error in package.lua at line 80: module 'strict' not found.
  148. Lua error in package.lua at line 80: module 'strict' not found.
  149. Lua error in package.lua at line 80: module 'strict' not found.
  150. Lua error in package.lua at line 80: module 'strict' not found.
  151. Lua error in package.lua at line 80: module 'strict' not found.
  152. https://blogs.oracle.com/java-platform-group/entry/introducing_deployment_rule_sets
  153. Lua error in package.lua at line 80: module 'strict' not found.
  154. 154.0 154.1 Lua error in package.lua at line 80: module 'strict' not found.
    Lua error in package.lua at line 80: module 'strict' not found.
    Lua error in package.lua at line 80: module 'strict' not found.
  155. Lua error in package.lua at line 80: module 'strict' not found.
  156. Critical Patch Update table shows four dates per year
  157. Lua error in package.lua at line 80: module 'strict' not found.
  158. Java SE 7 Release Notes
  159. Update Release Notes, Java SE 7 Update 1
  160. Update Release Notes, Java SE 7 Update 2
  161. Update Release Notes, Java SE 7 Update 3
  162. Oracle Java SE Critical Patch Update Advisory – February 2012
  163. Update Release Notes, Java SE 7 Update 4
  164. Update Release Notes, Java SE 7 Update 5
  165. Oracle Java SE Critical Patch Update Advisory – June 2012
  166. Update Release Notes, Java SE 7 Update 6
  167. Java SE 7 Update 6 Released
  168. Update Release Notes, Java SE 7 Update 7
  169. Update Release Notes, Java SE 7 Update 9
  170. Java SE 7 Update 9 Released
  171. Update Release Notes, Java SE 7 Update 10
  172. Update Release Notes, Java SE 7 Update 11
  173. Lua error in package.lua at line 80: module 'strict' not found.
  174. Oracle Java SE Critical Patch Update Advisory – February 2013
  175. Oracle Java SE 7 U15 Release Notes
  176. Oracle Java SE 7 U17 Release Notes
  177. Oracle Java SE 7 U21 Release Notes
  178. Oracle Java SE 7 U25 Release Notes
  179. Oracle releases fixes for 40 Java holes
  180. Oracle Java SE 7 U40 Release Notes
  181. Java™ SE Development Kit 7 Update 40 Bug Fixes
  182. Oracle JDK 7u40 released – security features, hardfloat ARM, Java Mission Control and more
  183. Java SE Development Kit 7, Update 45 – Update Release Notes
  184. Oct 2013 CPU
  185. Java™ SE Development Kit 7 Update 51 Release Notes
  186. Oracle to patch Java, other products Tuesday, ZDNet,
  187. Oracle Critical Patch Update Advisory – January 2014
  188. Java™ SE Development Kit 7 Update 55 Release Notes
  189. Oracle Critical Patch Update Advisory – April 2014
  190. Java™ SE Development Kit 7 Update 55 Bug Fixes
  191. Java™ SE Development Kit 7 Update 60 Release Notes
  192. Java Mission Control 5.3 Release Notes
  193. Java™ SE Development Kit 7 Update 60 Bug Fixes
  194. Java™ SE Development Kit 7 Update 65 Release Notes
  195. Java™ SE Development Kit 7 Update 65 Bug Fixes
  196. Java™ SE Development Kit 7 Update 67 Release Notes
  197. Java™ SE Development Kit 7 Update 67 Bug Fixes
  198. Java™ SE Development Kit 7 Update 71 Release Notes
  199. Java™ SE Development Kit 7 Update 71 Bug Fixes
  200. Java™ SE Development Kit 7 Update 72 Release Notes
  201. 201.0 201.1 Java CPU and PSU Releases Explained
  202. Java™ SE Development Kit 7 Update 72 Bug Fixes
  203. Java™ SE Development Kit 7 Update 75 Release Notes
  204. Java™ SE Development Kit 7 Update 75 Bug Fixes
  205. Java™ SE Development Kit 7 Update 76 Release Notes
  206. Java™ SE Development Kit 7 Update 76 Bug Fixes
  207. Java™ SE Development Kit 7 Update 79 Release Notes
  208. Java™ SE Development Kit 7 Update 79 Bug Fixes
  209. Java™ SE Development Kit 7 Update 80 Release Notes
  210. Java™ SE Development Kit 7 Update 80 Bug Fixes
  211. Oracle Critical Patch Update Advisory – July 2015
  212. Oracle Critical Patch Update Advisory - October 2015
  213. Lua error in package.lua at line 80: module 'strict' not found.
  214. Lua error in package.lua at line 80: module 'strict' not found.
  215. Lua error in package.lua at line 80: module 'strict' not found.
  216. Lua error in package.lua at line 80: module 'strict' not found.
  217. Lua error in package.lua at line 80: module 'strict' not found.
  218. Lua error in package.lua at line 80: module 'strict' not found.
  219. Lua error in package.lua at line 80: module 'strict' not found.
  220. Lua error in package.lua at line 80: module 'strict' not found.
  221. Lua error in package.lua at line 80: module 'strict' not found.
  222. Lua error in package.lua at line 80: module 'strict' not found.
  223. Lua error in package.lua at line 80: module 'strict' not found.
  224. Lua error in package.lua at line 80: module 'strict' not found.
  225. Lua error in package.lua at line 80: module 'strict' not found.
  226. Lua error in package.lua at line 80: module 'strict' not found.
  227. Lua error in package.lua at line 80: module 'strict' not found.
  228. 228.0 228.1 Lua error in package.lua at line 80: module 'strict' not found.
  229. Lua error in package.lua at line 80: module 'strict' not found.
  230. Lua error in package.lua at line 80: module 'strict' not found.
  231. Lua error in package.lua at line 80: module 'strict' not found.
  232. Lua error in package.lua at line 80: module 'strict' not found.
  233. Lua error in package.lua at line 80: module 'strict' not found.
  234. http://openjdk.java.net/jeps/104
  235. https://blogs.oracle.com/darcy/entry/unsigned_api
  236. http://openjdk.java.net/jeps/120
  237. http://openjdk.java.net/jeps/150
  238. http://openjdk.java.net/jeps/178
  239. http://openjdk.java.net/jeps/153
  240. http://openjdk.java.net/jeps/122
  241. Lua error in package.lua at line 80: module 'strict' not found.
  242. Lua error in package.lua at line 80: module 'strict' not found.
  243. Lua error in package.lua at line 80: module 'strict' not found.
  244. Lua error in package.lua at line 80: module 'strict' not found.
  245. Lua error in package.lua at line 80: module 'strict' not found.
  246. Lua error in package.lua at line 80: module 'strict' not found.
  247. Lua error in package.lua at line 80: module 'strict' not found.
  248. Java™ SE Development Kit 8 Update 20 Bug Fixes
  249. Lua error in package.lua at line 80: module 'strict' not found.
  250. Lua error in package.lua at line 80: module 'strict' not found.
  251. Lua error in package.lua at line 80: module 'strict' not found.
  252. Java™ SE Development Kit 8 Update 40 Bug Fixes
  253. Lua error in package.lua at line 80: module 'strict' not found.
  254. Lua error in package.lua at line 80: module 'strict' not found.
  255. Lua error in package.lua at line 80: module 'strict' not found.
  256. Java™ SE Development Kit 8 Update 60 Bug Fixes
  257. Lua error in package.lua at line 80: module 'strict' not found.
  258. Lua error in package.lua at line 80: module 'strict' not found.
  259. Lua error in package.lua at line 80: module 'strict' not found.
  260. Lua error in package.lua at line 80: module 'strict' not found.
  261. Lua error in package.lua at line 80: module 'strict' not found.
  262. Lua error in package.lua at line 80: module 'strict' not found.
  263. Lua error in package.lua at line 80: module 'strict' not found.
  264. Lua error in package.lua at line 80: module 'strict' not found.
  265. Lua error in package.lua at line 80: module 'strict' not found.
  266. Lua error in package.lua at line 80: module 'strict' not found.
  267. Lua error in package.lua at line 80: module 'strict' not found.
  268. Lua error in package.lua at line 80: module 'strict' not found.
  269. Lua error in package.lua at line 80: module 'strict' not found.
  270. Lua error in package.lua at line 80: module 'strict' not found.
  271. Lua error in package.lua at line 80: module 'strict' not found.
  272. Lua error in package.lua at line 80: module 'strict' not found.
  273. Lua error in package.lua at line 80: module 'strict' not found.
  274. Lua error in package.lua at line 80: module 'strict' not found.
  275. Lua error in package.lua at line 80: module 'strict' not found.
  276. Lua error in package.lua at line 80: module 'strict' not found.
  277. https://jaxenter.com/java-9s-new-garbage-collector-whats-changing-whats-staying-118313.html
  278. Lua error in package.lua at line 80: module 'strict' not found.
  279. Lua error in package.lua at line 80: module 'strict' not found.
  280. Lua error in package.lua at line 80: module 'strict' not found.
  281. Lua error in package.lua at line 80: module 'strict' not found.
  282. Lua error in package.lua at line 80: module 'strict' not found.
  283. Lua error in package.lua at line 80: module 'strict' not found.
  284. Lua error in package.lua at line 80: module 'strict' not found.
    Lua error in package.lua at line 80: module 'strict' not found.
  285. Lua error in package.lua at line 80: module 'strict' not found.
  286. Lua error in package.lua at line 80: module 'strict' not found.
  287. Lua error in package.lua at line 80: module 'strict' not found.
  288. jdk9 Candidate classes Flow and SubmissionPublisher
  289. java.util.concurrent.Flow
  290. Reactive Streams Releases First Stable Version for JVM
    JEP 266: More Concurrency Updates
  291. Lua error in package.lua at line 80: module 'strict' not found.
  292. Lua error in package.lua at line 80: module 'strict' not found.
  293. Lua error in package.lua at line 80: module 'strict' not found.
  294. Lua error in package.lua at line 80: module 'strict' not found.
    Lua error in package.lua at line 80: module 'strict' not found.
  295. Lua error in package.lua at line 80: module 'strict' not found.
  296. Lua error in package.lua at line 80: module 'strict' not found.
  297. Lua error in package.lua at line 80: module 'strict' not found.
  298. Lua error in package.lua at line 80: module 'strict' not found.
  299. Lua error in package.lua at line 80: module 'strict' not found.
  300. Lua error in package.lua at line 80: module 'strict' not found.
  301. Lua error in package.lua at line 80: module 'strict' not found.
  302. https://www.ibm.com/developerworks/java/jdk/

External links

de:Java-Technologie#Versionen