Are there Java app templates similar to appfuse?

I suppose I'm looking for hints and information about something that is “more” than a web application like JSF and the like. It looks like Rails for Java web applications ... or I can be completely out of the database.

+3
source share
3 answers

I'm not quite sure what you are looking for, but if it is "Rails for Java Web Applications", the closest thing to Grails . In addition, Spring Roo (also from SpringSource, like Grails) and Seam .

What these frameworks have in common is that they provide a complete stack for building Java-based web applications along with performance tools (and the performance language in the case of Grails, as Groovy developers would say).

The main differences are as follows:

  • Grails: Spring stack + Groovy language + working shell
  • Roo: Spring stack + simple Java + shell with performance
  • Seam: Java EE stack (EJB3, JSF, etc.) + simple Java + shell with performance
+3
source

The best Java web design I know is wickets. http://wicket.apache.org There are many extensions, but best of all is the excellent separation of java code and html.

0
source
0
source

Source: https://habr.com/ru/post/1762148/


All Articles