Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
That's not much of a design :) – user647772 Feb 1 '12 at 10:07

2 Answers

up vote 2 down vote accepted

Your design is pretty good. You can have a look at my proof of concept that works exactly as you've design, except that it uses jqGrid to handle all CRUD operations and has a mocked DAO.

Security is not an issue, HTML and JavaScript can be served anonymously, but all REST operations need to be secured. You have to login first to obtain JSESSIONID cookie and pass it with every AJAX call (this should actually happen automatically).

share|improve this answer
Yup, that's how I intended to do session management using cookies. – Habfast Feb 1 '12 at 10:14

This is a good design. In fact, you can just release your API this way, the way Facebook, Twitter do. All you need to do is to explain what your RESTful service expects and what returns. And anyone can develop an app over it. So, this is good part. Lets answer your specific questions:

Are there any flaws I am overseeing?

No. In fact, these are simple CRUD operation, pretty standard stuff. You could get the same done quickly (called fast flash to bang), if you use a framework (Wicket, Play!, Struts-2) that handles many things for you. What you are doing is developing components by your own.

Am I over-engineering/complicating this?

Yeah, a little. If it's just a college project, and you're in control. I would suggest just go with a web-framework that will be the fastest thing, probably. They might hide a lot of implementation details that you may have to do with your current design.

Is there any security flaw I didn't see.

Nope. As long as you are taking care of authentication and authorization on URLs that need it, you are safe. You could consider HTTPS, but that's too much.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.