July 2018
Intermediate to advanced
116 pages
2h 41m
English
In this section, we're going to take a look at the following things:
Let's get started and dive into the code. I've prepared my IDE and a raw skeleton Maven project. What you see here is a very basic POM file:

There's one thing missing though; first, we need to define the required dependency for the Java EE 8 API. Let's do that:
<dependency> <groupId>javax</groupId> ...