{"id":30714217,"url":"https://github.com/thanthtooaung-coding/assignment-help","last_synced_at":"2026-07-13T17:31:47.375Z","repository":{"id":312206268,"uuid":"1046681095","full_name":"thanthtooaung-coding/assignment-help","owner":"thanthtooaung-coding","description":"just helping assignments","archived":false,"fork":false,"pushed_at":"2025-08-29T04:13:23.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-29T08:27:04.620Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/thanthtooaung-coding.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,"zenodo":null}},"created_at":"2025-08-29T04:06:15.000Z","updated_at":"2025-08-29T04:13:26.000Z","dependencies_parsed_at":"2025-08-29T08:28:13.897Z","dependency_job_id":"4437cae1-324a-415b-81b5-745f0a52b6f3","html_url":"https://github.com/thanthtooaung-coding/assignment-help","commit_stats":null,"previous_names":["thanthtooaung-coding/assignment-help"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/thanthtooaung-coding/assignment-help","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2Fassignment-help","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2Fassignment-help/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2Fassignment-help/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2Fassignment-help/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thanthtooaung-coding","download_url":"https://codeload.github.com/thanthtooaung-coding/assignment-help/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2Fassignment-help/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35430964,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-13T02:00:06.543Z","response_time":119,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-09-03T04:43:24.058Z","updated_at":"2026-07-13T17:31:47.359Z","avatar_url":"https://github.com/thanthtooaung-coding.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Assignment Help Repository\n\nThis repository contains two separate Spring Boot web application projects developed as solutions for lab assignments.\n\n## Projects\n\n1.  **Hospital Management System (`/hospital`)**\n2.  **CityMall Customer Registration (`/customer-registration`)**\n\n-----\n\n## 1\\. Hospital Management System\n\nThis project is a simple web application for managing hospital doctors. It allows for the addition of new doctors to a database through a web form.\n\n### Features\n\n  * A user-friendly form to register new doctors.\n  * Saves doctor information into a MySQL database.\n  * A confirmation page that displays the details of the newly added doctor.\n\n### Technologies Used\n\n  * Java\n  * Spring Boot\n  * Spring MVC\n  * JSP\n  * MySQL\n\n### Setup and Usage\n\n**1. Database Setup**\n\nCreate a table named `doctor` in your MySQL database using the following SQL script:\n\n```sql\nCREATE TABLE doctor (\n    id BIGINT AUTO_INCREMENT PRIMARY KEY,\n    name VARCHAR(100) NOT NULL,\n    specialization VARCHAR(100) NOT NULL,\n    contact_number VARCHAR(15),\n    salary DECIMAL(10, 2) NOT NULL\n);\n```\n\n**2. Configure Application**\n\nOpen the `src/main/resources/application.properties` file and update the database URL, username, and password.\n\n```properties\nspring.datasource.url=jdbc:mysql://localhost:3306/your_database_name\nspring.datasource.username=your_username\nspring.datasource.password=your_password\n```\n\n**3. Run the Application**\n\nNavigate to the `hospital` directory and run the application using Maven:\n\n```bash\nmvn spring-boot:run\n```\n\nThe application will be accessible at `http://localhost:4001/addDoctor`.\n\n-----\n\n## 2\\. CityMall Customer Registration System\n\nThis project is a customer registration system for the \"CityMall Online Shopping\" platform. It provides a web form for new users to register, and their details are saved to a MySQL database.\n\n### Features\n\n  * A comprehensive registration form for new customers.\n  * Saves customer data, including personal details and addresses, to a MySQL database.\n  * A success page to confirm the registration and display the customer's details.\n\n### Technologies Used\n\n  * Java / J2EE\n  * Spring Boot\n  * Spring MVC\n  * JSP\n  * MySQL\n\n### Setup and Usage\n\n**1. Database Setup**\n\nCreate a table named `customer_registration` in your MySQL database using the following SQL script:\n\n```sql\nCREATE TABLE IF NOT EXISTS customer_registration (\n    id INT AUTO_INCREMENT PRIMARY KEY,\n    first_name VARCHAR(255) NOT NULL,\n    last_name VARCHAR(255) NOT NULL,\n    email VARCHAR(255) NOT NULL,\n    phone VARCHAR(20) NOT NULL,\n    shipping_address VARCHAR(255) NOT NULL,\n    billing_address VARCHAR(255) NOT NULL,\n    password VARCHAR(255) NOT NULL\n);\n```\n\n**2. Configure Application**\n\nOpen the `src/main/resources/application.properties` file inside the `customer-registration` project and update your database credentials.\n\n```properties\nspring.datasource.url=jdbc:mysql://localhost:3306/citymall_db\nspring.datasource.username=your_username\nspring.datasource.password=your_password\n```\n\n**3. Run the Application**\n\nNavigate to the `customer-registration` directory and run the application using Maven:\n\n```bash\nmvn spring-boot:run\n```\n\nAccess the registration form at the application's root URL.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthanthtooaung-coding%2Fassignment-help","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthanthtooaung-coding%2Fassignment-help","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthanthtooaung-coding%2Fassignment-help/lists"}