Spring web-based admin tool with CRUD

后端 未结 3 1439
花落未央
花落未央 2021-02-09 05:38

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 configurati

3条回答
  •  长情又很酷
    2021-02-09 06:01

    Simple answer to your question is No spring does not provide any tool for that but spring gives you the functionalities that can reduce your work but not with zero coding.

    example:

    • Using Spring Data JPA there is an Interface name curdRepository which takes care of the curd Operations we dont need to implement the methods for Curd Spring takes care of Curd operation.
    • Spring Security Provides the login configuration with the login form and logout mechanism.

    You can use spring boot or just visit the https://start.spring.io/ it will initialize the spring project with the dependencies you need

提交回复
热议问题