{"id":23354007,"url":"https://github.com/monu-yaduwanshi/java-servlet-registration-system-","last_synced_at":"2026-05-09T00:07:43.662Z","repository":{"id":267425692,"uuid":"870644849","full_name":"Monu-Yaduwanshi/Java-servlet-Registration-System-","owner":"Monu-Yaduwanshi","description":"This project is a simple Registration System developed using Java Servlets, designed to capture user registration data and store it in a MySQL database. The application utilizes Apache Tomcat as the servlet container and is developed in Eclipse IDE.","archived":false,"fork":false,"pushed_at":"2025-11-30T09:39:39.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T14:33:04.687Z","etag":null,"topics":["css","eclipse-ide","html","http-redirect","http-requests","http-response","http-server","jakarta","jakarta-ee","jakartaee","java","java-ee","javaframework","mysql-database","servlet-jsp","tomcat-server","xml"],"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/Monu-Yaduwanshi.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}},"created_at":"2024-10-10T12:15:56.000Z","updated_at":"2025-11-30T09:39:43.000Z","dependencies_parsed_at":"2024-12-10T09:34:03.833Z","dependency_job_id":"f0130edc-9293-498d-9816-1e356cce8cc2","html_url":"https://github.com/Monu-Yaduwanshi/Java-servlet-Registration-System-","commit_stats":null,"previous_names":["monu-yaduwanshi/java-servlet-registration-system-"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Monu-Yaduwanshi/Java-servlet-Registration-System-","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monu-Yaduwanshi%2FJava-servlet-Registration-System-","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monu-Yaduwanshi%2FJava-servlet-Registration-System-/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monu-Yaduwanshi%2FJava-servlet-Registration-System-/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monu-Yaduwanshi%2FJava-servlet-Registration-System-/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Monu-Yaduwanshi","download_url":"https://codeload.github.com/Monu-Yaduwanshi/Java-servlet-Registration-System-/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monu-Yaduwanshi%2FJava-servlet-Registration-System-/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32802550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["css","eclipse-ide","html","http-redirect","http-requests","http-response","http-server","jakarta","jakarta-ee","jakartaee","java","java-ee","javaframework","mysql-database","servlet-jsp","tomcat-server","xml"],"created_at":"2024-12-21T09:17:48.598Z","updated_at":"2026-05-09T00:07:43.657Z","avatar_url":"https://github.com/Monu-Yaduwanshi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Java Servlet Registration System\n\nThis project is a simple Registration System developed using Java Servlets, designed to capture user registration data and store it in a MySQL database. The application utilizes Apache Tomcat as the servlet container and is developed in Eclipse IDE.\n\n## Features\n\n- **User Registration**: Users can register by providing their name, branch, semester, gender, hobbies, username, and password.\n- **Data Storage**: Registration details are stored in a MySQL database for future retrieval.\n- **Responsive Feedback**: The system provides feedback to users on successful registration or failure.\n\n## Technologies Used\n\n- **Java**: The core programming language for developing the application.\n- **Jakarta Servlet**: Used for creating the servlet-based web application.\n- **MySQL**: Used as the database management system to store user registration data.\n- **Apache Tomcat**: Serves as the web server to run the Java Servlets.\n- **Eclipse IDE**: The development environment used to build the project.\n\n## Setup Instructions\n\n### Prerequisites\n\n- **Java Development Kit (JDK)**: Ensure that JDK is installed on your machine.\n- **MySQL Server**: Ensure that MySQL Server is running and accessible.\n- **Apache Tomcat**: Download and set up Apache Tomcat.\n- **Eclipse IDE**: Download and install Eclipse IDE for Java EE Developers.\n\n### Database Configuration\n\n1. **Create a MySQL Database**:\n   - Create a database named `registrationdata`.\n   ```sql\n   CREATE DATABASE registrationdata;\nCreate a Student Table:\nCreate a student table with the following columns:\n\nCREATE TABLE student (\n    id INT AUTO_INCREMENT PRIMARY KEY,\n    name VARCHAR(100),\n    branch VARCHAR(50),\n    semester INT,\n    gender VARCHAR(10),\n    hobbies VARCHAR(255),\n    username VARCHAR(50) UNIQUE,\n    password VARCHAR(100)\n);\n\nDeployment\nImport the Project into Eclipse:\n\nLaunch Eclipse IDE and select the workspace where you want to import the project.\nGo to File \u003e Import \u003e Existing Projects into Workspace, then select the project.\nConfigure the Tomcat Server in Eclipse:\n\nRight-click on the project, go to Properties, and select Targeted Runtimes.\nCheck the box for the Apache Tomcat server and apply the changes.\nRun the Application on the Tomcat Server:\n\nRight-click on the project, go to Run As, and select Run on Server.\nChoose the Apache Tomcat server and click Finish.\nAccess the Application\nOpen your web browser and navigate to the appropriate URL, typically:\nhttp://localhost:8080/your-project-name\nYou should see the registration form where you can enter your details.\nContributing\nFeel free to fork the repository, make changes, and submit pull requests for any enhancements or bug fixes.\n\nLicense\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\nNotes\nAdjust any paths or project details to fit your specific implementation.\nIf there are specific instructions for connecting to the MySQL database, consider adding them in the appropriate section.\nAdditional Resources\nJava Servlets Documentation\nMySQL Documentation\nApache Tomcat Documentation.\n\n### Key Features of this `README.md`:\n- Clearly outlines the project, its features, technologies used, setup instructions, and how to access the application.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonu-yaduwanshi%2Fjava-servlet-registration-system-","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonu-yaduwanshi%2Fjava-servlet-registration-system-","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonu-yaduwanshi%2Fjava-servlet-registration-system-/lists"}