主要功能说明:
管理员角色
查看客户信息,酒水管理,查看类目,订单管理等功能。
用户角色:
用户登录与注册,修改个人信息,查看首页,查看酒水分类,查看热销酒水,查看酒水详情,查看购物车,确认收货信息,查看用户订单等功能。
首页主要功能:
首页主要功能是酒水商城的商品展示、来一瓶古越龙山、可以查看酒水分类、用户可以进行网页登录和注册功能。以及根据关键字搜索酒水商品
用户注册功能:
数据账号密码以及确认密码等信息进行注册
热销酒水信息:
新品酒水推荐:
插入一些配置文件代码:
<?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>
酒水详情信息、可加入购物车:
我的购物车:
我的订单信息:
后台管理员主要功能模块:
后台管理员主要可以对商品信息进行管理、客户管理、类型管理和订单信息管理等操作、具体功能截图如下:
订单信息管理:
客户信息管理:
酒水商品信息管理:
管理员可以对商品信息进行一系列管理、比如设置推荐类型、加入首页推荐、修改、删除等操作
酒水类型管理:
好了、基于 java springmvc+mybatis酒水商城管理系统项目就介绍到这里了、这个酒水商城管理系统使用的是一些基础技术、适合学习和参考使用