I have two tables, each with about 10 columns. I need to develop a CRUD web application that can search, read, update, create or delete records from this table. The update is limited to two fields – status & a date field.
I was wondering what is the quickest way of achieving this CRUD application. We use java / Oracle Application Server 10g (I know, I know!!), so I guess the CRUD application needs to be in java. Also because it is an internal app I don’t really need it to be super robust and fancy and all. Just a basic functionality that works with a web UI. We use vanilla servlets / jsp now.
TL;DR I guess (not sure) my question is about which framework I can use to achieve FASTEST results for a CRUD application for a 2 table schema.
openxava
Others