{"id":23525420,"url":"https://github.com/niteeshl/springboot-project-firstmelon-internship","last_synced_at":"2026-05-05T14:32:53.652Z","repository":{"id":268873254,"uuid":"905705228","full_name":"NiteeshL/Springboot-project-FirstMelon-internship","owner":"NiteeshL","description":"A springboot application to maintain student database. Made during my internship training in FirstMelon software systems pvt ltd","archived":false,"fork":false,"pushed_at":"2024-12-19T11:48:54.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T01:44:29.851Z","etag":null,"topics":["java","jsp","maven","postgresql","rest-api","springboot","springframework"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NiteeshL.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-12-19T11:07:23.000Z","updated_at":"2025-01-04T10:47:32.000Z","dependencies_parsed_at":"2024-12-19T12:37:52.176Z","dependency_job_id":"d1f18870-faeb-4fac-85a6-d36933c19b60","html_url":"https://github.com/NiteeshL/Springboot-project-FirstMelon-internship","commit_stats":null,"previous_names":["niteeshl/springboot-project-firstmelon-internship"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiteeshL%2FSpringboot-project-FirstMelon-internship","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiteeshL%2FSpringboot-project-FirstMelon-internship/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiteeshL%2FSpringboot-project-FirstMelon-internship/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiteeshL%2FSpringboot-project-FirstMelon-internship/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NiteeshL","download_url":"https://codeload.github.com/NiteeshL/Springboot-project-FirstMelon-internship/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254101559,"owners_count":22014908,"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":["java","jsp","maven","postgresql","rest-api","springboot","springframework"],"created_at":"2024-12-25T19:09:20.113Z","updated_at":"2026-05-05T14:32:53.624Z","avatar_url":"https://github.com/NiteeshL.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring Boot Demo Project\n\nThis is a simple Spring Boot application designed to demonstrate the core functionality of a Spring Boot project. It includes basic setup, controller mapping, and database integration.\n\n---\n\n## Table of Contents\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Setup Instructions](#setup-instructions)\n- [Build and Run the Project](#build-and-run-the-project)\n- [Endpoints](#endpoints)\n- [Troubleshooting](#troubleshooting)\n- [Contributing](#contributing)\n- [License](#license)\n\n---\n\n## Features\n\n- RESTful API endpoints with Spring Boot\n- Integration with a relational database (e.g., MySQL, PostgreSQL, or H2)\n- Support for embedded server (Tomcat)\n- Custom error handling and whitelabel error page replacement\n\n---\n\n## Technologies Used\n\n- **Spring Boot 3.x**\n- **Java 17+**\n- **Maven** for dependency management\n- **Database**: MySQL/PostgreSQL or H2 (embedded)\n- **Spring Data JPA** for database operations\n\n---\n\n## Setup Instructions\n\nFollow these steps to run the project locally:\n\n1. Prerequisites\n\n- Java 17 or higher installed\n- Maven installed\n- Database server (e.g., MySQL/PostgreSQL) running\n\n2. Clone the Repository\n```bash\ngit clone https://github.com/your-username/demo-project.git\ncd demo-project\n```\n3. Configure the Application\n- Update the application.properties file located in src/main/resources:\n```properties\n# Server port\nserver.port=8080\n\n# Database configuration\nspring.datasource.url=jdbc:mysql://localhost:3306/databasename\nspring.datasource.username=your-username\nspring.datasource.password=your-password\nspring.jpa.hibernate.ddl-auto=update\n```\n4. Create a database named demo in your MySQL/PostgreSQL server:\n\n```sql\nCREATE DATABASE databasename;\n```\n---\n\n### Build and Run the Project\n\n1. Clean and build the project:\n```bash\nmvn clean install\n```\n2. Run the project:\n ```bash\n mvn spring-boot:run\n ```\n 3. Open your browser and visit:\n ```\n http://localhost:8080\n ```\n---\n ## Endpoints\n\n| Method | Endpoint        | Description                      |\n|--------|-----------------|----------------------------------|\n| GET    | `/`             | Displays a welcome message.     |\n| GET    | `/error`        | Custom error page.              |\n| GET    | `/api/resource` | Example REST API endpoint.      |\n\n---\n ### Troubleshooting\n 1. Whitelabel error page (404)\n -Ensure a controller is mapped to / or static resources are present in the src/main/resources/static folder.\n \n 2. Database Connection issues\n -Verify the database credentials in application.properties.\n -Ensure the database server is running.\n\n 3. Port Already in Use\n -Change the port in application.properties\n ```\n server.port=8081\n```\n4. Logs for more information\n-Run with debug mode enabled:\n```bash\nmvn spring-boot:run -Dspring-boot.run.arguments=--debug\n```\n---\n### Contributing\nContributions are welcome! Feel free to open issues or submit pull requests to improve this project.\n\n---\n### License\nThis project is licensed under the MIT License. See the LICENSE file for more details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniteeshl%2Fspringboot-project-firstmelon-internship","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fniteeshl%2Fspringboot-project-firstmelon-internship","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniteeshl%2Fspringboot-project-firstmelon-internship/lists"}