Hello, world We start with the HelloWorld app and the HelloWorldService, which show the low-level Spray API. We begin with class HelloWorldService extends Actor { def receive: Receive = { case r: HttpRequest => sender ! HttpResponse(entity = HttpEntity("Hello, world")) … Read more
↧