February 2019
Intermediate to advanced
446 pages
10h 55m
English
Here, the restaurant service implementation is explained. You can take the same approach to develop other services.
We'll start the restaurant-service module (mvn) by creating the restaurant-service POM inside the restaurant-service directory. We have added docker-maven-plugin to build the Docker image of the executable service that we'll discuss later in this chapter.
After this, we can add Java classes and other files. First, we'll add pom.xml:
... <parent> <groupId>com.packtpub.mmj</groupId> <artifactId>11537_chapter4</artifactId> <version>PACKT-SNAPSHOT</version> </parent> <name>online-table-reservation:restaurant-service</name> ...
Read now
Unlock full access