Suitable web framework for the following scenario

Posted by Paralife on Stack Overflow See other posts from Stack Overflow or by Paralife
Published on 2010-05-25T20:29:55Z Indexed on 2010/05/25 20:31 UTC
Read the original article Hit count: 140

Filed under:
|

I have the following scenario: I have a view in an Oracle server and all Iwant is to show that view in a web browser, along with an input field or two for basic filtering. No users, no authentication, just this view maybe with a column or two linking to a second page for master detail viewing. The children are just string descriptions of the columns of the master that contain IDs. No inserts or updates. The question is which is the JAVA based web framework of choice that can accomplish the above in the minimum amount of

  1. code lines
  2. code time(subjective but also kind of objective if someone has expirience with more than one or two frameworks)
  3. configuration effort
  4. deployment effort and requirements.
  5. dependencies and mem footprint

Also: 6. Oracle APEX is not an option.

3,4 and 5 are maybe the same in the sense that they are everything except the functionality coding. I want something that I can compile, deploy by just FTPing to the database host, run and forget. (e.g. For the deployment aspect, Hudson way comes in mind (java -jar hudson.war and that's all)).

Also: 3,4 have priority over 1 and 2. (Explanation with a rant: I dont mind coding a lot as long as it is application code and not "why the fuck do we still use javascript over http for everything" code)

Thanks.

© Stack Overflow or respective owner

Related posts about java

Related posts about web-frameworks