June 2018
Intermediate to advanced
408 pages
11h 23m
English
Now that we have the microservice in place, we have to look at how to consume it. The plan is to create another web application using Spring Initializr and use the appropriate tools to consume the accounting microservice.
The following is the POM file for the client application:
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.packt.springhighperformance.ch09</groupId> <artifactId>ch-09-accounting-service-client</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> ...
Read now
Unlock full access