5) Create folders in all projects to follow maven like directory structure layout for project source code: src/main/java and src/main/java/resources and test folders.
6) Weather microservice
a) WeatherService Interface with method:
weatherStatsForToday()
b) WeatherServiceImpl to return weatherstats from a random list of weather stats
7) Greeting Microservice
GreetingService Interface:
handleGreetFrom(String user)
a) Reply back to user with greeting message("Hello") along with weather stats fetched from weather microservice
b) Update the greeting message("Hello Again") for an existing user.