How does play framework application runs on AKKA server

Hi

How does play framework application runs on AKKA server

Thank you

Hey @ScalaDeveloper,

I’m not sure I understood your question, but Play uses Akka HTTP API to create a server backend. You can see the code here:

Play is extensible with regarding which server backend it will use, and Akka HTTP is the default one, but we also have a Netty implementation and you can create your own.

Best.