What is the full mvc framework stack? How is Grails a complete stack structure?

I am new to Grails, and on the Grails website I found the following suggestion.

Grails is Open Source, a complete stack, web application framework for the JVM.

What is the full structure of the web application stack? How does Grails range from Struts? Thanks

0
source share
1 answer

Usually, when you create applications, you need some functions:

  • Database Management (ORM)
  • Presentation (user interface)
  • Service level
  • Configuration

You can create your application using one API / Framework for each area.

, Grails , , .

+4

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


All Articles