{"id":27132779,"url":"https://github.com/shardwiz/java-spring-boot-ecommerce","last_synced_at":"2025-04-13T10:14:42.064Z","repository":{"id":286495698,"uuid":"961576688","full_name":"shardwiz/java-spring-boot-ecommerce","owner":"shardwiz","description":"🛍️ A Spring MVC-based E-commerce application with user authentication, shopping cart, and admin controls. Features Spring Security, WebFlow checkout, and Bootstrap UI.","archived":false,"fork":false,"pushed_at":"2025-04-06T20:07:27.000Z","size":6071,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T10:14:38.402Z","etag":null,"topics":["ecommerce","ecommerce-website","shopping-cart","shopping-site","spring-mvc","spring-security","spring-webflow"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shardwiz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2025-04-06T19:46:49.000Z","updated_at":"2025-04-13T06:01:35.000Z","dependencies_parsed_at":"2025-04-06T20:44:43.749Z","dependency_job_id":null,"html_url":"https://github.com/shardwiz/java-spring-boot-ecommerce","commit_stats":null,"previous_names":["shardwiz/java-spring-boot-ecommerce"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shardwiz%2Fjava-spring-boot-ecommerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shardwiz%2Fjava-spring-boot-ecommerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shardwiz%2Fjava-spring-boot-ecommerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shardwiz%2Fjava-spring-boot-ecommerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shardwiz","download_url":"https://codeload.github.com/shardwiz/java-spring-boot-ecommerce/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248695482,"owners_count":21146956,"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","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":["ecommerce","ecommerce-website","shopping-cart","shopping-site","spring-mvc","spring-security","spring-webflow"],"created_at":"2025-04-07T22:26:36.339Z","updated_at":"2025-04-13T10:14:42.046Z","avatar_url":"https://github.com/shardwiz.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ShoppingCart - An amazing website\n\n\nWe developed an end to end **Ecommerce web Application using Spring MVC** with multiple\nmodules\n\n### Functionalities:\n\n1. User Registeration Cell.\n\n2. **CRUD Operations** like\n\n* User can add product to their cart and purchase summary.\n* Admin can add product to the product list.\n* Admin can edit the product details.\n* Admin can delete the product from the list.\n\n3. **Spring Security**\n\n* User can login into the site.\n* The entire site will change according to the role, depending on whether the client is User or Admin.\n* User can logout after completing.\n\n4. **Spring WebFlow**\n\n* After adding products the cart the User can checkout using spring WebFlow.\n* Confirming User Details.\n* Confirming Shipping and Billing Address.\n* Receipt.\n* If the user cancels the webflow, it will go to cancel Page.\n* If the user submits the checkout, it will go to thank you page with the timing of delivery Report.\n\n### Tools and Technologies:\n\n* **Technology** : Bootstrap, Java, Spring MVC, Hibernate, JSP, Maven.\n* **Application Servicer**: Apache Tomcat Server.\n* **Database** : H2 Database (In memory database)\n\n### Installation:\n\n1. Development Platform - Eclipse / IntelliJ Idea\n   * [Download Eclipse](https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/mars2).\n   * [Download IntelliJ Idea](https://www.jetbrains.com/idea/download/#section=windows).\n2. Server - Apache Tomcat Server\n\n   * [Download Apache Server](https://tomcat.apache.org/download-70.cgi).\n\n3. Build Tool - Maven\n\n   * [Download Maven](https://maven.apache.org/download.cgi).\n\n4. Database - H2 Database\n\n   * [Download H2 Database](http://www.h2database.com/html/download.html).\n\n5. Configuring tomcat with Eclipse (windows) - [Click Here](https://javatutorial.net/run-tomcat-from-eclipse).\n\n6. Installation of maven in eclipse - [Click Here](https://stackoverflow.com/questions/8620127/maven-in-eclipse-step-by-step-installation).\n\n7. Clone the repository and import it to eclipse.\n\n8. Run your H2 Database.\n\n9. Configure your databse configuration in **application-context.xml**.\n\n   * Database properties:\n\n\n        \u003c!-- database properties DataSource --\u003e\n\n            \u003cbean id=\"dataSource\"\n              class=\"org.springframework.jdbc.datasource.DriverManagerDataSource\"\u003e\n              \u003cproperty name=\"driverClassName\" value=YOUR DB DRIVER CLASS NAME\" /\u003e\n              \u003cproperty name=\"url\" value=\"YOUR DB URL\" /\u003e\n              \u003cproperty name=\"username\" value=\"YOUR DB USERNAME\" /\u003e\n              \u003cproperty name=\"password\" value=\"YOUR DB PASSWORD\" /\u003e\n            \u003c/bean\u003e\n\n      * Database Dialect:\n\n            \u003cprop key=\"hibernate.dialect\"\u003eYOUR DB DIALECT\u003c/prop\u003e\n\n10. Run the server.\n\n#### Somethings wrong!!\n\nIf you find that something's wrong with this package, you can let me know by raising an issue on the GitHub issue tracker, \nor take it as a task and 🧑‍💻 resolve it 💪 --\u003e create a PullRequest 🛠.\n\n#### Contribution\n\nContributors are most welcome.\n\n### ScreenShots:\n\n* Home Page:\n\n![Alt text](https://github.com/shardwiz/java-spring-boot-ecommerce/blob/master/src/main/webapp/WEB-INF/resource/images/screenshots/Home.jpg \"Home Page\")\n\n* Contact Us:\n\n![Alt text](https://github.com/shardwiz/java-spring-boot-ecommerce/blob/master/src/main/webapp/WEB-INF/resource/images/screenshots/ContactUs.png)\n\n* Product Management:\n\n![Alt text](https://github.com/shardwiz/java-spring-boot-ecommerce/blob/master/src/main/webapp/WEB-INF/resource/images/screenshots/AdminLoginProductList.jpg)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshardwiz%2Fjava-spring-boot-ecommerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshardwiz%2Fjava-spring-boot-ecommerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshardwiz%2Fjava-spring-boot-ecommerce/lists"}