{"id":21189325,"url":"https://github.com/aytekinkaplan/spring_boot_updating","last_synced_at":"2026-05-03T23:35:02.752Z","repository":{"id":232649032,"uuid":"784870077","full_name":"aytekinkaplan/Spring_Boot_Updating","owner":"aytekinkaplan","description":"This Spring Boot application provides a web interface for managing student grades. Users can create new grades, update existing grades, and view a list of all submitted grades.","archived":false,"fork":false,"pushed_at":"2024-04-10T20:28:33.000Z","size":78,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-29T22:32:42.769Z","etag":null,"topics":["css3","getmapping","html5","java","java-8","postman","postmapping","thymeleaf"],"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/aytekinkaplan.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}},"created_at":"2024-04-10T18:10:46.000Z","updated_at":"2024-04-10T20:30:14.000Z","dependencies_parsed_at":"2024-04-10T20:57:28.186Z","dependency_job_id":"e29cf78a-e3e5-4bd3-a4be-d1d08d3b897e","html_url":"https://github.com/aytekinkaplan/Spring_Boot_Updating","commit_stats":null,"previous_names":["aytekinkaplan/spring_boot_updating"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aytekinkaplan/Spring_Boot_Updating","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FSpring_Boot_Updating","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FSpring_Boot_Updating/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FSpring_Boot_Updating/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FSpring_Boot_Updating/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aytekinkaplan","download_url":"https://codeload.github.com/aytekinkaplan/Spring_Boot_Updating/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aytekinkaplan%2FSpring_Boot_Updating/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32589262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"last_error":"SSL_read: 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":["css3","getmapping","html5","java","java-8","postman","postmapping","thymeleaf"],"created_at":"2024-11-20T18:51:45.119Z","updated_at":"2026-05-03T23:35:02.735Z","avatar_url":"https://github.com/aytekinkaplan.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"**Project Name:** Spring Boot Grade Submission (placeholder)\n\n**Description:**\n\nThis Spring Boot application provides a web interface for managing student grades. Users can create new grades, update existing grades, and view a list of all submitted grades.\n\n**Key Features:**\n\n- **Grade Creation:** Users can submit new grades by entering the student's name, subject, and score.\n- **Grade Update:** Existing grades can be edited by clicking the \"Update\" button next to a grade in the list. This takes the user to a form pre-populated with the current grade information.\n- **Grade List:** A table displays all submitted grades, including student name, subject, score, and an \"Update\" button for each grade.\n\n**Getting Started:**\n\n1. **Prerequisites:**\n   - Java 17 or later\n   - Maven\n\n2. **Clone the Repository:**\n\n   ```bash\n   git clone https://github.com/aytekinkaplan/Spring_Boot_Updating.git\n   ```\n\n3. **Install Dependencies:**\n\n   ```bash\n   cd Spring_Boot_Updating\n   mvn clean install\n   ```\n\n4. **Run the Application:**\n\n   ```bash\n   mvn spring-boot:run\n   ```\n\n   This will start the application on port 8080 by default. You can access the application in your web browser at http://localhost:8080/.\n\n**Project Structure:**\n\nThe project is organized into the following core packages:\n\n- `com.updatingworks.springbootupdating`: Contains the main application logic, including classes for grades (`Grade`) and a controller for handling form submissions (`GradeController`).\n- `resources`: Holds static resources like CSS stylesheets (`form-stylesheet.css` and `grades-stylesheet.css`).\n- `templates`: Contains Thymeleaf templates for the form (`form.html`) and grades list (`grades.html`).\n\n**Usage:**\n\n1. **Access the Form:**\n   - Visit http://localhost:8080/ in your web browser.\n   - This will display the form for creating a new grade.\n\n2. **Create a New Grade:**\n   - Enter the student's name, subject, and score in the respective fields.\n   - Click the \"Submit\" button.\n\n3. **Update an Existing Grade:**\n   - In the grades list, click the \"Update\" button next to the grade you want to modify.\n   - This will open the form pre-populated with the current grade information.\n   - Make the necessary changes and click \"Submit\" again.\n\n4. **View Grades List:**\n   - The grades list will display all submitted grades, including student name, subject, score, and an \"Update\" button for each grade.\n\n**Customization:**\n\n- You can customize the application by modifying the Thymeleaf templates (`form.html` and `grades.html`) and CSS stylesheets (`form-stylesheet.css` and `grades-stylesheet.css`).\n- The application can be further extended to support additional features, such as user authentication, grade deletion, or data persistence using a database.\n\n**Contribution:**\n\nWe welcome contributions to this project! Feel free to fork the repository, make changes, and submit a pull request.\n\n**License:**\n\nThis project is licensed under the Apache License 2.0 (see LICENSE file for details).\n\n**Additional Notes:**\n\n- Consider adding a `.gitignore` file to exclude unnecessary files from version control.\n- Include unit tests to ensure the application's functionality.\n- Explore implementing a more robust error handling mechanism.\n- For production deployment, you might explore packaging the application as a JAR or WAR file and using a container like Tomcat or Spring Boot Actuator for monitoring and management.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faytekinkaplan%2Fspring_boot_updating","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faytekinkaplan%2Fspring_boot_updating","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faytekinkaplan%2Fspring_boot_updating/lists"}