Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Web Framework similar with Ruby on Rails paradigm

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.

like image 719
Agung Prasetyo Avatar asked May 27 '11 02:05

Agung Prasetyo


People also ask

What framework is similar to Ruby on Rails?

Django is to Python what Ruby on Rails is to Ruby. If you are looking for an alternative of Ruby, maybe something that works cross-platform, and enables full-stack web development, Python is a good option. If you decide on Python, Django is your go-to framework as it won't require frontend frameworks.

What would be the Java equivalent of Ruby on Rails?

JRuby, a JVM-based interpreter for Ruby, combines the ease of the Ruby language with execution in the powerful JVM, including full integration to and from Java libraries.

Is Django like Ruby on Rails?

Both Ruby on Rails and Django frameworks feature first-class scalability. However, RoR slightly outperforms Django in terms of scalability. Django is built on Python, a scalable and easy-to-learn programming language, while Ruby on Rails has the edge in scalability thanks to its flexible code.

Is Ruby on Rails a web framework?

Ruby on Rails (simplify as Rails) is a server-side web application framework written in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages.


2 Answers

Take a look at Grails which follows the paradigms of Ruby on Rails.

like image 126
khmarbaise Avatar answered Sep 24 '22 20:09

khmarbaise


You can take a look to Play Framework it follow MVC and RESTful architectures.

like image 23
JCorcuera Avatar answered Sep 24 '22 20:09

JCorcuera