Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/squid-beast/spring-mvc
Spring MVC project that includes the usage of GET and POST mappings, database integration.
https://github.com/squid-beast/spring-mvc
css html java jsp spring-mvc springboot
Last synced: 14 days ago
JSON representation
Spring MVC project that includes the usage of GET and POST mappings, database integration.
- Host: GitHub
- URL: https://github.com/squid-beast/spring-mvc
- Owner: Squid-Beast
- Created: 2025-01-18T18:12:43.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2025-01-27T19:16:44.000Z (14 days ago)
- Last Synced: 2025-01-27T20:27:37.160Z (14 days ago)
- Topics: css, html, java, jsp, spring-mvc, springboot
- Language: Java
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Overview of the Project
This Spring MVC project is a web application that demonstrates:Handling HTTP GET and POST requests using annotations like @GetMapping and @PostMapping.
Integrating with a relational database using Spring Data JPA or JDBC Template.
Performing basic CRUD operations in the database.
Serving dynamic views using Thymeleaf, JSP, or other templating engines.Project Features:
Database Integration: Connects to a relational database (e.g., MySQL, PostgreSQL, H2) using a DataSource.
Handles operations such as saving, retrieving, updating, and deleting records.HTTP Mappings:
GET requests to fetch and display data.
POST requests to submit or update data in the database.Dynamic Views:
Uses templating for rendering data fetched from the database.