Skip to content

Latest commit

Β 

History

History
29 lines (21 loc) Β· 815 Bytes

File metadata and controls

29 lines (21 loc) Β· 815 Bytes

🌐 Spring Boot Web Demo

This is a simple Spring Boot + JSP demo project for learning and practicing web development using Spring MVC, JSP, and Model binding.

πŸ“Œ Project Overview

This project allows users to:

  • Submit a form with aid and aname (Alien ID and name).
  • Automatically bind form data to a Java object (Alien class).
  • Display the submitted data on a result page using JSP and Model Attributes.

πŸ› οΈ Technologies Used

  • Java 17+
  • Spring Boot
  • JSP (Java Server Pages)
  • Maven
  • Tomcat (Embedded)
  • HTML & CSS

πŸ§‘β€πŸš€ Alien Form Submission

  • URL: /addAlien
  • HTTP Method: POST
  • Fields:
    • aid β†’ Alien ID (integer)
    • aname β†’ Alien name (string)
  • Result Page: Displays the submitted Alien object and a hardcoded course name (Java).