Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gargswati12/spring-boot-crud-using-spring-security-mysql-database-and-postman

Spring Boot CRUD project that creates, reads, updates and deletes records from the database table while authenticating them based on roles. Here we save password in the table as encrypted format but without using the password encoder class so we have to enclose the password after writing {bcrypt}.
https://github.com/gargswati12/spring-boot-crud-using-spring-security-mysql-database-and-postman

java mysql postman spring

Last synced: about 1 month ago
JSON representation

Spring Boot CRUD project that creates, reads, updates and deletes records from the database table while authenticating them based on roles. Here we save password in the table as encrypted format but without using the password encoder class so we have to enclose the password after writing {bcrypt}.

Awesome Lists containing this project

README

        

# crud-role
A CRUD based project that gives authorization to users based on roles.

It uses the Spring Boot 3.3 version and along with Spring security, a CRUD project is created where we employ the MYSQL database and create tables like employees, members and users, (SQL scripts added in the project), which Authenticates the users to access the tables according to the roles given such as Employee, Admin and Manager.