{"id":24870934,"url":"https://github.com/sd-amitkumar/springboot-thymeleaf-crud-webmvcapp","last_synced_at":"2026-05-02T18:40:32.935Z","repository":{"id":191781636,"uuid":"685537741","full_name":"SD-Amitkumar/springboot-thymeleaf-crud-webMVCapp","owner":"SD-Amitkumar","description":"Spring Boot CRUD Web application Crud operation  using Spring Boot, ThymeLeaf, Spring Data JPA, Hibernate, MySQL database","archived":false,"fork":false,"pushed_at":"2025-01-31T11:57:31.000Z","size":72,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-09T12:06:41.930Z","etag":null,"topics":["docker","email-sender","github-config","java","mysql","restful-webservices","spring-boot","spring-security","springdata-jpa","springmvc","swagger-ui"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SD-Amitkumar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-31T13:05:07.000Z","updated_at":"2025-04-29T06:39:35.000Z","dependencies_parsed_at":"2025-01-31T12:45:46.902Z","dependency_job_id":null,"html_url":"https://github.com/SD-Amitkumar/springboot-thymeleaf-crud-webMVCapp","commit_stats":null,"previous_names":["sd-amitkumar/crud","sd-amitkumar/springboot-thymeleaf-crud-webmvcapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SD-Amitkumar/springboot-thymeleaf-crud-webMVCapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SD-Amitkumar%2Fspringboot-thymeleaf-crud-webMVCapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SD-Amitkumar%2Fspringboot-thymeleaf-crud-webMVCapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SD-Amitkumar%2Fspringboot-thymeleaf-crud-webMVCapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SD-Amitkumar%2Fspringboot-thymeleaf-crud-webMVCapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SD-Amitkumar","download_url":"https://codeload.github.com/SD-Amitkumar/springboot-thymeleaf-crud-webMVCapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SD-Amitkumar%2Fspringboot-thymeleaf-crud-webMVCapp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264455988,"owners_count":23611065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","email-sender","github-config","java","mysql","restful-webservices","spring-boot","spring-security","springdata-jpa","springmvc","swagger-ui"],"created_at":"2025-02-01T04:17:42.969Z","updated_at":"2026-05-02T18:40:32.891Z","avatar_url":"https://github.com/SD-Amitkumar.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Spring Boot CRUD Application with Swagger, Mail Service, and Authentication\nProject Overview\nThis Spring Boot application implements a robust backend system with various services, including CRUD operations,\nSwagger documentation for API testing, mail services, and secure authentication/authorization.\nIt is designed to provide a foundation for scalable and maintainable backend applications.\n\nKey Features\nCRUD Operations: Implemented for managing entities in the system.\nSwagger Integration: Provides interactive API documentation for easy testing and interaction.\nMail Service: Configured to send emails for various system notifications.\nAuthentication \u0026 Authorization: Secure API access using JWT (JSON Web Tokens) for authentication and role-based authorization.\nTechnologies Used\nSpring Boot: For building the application.\nSpring Data JPA: For database interaction.\nSwagger: For API documentation and testing.\nJWT: For secure authentication and authorization.\nSpring Mail: For sending emails.\nSetup and Installation\nPrerequisites\nJava 17+ (or any compatible version)\nMaven (or Gradle)\nMySql\nSteps to Set Up\nClone the repository:\n\nbash\nCopy\nEdit\ngit clone https://github.com/your-username/your-repository-name.git\nNavigate to the project directory:\n\nbash\nCopy\nEdit\ncd your-repository-name\nConfigure application properties:\n\nOpen src/main/resources/application.properties\nSet up your database connection, mail configurations, and JWT settings.\nRun the application:\n\nYou can start the Spring Boot application with Maven or your preferred build tool.\nbash\nCopy\nEdit\nmvn spring-boot:run\nAccess Swagger API Docs:\n\nOnce the application is running, navigate to http://localhost:8080/swagger-ui/ to access the Swagger UI and test the APIs interactively.\nAPI Endpoints\nAuthentication\nPOST /api/auth/login: Authenticate user and retrieve JWT.\nCRUD Operations\nGET /api/entities: Retrieve all entities.\nGET /api/entities/{id}: Retrieve a specific entity by ID.\nPOST /api/entities: Create a new entity.\nPUT /api/entities/{id}: Update an existing entity.\nDELETE /api/entities/{id}: Delete an entity by ID.\nMail Service\nPOST /api/mail/send: Send an email via the configured mail service.\nAuthentication \u0026 Authorization\nThe application uses JWT for secure authentication:\n\nUpon login, a JWT token is generated and returned.\nThe token is used for authorization on all protected routes via the Authorization header (Bearer \u003ctoken\u003e).\nContributing\nIf you'd like to contribute to this project:\n\nFork the repository.\nCreate a new branch (git checkout -b feature/your-feature).\nCommit your changes (git commit -am 'Add new feature').\nPush to the branch (git push origin feature/your-feature).\nOpen a pull request.\nLicense\nThis project is licensed under the MIT License.\n\nContact\nFor any questions or inquiries, feel free to reach out via email:kumar930amit@gmail.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsd-amitkumar%2Fspringboot-thymeleaf-crud-webmvcapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsd-amitkumar%2Fspringboot-thymeleaf-crud-webmvcapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsd-amitkumar%2Fspringboot-thymeleaf-crud-webmvcapp/lists"}