{"id":20684857,"url":"https://github.com/sakthivelmadhu/excelupload","last_synced_at":"2025-03-10T21:54:54.884Z","repository":{"id":229451033,"uuid":"776741435","full_name":"SakthivelMadhu/excelupload","owner":"SakthivelMadhu","description":"This is a Spring Boot project for uploading Excel files, processing the data, and storing it in a database.","archived":false,"fork":false,"pushed_at":"2024-03-26T07:09:57.000Z","size":97,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-17T16:15:32.059Z","etag":null,"topics":["apachepoi","mysql-database","spring-boot","springdata-jpa","springweb"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/SakthivelMadhu.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":"2024-03-24T11:09:54.000Z","updated_at":"2024-03-26T06:26:33.000Z","dependencies_parsed_at":"2024-03-24T13:43:36.327Z","dependency_job_id":"0891c722-4e02-464f-bd09-fe468825ce99","html_url":"https://github.com/SakthivelMadhu/excelupload","commit_stats":null,"previous_names":["sakthivelmadhu/excelupload"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SakthivelMadhu%2Fexcelupload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SakthivelMadhu%2Fexcelupload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SakthivelMadhu%2Fexcelupload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SakthivelMadhu%2Fexcelupload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SakthivelMadhu","download_url":"https://codeload.github.com/SakthivelMadhu/excelupload/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242933895,"owners_count":20208912,"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":["apachepoi","mysql-database","spring-boot","springdata-jpa","springweb"],"created_at":"2024-11-16T22:24:17.357Z","updated_at":"2025-03-10T21:54:54.851Z","avatar_url":"https://github.com/SakthivelMadhu.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Excelupload\n\nThis is a Spring Boot project for uploading Excel files, processing the data, and storing it in a database.\n\n## Features\n\n- Upload Excel file through REST API\n- Process Excel file and save data to the database\n- Display data in a tabular format on the UI\n- User authentication and CRUD operations on data\n- Pagination, sorting, and error handling\n\n\n## Features\n\n### Data Validation\n- File Type Validation: Only Excel files in the .xlsx format are allowed for upload.\n- Field Data Type Validation: Ensure correct data types for each field in the Excel file (e.g., numeric, date).\n- Error Handling: Capture and return errors for invalid data types or other issues during processing.\n\n### UI Features\n- User-friendly Interface: A clean and intuitive UI design for seamless interaction.\n- Login Page: Authenticate users with login ID and password.\n- CRUD Operations: Perform Create, Read, Update, and Delete operations on the data.\n- Sorting: Allow users to sort data by different fields.\n- Pagination: Display data in pages to improve readability and navigation.\n\n\n## Technologies Used\n\n- Spring Boot\n- Spring Data JPA\n- Spring Web\n- MySQL database\n- Apache POI for Excel processing\n- React JS (or equivalent) for the frontend UI\n\n## Getting Started\n\nFollow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n\n- Java JDK 17\n- MySQL database\n- Maven\n- IDE (e.g., IntelliJ IDEA, Eclipse, or Spring Tool Suite)\n\n### Installation\n\n1. Clone the repository:\n\n```\nhttps://github.com/SakthivelMadhu/excelupload\n```\n\n2. Import the project into your IDE.\n\n3. Set up your MySQL database and update the `application.properties` file with your database configurations.\n\n4. Run the application.\n\n## Usage\n\n- Access the API endpoints to upload Excel files and perform CRUD operations on the data.\n- Access the UI to view the data in a tabular format and perform operations like sorting, pagination, and editing.\n\n## project structure\n\n```\n\nExcelupload/\n│\n├── src/\n│   ├── main/\n│   │   ├── java/\n│   │   │   └── com/\n│   │   │       └── example/\n│   │   │           └── excelupload/\n│   │   │               ├── controller/\n│   │   │               │   └── ExcelUploadController.java\n│   │   │               ├── model/\n│   │   │               │   ├── ErrorResponse.java\n│   │   │               │   ├── ExcelData.java\n│   │   │               │   ├── FileUploadResponse.java\n│   │   │               │   └── User.java\n│   │   │               ├── service/\n│   │   │               │   ├── ExcelUploadService.java\n│   │   │               │   └── UserService.java\n│   │   │               ├── repository/\n│   │   │               │   ├── ExcelDataRepository.java\n│   │   │               └── ExcelUploadApplication.java\n│   │   └── resources/\n│   │       ├── application.properties\n│   │       └── static/\n|   |               |__ styles.css\n|   |               |__ scripts.js\n│   │               └── index.html\n│   │       └── templates/\n│   └── test/\n│       └── java/\n│           └── com/\n│               └── example/\n│                   └── excelupload/\n│                       ├── controller/\n│                       │   └── ExcelUploadControllerTest.java\n│                       └── service/\n│                           ├── ExcelUploadServiceTest.java\n│                           └── UserServiceTest.java\n└── pom.xml\n\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsakthivelmadhu%2Fexcelupload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsakthivelmadhu%2Fexcelupload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsakthivelmadhu%2Fexcelupload/lists"}