January 2018
Intermediate to advanced
414 pages
10h 29m
English
Now, let's navigate in our code so we can edit it for adding some changes.
package com.microservices.chapter2import org.springframework.boot.autoconfigure.SpringBootApplicationimport org.springframework.boot.runApplication@SpringBootApplicationclass Chapter2Applicationfun main(args: Array<String>) { runApplication<Chapter2Application>(*args)}
This code will create and run a Spring Boot application, that will launch a microservice listening on port 8080.
We can see that, in the gutter area of the Edit Window, there ...
Read now
Unlock full access