in your opinion, what is java web framework that most close to or similar to the paradigm of the Ruby on Rails (like convention over configuration, DRY, noXML, etc), but without the need to learn scripting languages like Groovy. And of course have a great documentation and community.
-
Grails? what did Google say? And why no scripting language? Groovy is close enough to Java to have a shallow learning curve for many things.Hovercraft Full Of Eels– Hovercraft Full Of Eels2011-05-27 03:04:33 +00:00Commented May 27, 2011 at 3:04
-
grails is written in groovy. Is that Java?Sam 山– Sam 山2011-05-27 03:28:10 +00:00Commented May 27, 2011 at 3:28
-
hmm i've no experience in Groovy, but after see some screencast and try a little bit about groovy feature like assertion, is look like promising, thx 4 your answerAgung Prasetyo– Agung Prasetyo2011-05-27 07:01:18 +00:00Commented May 27, 2011 at 7:01
6 Answers
Take a look at Grails which follows the paradigms of Ruby on Rails.
1 Comment
You can take a look to Play Framework it follow MVC and RESTful architectures.
1 Comment
Maybe too late, but have looked at Spring Roo?
1 Comment
This question is a bit old, but this information may still be useful for people looking for a good java framework: Try ninja framework (http://www.ninjaframework.org). I have tried various java web frameworks and this one was by far the easiest to setup and use. Just follow the tutorial on their page.
Developing with it is very easy, ninja web projects are standard Maven projects so you can open them with any ide that supports Maven. For example, you can open the project with Netbeans, and have the development server running in a commandprompt/terminal window. Any time you save your changes the development server will pickup your changes and restart very quickly. Or you can use a standard text editor if you want.
Very comfortable to develop with. You can also debug very easily from Netbeans (http://www.ninjaframework.org/documentation/debugging.html)
Note: if you use an ide like netbeans, you dont actually run the project from netbeans, you just edit your changes on the ide and save. The development server picks up the changes automatically.
Comments
I think Stripes is what you are after.