Spring web-based admin tool with CRUD

Cmyker picture Cmyker · Jul 14, 2017 · Viewed 8.9k times · Source

In PHP & Symfony world there is a tool called Sonata Admin https://sonata-project.org/ based on AdminLTE template, that is all-in-one admin tool with login, menu configuration, and what is most important - database tables HTML grid CRUD generators. The tool saves you tons of efforts by avoiding you writing boilerplate code, moreover, there might be a scenario that you would write zero code.

We need the same but for Java and Spring stack. Any recommendations?

Answer

Lucas Colombo picture Lucas Colombo · Jul 20, 2017

Take a look at JHipster project https://jhipster.github.io/

With it you can create Spring Boot+Angular based applications. It provides some cool tools for generating CRUD entities by scaffolding.