Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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}.
- Host: GitHub
- URL: https://github.com/gargswati12/spring-boot-crud-using-spring-security-mysql-database-and-postman
- Owner: gargswati12
- Created: 2024-11-04T14:03:44.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-06T08:31:49.000Z (3 months ago)
- Last Synced: 2024-11-13T16:50:30.278Z (3 months ago)
- Topics: java, mysql, postman, spring
- Language: Java
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.