Is it possible to reproduce a Java EE architecture with Play? By Java EE I mean these 4 layers: view, controller, service, model.
I know play use a better architecture only based on MVC, and I love this one, but I must use a Java EE architecture for a specific project and I’d like to use Play considering it’s the best Java framework from my point of view.
You can use spring module to integrates spring with play and use it for the service/model layers : http://www.playframework.org/modules/spring
Or you can simply create a Service layer between Controllers and Model and use some patterns by yourself (singleton, factory, …) to wire controllers with these services