bashan
bashan

Reputation: 3602

Show list of all routes in Akka HTTP

I have a small Akka Http server. Is there a way of listing all server routes/services?

Upvotes: 10

Views: 2918

Answers (1)

Kevin
Kevin

Reputation: 323

Currently this isn't simple without creating your own wrapper around the akka-http Scala DSL. More discussion here: https://github.com/akka/akka-http/issues/201

Long story short the Scala DSL isn't conducive to introspection.

Upvotes: 4

Related Questions