{"id":30237773,"url":"https://github.com/chocotacoop/student_reporting_system","last_synced_at":"2026-04-12T07:35:12.954Z","repository":{"id":309970818,"uuid":"605686339","full_name":"ChocotacoOp/Student_Reporting_System","owner":"ChocotacoOp","description":"In this application, we can add student ,there marks,semester \u0026 See multiple reports of students. Average Percentage of whole class in recent semester Average marks of Students in a subject Top 2 Consistent Students across all semesters (Maximum average marks)","archived":false,"fork":false,"pushed_at":"2023-02-24T05:40:54.000Z","size":78,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-12T07:34:51.260Z","etag":null,"topics":["hibernate","java","mysql","springboot","springdata-jpa","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/ChocotacoOp.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,"zenodo":null}},"created_at":"2023-02-23T17:25:46.000Z","updated_at":"2023-02-23T17:41:14.000Z","dependencies_parsed_at":"2025-08-14T22:38:25.864Z","dependency_job_id":"65059e80-01af-4227-8251-92ee830b9bea","html_url":"https://github.com/ChocotacoOp/Student_Reporting_System","commit_stats":null,"previous_names":["chocotacoop/student_reporting_system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ChocotacoOp/Student_Reporting_System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChocotacoOp%2FStudent_Reporting_System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChocotacoOp%2FStudent_Reporting_System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChocotacoOp%2FStudent_Reporting_System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChocotacoOp%2FStudent_Reporting_System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChocotacoOp","download_url":"https://codeload.github.com/ChocotacoOp/Student_Reporting_System/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChocotacoOp%2FStudent_Reporting_System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31707953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["hibernate","java","mysql","springboot","springdata-jpa","swagger-ui"],"created_at":"2025-08-15T02:36:07.122Z","updated_at":"2026-04-12T07:35:12.948Z","avatar_url":"https://github.com/ChocotacoOp.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Student Reporting Application\n\nIn this application, we can add student ,there marks,semester \u0026  See multiple reports of students.\n- Average Percentage of whole class in recent semester\n- Average marks of Students in a subject\n- Top 2 Consistent Students across all semesters (Maximum average marks) \n\n# ER Diagram\n[![SwaggerUI](https://github.com/ChocotacoOp/Student_Reporting_System/blob/main/image/erd.png?raw=true)](https://github.com/ChocotacoOp/Student_Reporting_System/blob/main/image/erd.png?raw=true)\n\n# Functionalities\n-   Add Student\n-   Add subject and number to student\n-   Get Average Percentage of whole class in recent semester\n- Get Average marks of Students in a subject\n- Get top 2 Consistent Students across all semesters (Maximum average marks) \n\n## Backend Work\n-  Proper Exception Handling, and Input Validation\n-  Data Stored in the database(mySQL)\n\n## Installation and Run\n-   Before running the API server, we should update the database config inside the application.properties file.\n-   Update the port number, username and password as per your local database config.\n```\nserver.port=8901\nspring.datasource.url=jdbc:mysql://localhost:3306/salesken\nspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver\nspring.datasource.username=root\nspring.datasource.password=1234\nspring.jpa.hibernate.ddl-auto=update\nspring.jpa.show-sql=true\nspring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER\n```\n\n# Tech Stacks\n\n-   Java Core\n-   Spring Data JPA\n-   Spring Boot\n-   Hibernate\n-   MySQL\n\n\n# Backend\n\n## Student Controller\n\n#### POST : /addStudent\n```\n{\n    \"studentId\": 1,\n      \"name\": \"Rajat Santra\",\n      \"fatherName\": \"Dipak Santra\",\n      \"email\": \"rajat123@gmail.com\",\n      \"mobileNumber\": \"9382695437\",\n      \"gender\": \"MALE\"\n      \"Subject\":[]\n    \n}\n```\n\n#### PUT : /addSubjectToStudent/{studentId}\n```\n{\n    \"subjectId\" : 2,\n    \"studentId\": 1,\n     \"Semester\":FIRST,\n     \"Subject\":\"Maths\",\n     \"Marks\":75\n    \n}\n```\n\n\n#### Get :/getAverageOfRecentSemester\n```\n89.33\n```\n\n#### Get : /averageMarksOfStudents\n```\n{\n  \"Name\": \"Rajat Santra\"\n  \"English\" : 71,\n  \"Math\" : 85,\n  \"Science\" : 78\n}\n```\n\n#### Get : //top2ConsistentStudents\n```\n{\n  \"Rajat\" : 50,\n  \"Santra\" : 65\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchocotacoop%2Fstudent_reporting_system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchocotacoop%2Fstudent_reporting_system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchocotacoop%2Fstudent_reporting_system/lists"}