Java Web Framework similar to Ruby on Rails paradigm

In your opinion, what is the Java infrastructure that is closest or similar to the Ruby on Rails paradigm (for example, configuration convention, DRY, noXML, etc.), but without the need to learn scripting languages, for example Groovy. And, of course, you have excellent documentation and community.

+7
source share
6 answers

You can take a look at the Play Framework following the MVC and RESTful architecture.

+4
source

Take a look at Grails , which follows the Ruby on Rails paradigm.

+5
source

Perhaps too late, but looked at Spring Roo?

+2
source

This question is a bit old, but this information may still be useful for people looking for a good java infrastructure: Try the ninja framework ( http://www.ninjaframework.org ). I tried various java web frameworks and it was the easiest to configure and use. Just follow the instructions on your page.

Developing with this is very simple, ninja web projects are standard Maven projects, so you can open them with any idea that Maven supports. For example, you can open a project using Netbeans and have a development server running in the commandprompt / terminal window. Each time you save your changes, the development server automatically reloads your changes and restarts. Or you can use a standard text editor if you want.

It is very convenient to develop. You can also easily debug NetBeans ( http://www.ninjaframework.org/documentation/debugging.html )

Note: if you use an ideal, for example netbeans, you do not actually start the project from netbeans, you simply edit your changes on the idea and save. The development server automatically picks up the changes.

+1
source
0
source

You can also take a look at Java on Rails.

http://www.javaonrails.net/

0
source

All Articles