Skip to content

Raajkr07/Hospital_Management_System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🏥 Hospital Management System

A Java Servlet and MySQL-based web application to manage hospital patient and doctor data.

💡 Features

  • Add / Delete Patients
  • Add / Delete Doctors
  • View Patients & Doctors
  • Lightweight JSON API

⚙️ Technologies

  • Java Servlets (JSP)
  • MySQL Database
  • HTML, CSS
  • Apache Tomcat

🛠 Setup Instructions

  1. Clone the repo:
    git clone https://github.com/Raajkr07/Hospital_Management_System.git

  2. Create MySQL DB hospital_db.

  3. Add tables:

    CREATE TABLE patients (
      id INT AUTO_INCREMENT PRIMARY KEY,
      name VARCHAR(100),
      age INT,
      gender VARCHAR(10),
      disease VARCHAR(100)
    );
    
    CREATE TABLE doctors (
      id INT AUTO_INCREMENT PRIMARY KEY,
      name VARCHAR(100),
      age INT,
      gender VARCHAR(10),
      specialty VARCHAR(100)
    );
    

About

Hospital Management System is a web-based Java Servlet application designed to streamline and simplify the management of patients and doctors in a hospital environment. The application uses Java Servlets, MySQL, and JSP, and is built in NetBeans IDE.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages