The first time I encountered e.g. Ruby's Sinatra framework or PHP's Zend Framework, I wondered if there is something adequate in Java, it all seems so bloated here. Although there are myriads of frameworks around, I have found none so far that I deemed perfect for the kind of architecture I would like to implement.
I wanted to design a web application that would be heavy on the Javascript with most of the application logic implemented on the client, the Java back-end would more or less just serve as a data store or perform complex computations.
I did look through related questions here but I couldn't find the perfect answer, each of the suggested solutions had a quirk that would not match the requirements.
So this is what I am looking for, a open source framework with the following features:
- Convention over Configuration
- No XML configuration except for web.xml
- Pure Java (no Scala, no Groovy, ...)
- natural REST-style URLs such as /news/2011/july (no .do, no .jsp, ...)
- REST-aware
- it shouldn't force me to deploy on an application server (e.g. EJB should be optional)
- session support would be nice but not mandatory
- code generation as in Rails would be awesome but not mandatory
- minimum of dependencies, small in overall size
- MVC would be nice, but
- I'd like to be able to choose the M part, choose the persistence libraries on my own (no bundling).
- No automatically generated code for the view, neither HTML, Javascript, nor CSS
- An integrated template language would be nice, but it should be minimalistic (simple control flow, access to template variables)
- Layout support (i.e. you are able to specify a common template for similar views)
- Free choice of Javascript framework for the views
Basically this would mean an MVC framework that does the routing for me and offers template support for the views, but the rest is fully modular, no magic. Is there any minimalistic framework that would provide this (or at least is modular enough to be configured that way)?