July 2018
Intermediate to advanced
336 pages
9h 23m
English
In order to run the Bloggest web application, it requires that the Elasticsearch data store be up and running. The following command can be used to start Elasticsearch:
$ <Path to Elasticsearch>/bin/elasticsearch
When everything is put together, build and run the Bloggest, which you will be able to access using the http://<host>:<port> URL.
There are several ways to run a Spring Boot application, some of them are mentioned here:
$ mvn clean install$ java -jar target/<package-name>.[jar|war]
$ mvn clean spring-boot:run
After running, ...