Skip to content

isabiq/demo-java-x

 
 

Repository files navigation

Java X Feature Demo

Demonstrates most features that were introduced by Java 9 and later versions. The links below take you to the demos in this project, the JEPs responsible for introducing the feature, and to other sources if available.

For a more practical approach to many of these features, including some quick code metrics, check my Java After Eight repo.

These articles discuss the recent Java versions and list a lot of the new features:

Java 13:

Java 12:

Java 11:

Java 9:

You can read more from me on codefx.org, watch me blab on my YouTube channel, or follow me on Twitter.

Setup

This project requires at least the most recent Java release, at times even early-access builds of upcoming versions. You can get OpenJDK builds for both from jdk.java.net, although I prefer using SDKMAN.

Most of the project can be built with Maven. It uses toolchains to configure which Java version Maven should use for compilation and packaging. Create/modify toolchains.xml in Maven's user folder (~/.m2/ on Linux) to contain a block like the following:

<!-- if the file already contains a <toolchains> tag,
     you only need the inner <toolchain> block -->
<toolchains>
	<toolchain>
		<type>jdk</type>
		<provides>
			<version>13</version>
			<vendor>OpenJDK</vendor>
		</provides>
		<configuration>
			<jdkHome>/opt/jdk/13</jdkHome>
		</configuration>
	</toolchain>
</toolchains>

If your IDE doesn't like new syntax or APIs, you can always compile and run by hand - see compile.sh, run.sh (which expects the fully qualified name of the main class as argument) and compile-run.sh (conveniently combines the two - also needs the main class). The scripts are written for Linux but should look similar on other operating systems. If the appropriate Java version is not on your path, configure it in executables.sh.

For some features, you have to run the .sh scripts in the root directory. If that's necessary, the feature list below mentions it.

Java Platform Module System

The module system is too big to demo here. Check out the jpms tag on my blog, this demo project, or my book on the module system.

Language Changes

New APIs

Updated APIs

Some of the small changes have their own articles (in which case they are linked), but many don't. Most are show-cased in these posts, though:

JVM & Tooling

Internals

About

Demonstrates Java 9-13's new features

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 94.4%
  • Shell 5.6%