Java graduation design + ready-made products - "Java boutique design" is based on java springmvc+mybatis wine mall management system (source code + sql)

Posted by iceblox on Sat, 05 Feb 2022 11:16:14 +0100

Description of main functions:

Administrator role

View customer information, beverage management, view categories, order management and other functions.

User role:

Users log in and register, modify personal information, view the home page, view the classification of drinks, view hot drinks, view the details of drinks, view the shopping cart, confirm the receipt information, view user orders and other functions.

Main functions of homepage:

The main functions of the home page are the commodity display of the liquor mall, a bottle of Guyue Longshan, the ability to view the liquor classification, and the user can log in and register on the web page. And search for beverage products according to keywords

User registration function:

Data account, password, confirmation password and other information for registration

Hot drinks information:

New drinks recommendation:

Insert some profile Codes:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>testssh2</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:applicationContext.xml</param-value>
  </context-param>
  <filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
  </filter>
  <filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <filter>
    <filter-name>openSessionInViewerFilter</filter-name>
    <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>openSessionInViewerFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <filter>
    <filter-name>SystemContextFilter</filter-name>
    <filter-class>com.neusoft.filter.SystemContextFilter</filter-class>
    <init-param>
      <param-name>pageSize</param-name>
      <param-value>15</param-value>
    </init-param>
  </filter>
  <filter-mapping>
    <filter-name>SystemContextFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>com.neusoft.filter.MyStrutsFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

Beverage details, can be added to the shopping cart:

My shopping cart:

My order information:

Main function modules of background administrator:

The background administrator can mainly manage commodity information, customer management, type management and order information management. The screenshots of specific functions are as follows:

Order information management:

Customer information management:

Beverage commodity information management:

The administrator can perform a series of management on commodity information, such as setting recommendation type, adding home page recommendation, modifying and deleting

Beverage type management:

 


Author QQ:1334611189 ready-made products can be used directly. Functional design + code + task description + outline + paper + remote deployment are based on good faith. I hope you can support and help!

Click to view more java boutique graduation design + off the shelf product projects > > >

 

 

 

 

 

 

Topics: Java MySQL JSP Mybatis Spring