飞道的博客

《Java精品毕设》 基于java springmvc+mybatis酒水商城管理系统 (源码+sql)

512人阅读  评论(0)

老规矩 先上镇楼图

主要功能说明: 

管理员角色

查看客户信息,酒水管理,查看类目,订单管理等功能。

用户角色:

用户登录与注册,修改个人信息,查看首页,查看酒水分类,查看热销酒水,查看酒水详情,查看购物车,确认收货信息,查看用户订单等功能。

首页主要功能:

首页主要功能是酒水商城的商品展示、来一瓶古越龙山、可以查看酒水分类、用户可以进行网页登录和注册功能。以及根据关键字搜索酒水商品

用户注册功能:

数据账号密码以及确认密码等信息进行注册

热销酒水信息:

新品酒水推荐:

插入一些配置文件代码:


  
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <display-name>testssh2 </display-name>
  4. <welcome-file-list>
  5. <welcome-file>index.html </welcome-file>
  6. <welcome-file>index.htm </welcome-file>
  7. <welcome-file>index.jsp </welcome-file>
  8. <welcome-file>default.html </welcome-file>
  9. <welcome-file>default.htm </welcome-file>
  10. <welcome-file>default.jsp </welcome-file>
  11. </welcome-file-list>
  12. <listener>
  13. <listener-class>org.springframework.web.context.ContextLoaderListener </listener-class>
  14. </listener>
  15. <context-param>
  16. <param-name>contextConfigLocation </param-name>
  17. <param-value>classpath*:applicationContext.xml </param-value>
  18. </context-param>
  19. <filter>
  20. <filter-name>CharacterEncodingFilter </filter-name>
  21. <filter-class>org.springframework.web.filter.CharacterEncodingFilter </filter-class>
  22. <init-param>
  23. <param-name>encoding </param-name>
  24. <param-value>UTF-8 </param-value>
  25. </init-param>
  26. </filter>
  27. <filter-mapping>
  28. <filter-name>CharacterEncodingFilter </filter-name>
  29. <url-pattern>/* </url-pattern>
  30. </filter-mapping>
  31. <filter>
  32. <filter-name>openSessionInViewerFilter </filter-name>
  33. <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter </filter-class>
  34. </filter>
  35. <filter-mapping>
  36. <filter-name>openSessionInViewerFilter </filter-name>
  37. <url-pattern>/* </url-pattern>
  38. </filter-mapping>
  39. <filter>
  40. <filter-name>SystemContextFilter </filter-name>
  41. <filter-class>com.neusoft.filter.SystemContextFilter </filter-class>
  42. <init-param>
  43. <param-name>pageSize </param-name>
  44. <param-value>15 </param-value>
  45. </init-param>
  46. </filter>
  47. <filter-mapping>
  48. <filter-name>SystemContextFilter </filter-name>
  49. <url-pattern>/* </url-pattern>
  50. </filter-mapping>
  51. <filter>
  52. <filter-name>struts2 </filter-name>
  53. <filter-class>com.neusoft.filter.MyStrutsFilter </filter-class>
  54. </filter>
  55. <filter-mapping>
  56. <filter-name>struts2 </filter-name>
  57. <url-pattern>/* </url-pattern>
  58. </filter-mapping>
  59. </web-app>

酒水详情信息、可加入购物车:

我的购物车:

我的订单信息:

后台管理员主要功能模块:

后台管理员主要可以对商品信息进行管理、客户管理、类型管理和订单信息管理等操作、具体功能截图如下:

订单信息管理:

客户信息管理:

酒水商品信息管理:

管理员可以对商品信息进行一系列管理、比如设置推荐类型、加入首页推荐、修改、删除等操作

酒水类型管理:

好了、基于 java springmvc+mybatis酒水商城管理系统项目就分享介绍到这里了、这个酒水商城管理系统 项目比较齐全完善、适合学生作为课设和毕设来使用(Q:810569458)、

最后关注博主一键三连哟。

【推荐Java毕设课设项目】

 《Java精品毕设》 基于java ssm springboot+mybatis酒庄内部管理系统 (源码+sql+论文)

《java精品毕设》   基于JAVA springboot+mybatis智慧生活分享平台(源码+sql+论文)

《java精品毕设》基于JAVA springboot+VUE前后端分离疫情防疫平台(源码+sql+论文)

点击查看更多java精品毕设课设项目  >>>

 


转载:https://blog.csdn.net/weixin_39709134/article/details/117408780
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场