Can you provide a brief comparison of Play framework vs: Spring Roo, Grails, Django. In terms of
- learning curve
- performance
- maturity
- speed development/code reuse
- convention over configuration
|
Can you provide a brief comparison of Play framework vs: Spring Roo, Grails, Django. In terms of
|
||||
|
|
|
First of all, the reference comparison is not traditional Java frameworks but Rails frameworks using other languages Ruby/Python/PHP. The aim of Play! is to be productive quickly and efficiently. You don't have to write hundreds of code lines and use IDE with the right tools and deploy and re-deploy on a existing web java container to test Hello world. In fact, it really looks like the framework that should have been imagined for Java several years ago instead of going on in the way of heavyweight JEE web frameworks with stateful concepts which are not needed and generally dangerous in the vast majority of web applications. Moreover, these big JEE designs do not fit NoSQL and cloud architectures where lightweight and scalability are the pre-requisites. As Pere said, this kind of study is generally very subjective so don't take everything I say as true and make your mind by yourself ;)
The module mechanism is really powerful and easy to be used in development so you can contribute your modules quite easily. A new dependency module manager is coming in v1.2. Conclusion: I like it and let be clear, this is my favourite java web framework... After that, I would put Grails but you get tied to Spring and Groovy which is not exactly what I prefer... Django is good but you need to go to Python... a choice of language ;) |
|||||||||||||||||
|
|
I worry that the answers to this question are going to be riddled with subjectivity, but I will try to put my objective view of your question. I will only answer for PlayFramework, because I have had little exposure to the rest. Learning Curve
Performance
Maturity
Speed of Development
Configuration
|
||||
|
|
|
This answer is only valid for play 1.x! I can only compare with Grails and a little bit with Spring ROO. Most of the things were said by the other who was quicker. For me I think the main advantage of Play compared with grails and Spring ROO is simplicity. In Grails and Spring ROO you have a lot of magic. It works fine and you are quick, but if have a problem or find a bug, you have a big problem. Grails use groovy ROO uses AspectJ for the magic. With Spring Source Tool Suite you can deal with it , in normal work, but however if something doesn't work as expected, you need experts. In Play you can run into bugs too, but mostly you can fix them quickly. If you need 4 hours to analyze a bug in play-framework, I would say it's a long time. Normally you will be quicker. In grails you need much more time. One complexity which grails and play have is hibernate, but I don't know a good alternative. |
||||
|
|
be aware I'm not an expert on any of the frameworks, and I believe some items depend a lot on your skills/current knowledge, but there I go (trying to be as neutral as possible):
|
|||
|
|
|
Play is a nice framework, it has a lot of nice features and functionality. And the experience is much better than any other java web framework that I have used. However there are a few things I would be a little concerned about for a site with substantial traffic. When using JPA module there are long lived transactions and a db connection per request when running in the default scenario. Also, I would like to see how the server will handle with an increased pool size of say 100 threads since the documentation states "Play is intended to work with very short requests. It uses a fixed thread pool to process requests queued by the HTTP connector. To get optimum results, the thread pool should be as small as possible. We typically use the optimum value of nb of processors + 1 to set the default pool size. That means that if a request is very long (for example waiting for a long computation) it will block the thread pool and penalize your application responsiveness. Of course you could add more threads to the pool, but it will result in wasted resources, and anyway the pool size will never be infinite." |
|||||
|
|
It has already been said but doesn't hurt to repeat:
Overall its a decent framework that i believe can support the scalability requirements nicely. |
|||
|
|
I'm not convinced with Play 2. In many ways it seems comprimised compared to Play 1. I don't even know why they still call it Play (my old code is useless). |
|||
|
|