https://github.com/neiljbrown/java11-examples
Java code examples for the major new language features added in JDK 11 that are of interest to devs.
https://github.com/neiljbrown/java11-examples
examples java java11
Last synced: 9 months ago
JSON representation
Java code examples for the major new language features added in JDK 11 that are of interest to devs.
- Host: GitHub
- URL: https://github.com/neiljbrown/java11-examples
- Owner: neiljbrown
- Created: 2019-02-23T17:59:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-14T08:56:18.000Z (about 4 years ago)
- Last Synced: 2025-03-24T14:44:08.257Z (9 months ago)
- Topics: examples, java, java11
- Language: Java
- Size: 114 KB
- Stars: 7
- Watchers: 1
- Forks: 86
- Open Issues: 1
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= Java 11 Examples
:sectlinks:
:sectnums:
:sectnumlevels: 4
:toclevels: 4
== Purpose
This project provides a set of Java code examples illustrating the subset of new language features and APIs that were
introduced in Java 11 that are of interest to developers
The examples are implemented as a set of easy to run tests, using JUnit (5).
For a broader look at the new features in JDK 11 that are of most interest to developers see my blog post
https://neiljbrown.com/2018/11/10/java-11-new-features-code-examples-support/[Java 11 – New Features, Code Examples & Support].
== Source Code
The source code for the examples can be found in the src/test/java folder.
An explanation of the showcased language features, along with guidance on their usage, can be found in the Javadoc of
each of the code examples. (See the commands for generating Javadoc below).
== Building and Running the Examples
You will need to install a Java 11 JDK.
Support is provided for building and running the project using either Gradle or Maven as described in the sections
below.
=== Gradle
The minimum required version of Gradle will be installed if you execute the build using the supplied Gradle wrapper
script (./gradlew).
To compile and run all the example tests, enter the following command in the project's root folder:
`./gradlew clean test`
To generate the Javadoc, use the following command:
`./gradlew clean javadocTests`
The generated Javadoc can be found in the standard location for a Gradle project - build/docs/javadoc/index.html.
For more details of Gradle build support see build.gradle in the project's root folder.
=== Maven
The minimum required version of Maven will be installed if you execute the build using the supplied Maven wrapper
script (./mvnw).
To compile and run all the example tests, enter the following command in the project's root folder:
`./mvnw clean test`
To generate the Javadoc, use the following command:
`./mvnw javadoc:test-javadoc`
The generated Javadoc can be found in the standard location for a Maven project - target/site/testapidocs/index.html.
For more details of Maven build support see pom.xml in the project's root folder.
== Other Examples
You can find similar code examples for the new features introduced in earlier versions in Java in my other code
repos, including -
* Java 10 - See https://github.com/neiljbrown/java10-examples[GitHub project neiljbrown/java10-examples]
* Java 9 - See https://github.com/neiljbrown/java9-examples[GitHub project neiljbrown/java9-examples]
* Java 7 and 8 - See my https://bitbucket.org/neilbrown/[Bitbucket projects]