Styles of Microservices
Friday, Mar 13, 2015
Styles of Microservices
You’ve heard that microservices allow development teams to use any language - how do you start? What is a microservice, really, anyway?
There’ve been tweets of microservices, emphasizing that they’re very short in code length and speedy to write, but is that really all they are, just a short bit of code?
Here’s an example using groovy with Pivotal’s Spring Boot:
@Grab("spring-boot-actuator")
@RestController
class GreetingsController { …