I know this question is too wide to be answered with a simple "use this framework", but I would really appreciate your advice on that one.
I'm looking to make a (quite complex) project than will run over an API. I'm open to any programming language (PHP, Python, Java mostly) and found many frameworks that are more oriented to make a RESTful web server.
The only major constraint I have is that I would have a reusable, simple and not-code-spaghetti independent package in order to improve my API later easily or even switch to an other framework with no pain.
For Python & Java, I thought about making a dedicated package. Each action would call the dedicated method in the package, the package would return object/dict and the action would transform it to the proper format.
After many research, I hesitate between two framework that could be good for my work but I need your advice because I wouldn't make any mistakes here.
- Play! Framework (Java)
- Pros :
- Router are RESTFul oriented (you define the method (GET, POST, etc), the request and the class.method to use)
- You don't have to make one class per action
- Cons :
- The Model is already included. If I later change the framework, maybe I will be stuck with it (but apparently not since Play! seems to use JPA)
- Maybe the fact that if I want to send parameters to the action that would be defined in the method signature, I have to adopt the ClassName.properties instead of a json like {ClassName: {properties: 'value'}}
- Pros :
- Tornado Web (Python)
- Pros :
- Seems to be very powerful : used by FriendFeed (at least) !
- Auth via major OpenId, OAuth and Facebook already implemented
- Very light (could be a problem)
- Cons :
- Not so popular : you understand better the work by going into the code than the doc
- Urls seems to be very basics (As far as I saw it, you have to define all the urls in one file, with all the class included)
- One Class per action (that could be heavy)
- Decorators for the basic (testing if user is auth, etc) must be made
- Pros :
For using them in production, it would be easily possible with apache & mod_proxy or nginx.
So, my questions is quite simple : what would you choose (between those two or others, I'm not closed to suggestions) and why ?
Thank you really much for your advice!