Various examples, mostly from the akka docs at http://doc.akka.io/docs/akka/2.4/scala.html
- FailureHandlingWithPartition
- ReactiveTweets with tests
- SimpleStreamExamples with tests
- StreamGraphs with tests
- Json4sExample
- example of Json4s based REST API supporting
- GET - of all resources and by ID
- POST - responds with location header pointing to created resource
- PUT - to specific ID with appropriate response for update of existing resource
- DELETE - of resource by ID
- tests using ScalatestRouteTest to test each HTTP method
- example of Json4s based REST API supporting
- MinimalExample
- minimal route example from docs with tests