vote up 2 vote down star
2

I want to create a CRUD (create, retrieve, update, delete) web site using the simplest Java tools. This site will allow users to manage four tables, two of which are reference tables used to build menus and two of which will undergo CRUD activity.

I'm leaning toward Stripes but I would like to hear the opinions of experience developers. The three key requirement are simple, simple, simple! I think Struts and Spring MVC are more complicated than I need.

-=beeky

flag

0% accept rate

7 Answers

vote up 5 vote down

grails

link|flag
Although I upvoted since I agree, outlining the reasons might be helpful. – Robert Munteanu Aug 18 at 20:08
vote up 2 vote down

The simpliest application would be a simple servlet handling a java-based sql engine (e.g. Derby (jabaDB) or HSQLDB)

You could even think of a CGI written in Java.

link|flag
+1 for being the only remotely sensible answer (that actually read the question) so far. – cletus Jan 30 at 21:08
vote up 0 vote down

rails on jruby or Grails. Yes, it's a different language, but they are not hard to learn and is worth it.

link|flag
I don't get you Ruby people giving Ruby answers to Java questions. Sigh. Even when I ignore Ruby on SO, I still get force-fed Ruby. :-) <- See the smiley, it's sarcasm. Don't bite my head off. – Chris Kaminski Aug 18 at 13:50
vote up 1 vote down

I propose GWT (google web toolkit), although I never played with Grails.

With GWT, your client gui is all written in java. There is a compiler that is used to create a javascript version of the application. So it's really easy to create simple GUI that reflects your object. When the user presses "Save", the object is received on the server side ready to be saved. Then, just use hibernate/JPA to save the object to the database.

We use to have a simple internal tool like that to manager user rights. The administrator just had to check/uncheck a checkbox. An AJAX call would send the updated object to the server, which just call save() on the hibernate layer.

link|flag
vote up 0 vote down

Try tox with Oracle XE. Both are free. Tox is GPLv2. Its a MVC architecture using XSLT, JavaScript, and PL/SQL.

link|flag
vote up 0 vote down

Here's a very simple Java Web stack I've been using lately:

Restlets can be run in any servlet container. Although they haven't worked well in Simple or Winstone, they have worked well for me in Jetty.

Optionally, H2 could be combined with Active Objects to give very lightweight persistence, but I haven't tried this myself.

If your data volume is small and you really want simple, why not ditch the rdbms altogether and use Prevayler, giving a complete stack consisting of just Restlet, and Prevayler?

link|flag
vote up 0 vote down

I won't recommend using a framework in your case. Simple jsp/servlet with jdbc should work.

But,If you do decide on using a framework, from my experience of having used Stripes,Struts1 and JSF(MyFaces) ,recommend Stripes without hesitation.

link|flag

Your Answer

Get an OpenID
or

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