0% found this document useful (0 votes)
30 views3 pages

Shoppingcart: Functionalities

This document summarizes an ecommerce web application developed using Spring MVC with features including user registration, CRUD operations for users to add products to carts and admins to manage products, Spring Security for user login/logout and role-based access, and Spring WebFlow for checkout processes with multiple steps. It was built using technologies like Java, Spring MVC, Hibernate, JSP, and deployed on Apache Tomcat server connected to an H2 database.

Uploaded by

Mohit Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views3 pages

Shoppingcart: Functionalities

This document summarizes an ecommerce web application developed using Spring MVC with features including user registration, CRUD operations for users to add products to carts and admins to manage products, Spring Security for user login/logout and role-based access, and Spring WebFlow for checkout processes with multiple steps. It was built using technologies like Java, Spring MVC, Hibernate, JSP, and deployed on Apache Tomcat server connected to an H2 database.

Uploaded by

Mohit Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

ShoppingCart

Developed an end to end Ecommerce web Application using Spring


MVC with multiple modules

Functionalities:

1. User Registeration

2. CRUD Operations like

 User can add product to his cart


 Admin can add product to the product list
 Admin can edit the product details
 Admin can delete the product from the list

3. Spring Security

 User can login the site


 The entire site will change according the role. Whether the client is
User or Admin
 user can logout after completing.

4. 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 cancel 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.

Installation:

1. Development Platform - Eclipse / IntelliJ Idea

o Download Eclipse
o Download IntelliJ Idea

2. Server - Apache Tomcat Server

o Download Apache Server

3. Build Tool - Maven

o Download Maven

4. Database - H2 Database

o Download 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

o Database properties:

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

 <prop key="hibernate.dialect">YOUR DB DIALECT</prop>

10. Run the server.

You might also like