views:

383

answers:

4

I am a java devloper.Is there some django/ruby on rails kind of framework for java? I dont like to create the admin panel for each project i do.Its boring to same thing again and again. Also for my new project i have a short deadline and i would like to use some kind of java framework that speeds devlopment.

+1  A: 

Look into Grails:

http://www.grails.org/

Jon
+1  A: 

Recently I found a framework which looked very much like django. It's called playframework and you can find it here:

http://playframework.org/

I suggest you watch the video on the front page.

Another Java based django-like framework is Spring Roo, but in my opinion it's not quite ready. Last time I used it the documentation was virtually non-existent.

http://www.springsource.org/roo

Jens
thanks for replying.Can a application devloped using play run on tomcat??
As far as I know you can package all your files into a .war which then can be deployed on a tomcat server. But there is no really need for that. You can simply use the integrated server and just use http proxy like nginx/lighty in front of that.
Jens
Thanaks again.I have to deplop the application on a shared server from a third party.The third party wont allow me to run the integrated server i guess.
+1  A: 

Django can be run in jvm using jython, more information here http://docs.djangoproject.com/en/dev/howto/jython/

M.Shuwaiee
A: 

Also for my new project i have a short deadline and i would like to use some kind of java framework that speeds development.

I would be cautious about doing a project with a short deadline using a framework that I am not familiar with. It sounds like a recipe for deadline overruns.

Stephen C