I need to design a simple web app which has only 3 pages, namely log in, a page to enter new data and view previously entered data, and one to manage what the users entered. There are a few more constraints, but that's the general idea.
I was wondering what you think of the following design:
- one single (!) static html page, with a little bit jquery render and communication logic
- a RESTful web service (Jersey, for example), which would accept data send by jquery and process it (java-json conversion would be ensured using jackson)
- a java model persisted in a database
basically, the HTML + CSS would be the view, jquery + jersey my controler, and then the java model. Everything would be done using good programming principles, etc.
From what I understand, this would allow to very quickly develop my stuff, have a very modular design, be highly compatible (regular DB-java-jquery-html), be easily able to scale out if needed, and have blazingly fast response times.
Since I'm not out of college yet, and I'm on my own to do this (thus have no one to talk about on this design) I'm not sure how good my design is. Namely, I wonder about the following questions:
- Are there any flaws I am overseeing?
- Am I over-engineering/complicating this?
- Is there any security flaw I didn't see (from the design, not from the implementation)
Thanks; P.