I am using akka and akka-http 2.4.2, and I am trying to understand the internal components of them.
What to use akka and akka-http to start a leisure web service?
Does he use embebedd web service? (e.g. Jetty?)
How to get its version?
The code that I run to run my leisure web service:
implicit val actorSystem = ActorSystem("system") implicit val actorMaterializer = ActorMaterializer() val route: Route = { blablabla ... } val bind = Http().bindAndHandle(route, "0.0.0.0", 8080)
Thanks.
source share