{"id":15055717,"url":"https://github.com/obaidulsaiki/project3_javafx01_e-commerceapplication","last_synced_at":"2026-02-13T05:37:40.367Z","repository":{"id":238239341,"uuid":"796161853","full_name":"obaidulsaiki/project3_JavaFx01_E-commerceApplication","owner":"obaidulsaiki","description":"Ecommarce application join project with israt sumaiya ripti for the partial fullfilment of the JAVA university course","archived":false,"fork":false,"pushed_at":"2024-06-29T15:54:55.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-14T05:41:33.274Z","etag":null,"topics":["css","java","javafx-application","sql"],"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/obaidulsaiki.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-05-05T05:50:08.000Z","updated_at":"2024-06-29T15:58:03.000Z","dependencies_parsed_at":"2024-05-05T06:33:23.338Z","dependency_job_id":"5e79848a-4f3e-49ca-91c0-b65154b5bd18","html_url":"https://github.com/obaidulsaiki/project3_JavaFx01_E-commerceApplication","commit_stats":null,"previous_names":["obaidulsaiki/javafx---ecommarce-applicaiton"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/obaidulsaiki/project3_JavaFx01_E-commerceApplication","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obaidulsaiki%2Fproject3_JavaFx01_E-commerceApplication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obaidulsaiki%2Fproject3_JavaFx01_E-commerceApplication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obaidulsaiki%2Fproject3_JavaFx01_E-commerceApplication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obaidulsaiki%2Fproject3_JavaFx01_E-commerceApplication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/obaidulsaiki","download_url":"https://codeload.github.com/obaidulsaiki/project3_JavaFx01_E-commerceApplication/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obaidulsaiki%2Fproject3_JavaFx01_E-commerceApplication/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274291346,"owners_count":25258156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"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":["css","java","javafx-application","sql"],"created_at":"2024-09-24T21:45:50.915Z","updated_at":"2026-02-13T05:37:40.362Z","avatar_url":"https://github.com/obaidulsaiki.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# project3_JavaFx01_E-commerceApplication\n\nA JavaFX-based desktop e-commerce application template / demo that demonstrates core e-commerce flows (product browsing, cart management, and checkout) implemented using Java and JavaFX. This project is intended as a learning/sample application or a starting point for building a full-featured desktop storefront.\n\n---\n\n## Table of contents\n- [Features](#features)\n- [Demo screenshots](#demo-screenshots)\n- [Prerequisites](#prerequisites)\n- [Build \u0026 run](#build--run)\n- [Project structure](#project-structure)\n- [Configuration](#configuration)\n- [Testing](#testing)\n- [Contributing](#contributing)\n- [Troubleshooting](#troubleshooting)\n- [License](#license)\n- [Contact](#contact)\n\n---\n\n## Features\nCore features included or expected in this project:\n- Product catalog view (list / grid)\n- Product details screen\n- Shopping cart (add, update quantity, remove)\n- Simple checkout flow (order summary and confirmation; payment simulated)\n- Basic UI built with JavaFX (FXML or programmatic UI)\n- Local persistence for product and order data (file or embedded DB)\n- Search and simple filters (category, price)\n- Clean, modular code suitable for extension\n\n(If your implementation differs, adjust the above list to match the actual features.)\n\n---\n\n## Demo screenshots\nAdd screenshots to `docs/screenshots/` or `assets/` and reference them here:\n\n![Product List](docs/screenshots/product-list.png)  \n![Product Details](docs/screenshots/product-details.png)  \n![Shopping Cart](docs/screenshots/cart.png)\n\n---\n\n## Prerequisites\n- JDK 11+ (JDK 17 or later recommended)\n- JavaFX SDK (if you're not using a build tool that pulls JavaFX modules automatically)\n- Maven or Gradle (recommended for dependency and run management)\n- An IDE (IntelliJ IDEA, Eclipse, or VSCode) with JavaFX support is helpful\n\n---\n\n## Build \u0026 run\n\nBelow are common ways to run the application depending on your build setup.\n\nFrom an IDE\n1. Import project as a Maven or Gradle project.\n2. Ensure project SDK is set to the required JDK.\n3. Configure JavaFX SDK (if needed) or ensure the JavaFX dependencies are available.\n4. Run the main application class (usually `main.Main`, `com.yourpackage.MainApp` or similar).\n\nUsing Maven\n- To compile:\n  mvn clean compile\n- To run (if using the javafx-maven-plugin):\n  mvn clean javafx:run\n- To package:\n  mvn clean package\n  Then run the produced JAR (may require module-path flags for JavaFX):\n  java --module-path /path/to/javafx/lib --add-modules javafx.controls,javafx.fxml -jar target/project3_JavaFx01_E-commerceApplication.jar\n\nUsing Gradle\n- To run (if configured):\n  ./gradlew run\n- To build:\n  ./gradlew build\n\nNotes:\n- If your build uses JavaFX as external modules, include the `--module-path` and `--add-modules` args when running the jar.\n- If you prefer native installers, consider using jlink/packager or the JavaFX jpackage tool.\n\n---\n\n## Project structure\nA typical layout (adjust to actual repo layout):\n\n- src/\n  - main/\n    - java/              - Java source code (application, controllers, services, models)\n    - resources/         - FXML, CSS, images, localization files\n- docs/                 - Project documentation, screenshots\n- build/ or target/     - Build outputs\n- pom.xml or build.gradle\n\nKey packages (example)\n- com.example.app.ui — JavaFX controllers \u0026 views\n- com.example.app.model — Domain models (Product, Cart, Order)\n- com.example.app.service — Services for data, persistence, business logic\n- com.example.app.util — Utilities and helpers\n\n---\n\n## Configuration\n- Data files, DB connection strings, and application settings can be stored in `config/` or `src/main/resources/`.\n- Common properties: default currency, sample data path, persistence mode (in-memory / file / embedded DB).\n- To change the JavaFX SDK path for manual runs, update your run configuration or the startup scripts.\n\n---\n\n## Testing\n- Unit tests (if present) can be run with:\n  mvn test\n  or\n  ./gradlew test\n\n- For JavaFX UI tests consider TestFX or similar frameworks.\n\n---\n\n## Contributing\nContributions are welcome! Suggested workflow:\n1. Fork the repository\n2. Create a feature branch: `git checkout -b feat/new-feature`\n3. Commit your changes and push: `git push origin feat/new-feature`\n4. Open a pull request describing your changes\n\nPlease include:\n- A clear description of the change\n- Screenshots for UI changes\n- Any migration or compatibility notes\n\n---\n\n## Troubleshooting\n- javafx runtime errors: ensure JavaFX is on the module path and that `--add-modules` includes required modules (javafx.controls, javafx.fxml, etc.).\n- UnsatisfiedLinkError for platform libs: download the correct JavaFX SDK for your OS or use platform-specific classifiers in Maven/Gradle.\n- UI not loading FXML: confirm resource paths and correct FXMLLoader resource location.\n\n---\n\n## License\nThis project is provided under the MIT License. See [LICENSE](LICENSE) for details.  \n(Replace or update the license file as appropriate for your project.)\n\n---\n\n## Contact\nMaintainer: obaidulsaiki  \nProject: obaidulsaiki/project3_JavaFx01_E-commerceApplication\n\nIf you'd like, I can:\n- Customize this README with exact run commands and dependency details by inspecting the repository,\n- Add badges (build, license), or\n- Create a short CONTRIBUTING.md and LICENSE file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobaidulsaiki%2Fproject3_javafx01_e-commerceapplication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobaidulsaiki%2Fproject3_javafx01_e-commerceapplication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobaidulsaiki%2Fproject3_javafx01_e-commerceapplication/lists"}