All Projects → ikismail → Shoppingcart

ikismail / Shoppingcart

E-Commerce Website Using Java - Spring MVC in Maven - PROJECT IS NOT MAINTAINED

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Shoppingcart

spring-boot-shop-sample
My first web application using Spring Boot framework.
Stars: ✭ 66 (-66.67%)
Mutual labels:  ecommerce, spring-security, spring-mvc
online-shopping
This is an online shopping project using Spring Boot,Spring web-flow, Spring Rest Services and Hibernate. In this project we also used Spring Security with java and annotation configuration
Stars: ✭ 34 (-82.83%)
Mutual labels:  ecommerce, spring-security, spring-mvc
Spring Boot Shopping Cart
Simple shopping cart web app made using Spring Boot + Thymeleaf
Stars: ✭ 85 (-57.07%)
Mutual labels:  shopping-cart, spring-mvc, spring-security
Registration Login Spring Xml Maven Jsp Mysql
Registration and Login Example with Spring MVC, Spring Security, Spring Data JPA, XML Configuration, Maven, JSP, and MySQL.
Stars: ✭ 134 (-32.32%)
Mutual labels:  spring-mvc, spring-security
Aimeos
Integrated online shop based on Laravel 8 and the Aimeos e-commerce framework
Stars: ✭ 2,354 (+1088.89%)
Mutual labels:  ecommerce, shopping-cart
Grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
Stars: ✭ 1,768 (+792.93%)
Mutual labels:  ecommerce, shopping-cart
Spring Cloud Flycloud
🔥🔥🔥FlyClould 微服务实战项目框架,在该框架中,包括了用 Spring Cloud 构建微服务的一系列基本组件和框架,对于后台服务框架的搭建有很大的参考价值,大家可以参考甚至稍加修改可以直接应用于自己的实际的项目开发中,该项目没有采用Maven进行项目构建,Maven通过xml进行依赖管理,导致整个配置文件太过臃肿,另外灵活性也不是很强,所以我采用Gradle进行项目构建和依赖管理,在FlyTour项目中我们见证了Gradle的强大,通过简单的一些配置就可以轻松的实现组件化的功能。该项目共有11个Module工程。其中10个位微服务工程,这10个微服务工程构成了一个完整的微服务系统,微服务系统包含了8个基础服务,提供了一整套微服务治理功能,他们分别是配置中心module_c…
Stars: ✭ 1,514 (+664.65%)
Mutual labels:  spring-mvc, spring-security
Javadevjournal
Source code for the tutorials published on the Javadevjournal site.
Stars: ✭ 141 (-28.79%)
Mutual labels:  spring-mvc, spring-security
Spring Backend Boilerplate
The modularized backend boilerplate based on Spring Boot Framework, easy to get started and add your business part.
Stars: ✭ 134 (-32.32%)
Mutual labels:  spring-mvc, spring-security
Springbootwebapplicationstepbystep
Develop your first web application with Spring Boot Magic
Stars: ✭ 146 (-26.26%)
Mutual labels:  spring-mvc, spring-security
Vendure
A headless GraphQL ecommerce framework for the modern web
Stars: ✭ 2,961 (+1395.45%)
Mutual labels:  ecommerce, shopping-cart
Spring Boot Blog
Simple blog web app made using Spring Boot + Thymeleaf
Stars: ✭ 121 (-38.89%)
Mutual labels:  spring-mvc, spring-security
Securing Rest Api Spring Security
Spring Boot 2.2.x + Spring 5.2.x Rest Api Security Example
Stars: ✭ 117 (-40.91%)
Mutual labels:  spring-mvc, spring-security
React Shopping Cart
🛍️ Simple ecommerce cart application built with React Redux
Stars: ✭ 1,808 (+813.13%)
Mutual labels:  ecommerce, shopping-cart
Spring Mvc Tutorial
Spring MVC 5 Tutorial - Guide to spring mvc framework
Stars: ✭ 121 (-38.89%)
Mutual labels:  spring-mvc, spring-security
Vue Shoppingcart
ShoppingCart (Ecommerce) 🛒 Application using Vuejs, + Node.js + Express + MongoDB 🚀🤘
Stars: ✭ 141 (-28.79%)
Mutual labels:  ecommerce, shopping-cart
Reactjs Shopping Cart
example of shopping cart implemented in react.js and redux.js
Stars: ✭ 153 (-22.73%)
Mutual labels:  ecommerce, shopping-cart
Microweber
Drag and Drop Website Builder and CMS with E-commerce
Stars: ✭ 2,226 (+1024.24%)
Mutual labels:  ecommerce, shopping-cart
Pac4j
Security engine for Java (authentication, authorization, multi frameworks): OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 2,097 (+959.09%)
Mutual labels:  spring-mvc, spring-security
Ecommerce Laravel Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 99 (-50%)
Mutual labels:  ecommerce, shopping-cart

ShoppingCart - An amazing website HitCount Not Maintained

We developed an end to end Ecommerce web Application using Spring MVC with multiple modules

Project is not maintained anymore here #56

Functionalities:

  1. User Registeration Cell.

  2. CRUD Operations like

  • User can add product to their cart and purchase summary.
  • Admin can add product to the product list.
  • Admin can edit the product details.
  • Admin can delete the product from the list.
  1. Spring Security
  • User can login into the site.
  • The entire site will change according to the role, depending on whether the client is User or Admin.
  • User can logout after completing.
  1. Spring WebFlow
  • After adding products the cart the User can checkout using spring WebFlow.
  • Confirming User Details.
  • Confirming Shipping and Billing Address.
  • Receipt.
  • If the user cancels the webflow, it will go to cancel Page.
  • If the user submits the checkout, it will go to thank you page with the timing of delivery Report.

Tools and Technologies:

  • Technology : Bootstrap, Java, Spring MVC, Hibernate, JSP, Maven.
  • Application Servicer: Apache Tomcat Server.
  • Database : H2 Database (In memory database)

Installation:

  1. Development Platform - Eclipse / IntelliJ Idea

  2. Server - Apache Tomcat Server

  3. Build Tool - Maven

  4. Database - H2 Database

  5. Configuring tomcat with Eclipse (windows) - Click Here.

  6. Installation of maven in eclipse - Click Here.

  7. Clone the repository and import it to eclipse.

  8. Run your H2 Database.

  9. Configure your databse configuration in application-context.xml.

    • Database properties:

         <bean id="dataSource"
           class="org.springframework.jdbc.datasource.DriverManagerDataSource">
           <property name="driverClassName" value=YOUR DB DRIVER CLASS NAME" />
           <property name="url" value="YOUR DB URL" />
           <property name="username" value="YOUR DB USERNAME" />
           <property name="password" value="YOUR DB PASSWORD" />
         </bean>
      
      • Database Dialect:

        <prop key="hibernate.dialect">YOUR DB DIALECT</prop>
        
  10. Run the server.

Somethings wrong!!

If you find that something's wrong with this package, you can let me know by raising an issue on the GitHub issue tracker, or take it as a task and 🧑‍💻 resolve it 💪 --> create a PullRequest 🛠.

Contribution

Contributors are most welcome.

ScreenShots:

  • Home Page:

Alt text

  • Contact Us:

Alt text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].