July 2018
Intermediate to advanced
116 pages
2h 41m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "In the preceding Dockerfile, we mentioned that we're using payara/server-full."
A block of code is set as follows:
<dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>8.0</version> <scope>provided</scope> </dependency>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
@PUT @Path("/{isbn}") public Response update(@PathParam("isbn") String isbn, Book book) { if (!Objects.equals(isbn, ...