• 鲜花商城|基于Springboot实现鲜花商城系统


    作者简介:Java、前端、Pythone开发多年,做过高程,项目经理,架构师

    主要内容:Java项目开发、毕业设计开发、面试技术整理、最新技术分享

    收藏点赞不迷路  关注作者有好处

    文末获得源码

    项目编号:BS-SC-017

    前言:

    本文设计并实现的商城系统,通过互联网来实现电子商城这一新兴产业,电子商城主要依靠于计算机互联网技术。如果缺少了这个技术,就没有办法实现电子商城,如果要想完美实现,互联网技术就要有重大发展。这样,电子商城就带动了科技的巨大进步。用户就可以随时随地完成搜索商品、挑选商品、购买商品的全部过程。对于商家而言,网上购买商品有如下优点:不受场地限制、购买成本低、降低了风险、有利于更好的刺激用户去消费购买。对于消费者来说,网上购买商品有如下优点:价格便宜方便性、足不出户就能买到满意的商品。对商家而言,网上出售商品有如下优点:可以为商家节省了商店的租金、人力成本减少,最重要的是商品的价格也会大大降低。

    本系统不同于传统的购物方式,用户使用起来更加方便,获得一个良好的购物体验。基于人们对美好生活的热爱,本电商系统主要以售卖鲜花为主。希望能通过本次毕业设计给自己四年大学所学的技术有一个很的总结,也希望通过这次毕业设计来检验和提升自己的技术能力。

    一,项目简介

    “花香”鲜花网店主要研究内容是引导用户挑选最适合自己的鲜花。使用户根据自身情况做出最科学的选择,选择最适合自己的鲜花。网店包括两种角色:用户、管理员。具体实现以下功能模块:

    用户模块:

    1. 游客页面:网店最开始的页面,陈列了所有商品信息,任何人皆可访问。

    但是重要权限受限制。

    1. 用户登录:用于实现用户登录功能,登录需要账号密码,若无则需注册。
    2. 网站首页:用户登录成功后跳转的页面,陈列了所有商品信息,用户具有一些重要权限。
    3. 物品搜索:用于输入物品名称(以及禁忌,好处等关键词)搜索相应物品。
    4. 物品详情:用于查看物品详情及下单购买。
    5. 订单管理:用于管理自己下单的物品。
    6. 个人中心:用于修改个人资料、登录密码、收货地址等。

       管理员模块:

    1. 用户管理:用于管理员对用户进行增删改查操作。
    2. 物品类别管理:用于管理员对物品类别进行增删改查操作。
    3. 物品管理:用于管理员对发布的物品进行查、删操作。
    4. 品牌管理:主要管理鲜花品牌信息
    5. 订单管理:用于取消订单,修改订单信息。
    6. 统计页面:用于统计各类鲜花的销售情况。
    7. 个人中心:用于管理员对自身信息的修改。

    二,环境介绍

    语言环境:Java:  jdk1.8

    数据库:Mysql: mysql5.7

    应用服务器:Tomcat:  tomcat8.5.31

    开发工具:IDEA或eclipse

    后台开发:Springboot+Mybatis

    前端开发技术:HTML+Bootstrap+Jquery

    三,系统展示

    首页

    分类浏览

    全文检索

    品牌查询

    详情浏览

     相似性推荐

     

    前端用户登陆

    购物车查看

    我的订单

    收货地址管理

    后台管理员管理

    用户管理

    轮播图管理

    商品分类管理

    商品品牌管理

     商品管理

    订单管理

     统计报表

    四,核心代码展示

    1. package com.yw.eshop.controller.admin;
    2. import com.yw.eshop.domain.Product;
    3. import com.yw.eshop.domain.TongjiVo;
    4. import com.yw.eshop.mapper.ProductMapper;
    5. import org.springframework.beans.factory.annotation.Autowired;
    6. import org.springframework.stereotype.Controller;
    7. import org.springframework.web.bind.annotation.RequestMapping;
    8. import org.springframework.web.bind.annotation.ResponseBody;
    9. import java.util.ArrayList;
    10. import java.util.List;
    11. @Controller
    12. @RequestMapping("/echart")
    13. public class AdminTongjiController {
    14. @Autowired
    15. private ProductMapper productMapper;
    16. /*得到所有已被销售商品的销售情况*/
    17. @RequestMapping(value = "/adminEachartzhu")
    18. @ResponseBody
    19. public List getAllXiaoshou(){
    20. System.out.println("柱状图数据统计请求");
    21. return productMapper.tongjiBing();
    22. }
    23. /*管理员权限查询近日订单金额*/
    24. @RequestMapping(value = "/getAllOrdersComeInByDate")
    25. @ResponseBody
    26. public List getAllOrdersComeInByDate(){
    27. System.out.println("管理员权限查询近日订单金额");
    28. return productMapper.tongjiZhu();
    29. }
    30. /*跳转到销售柱状图页面*/
    31. @RequestMapping(value = "/toadminEachartzhu")
    32. public String toAdminEchart(){
    33. return "/admin/echart/xiaoshouZhu";
    34. }
    35. /*跳转到销售饼状图页面*/
    36. @RequestMapping(value = "/toadminEachartBin")
    37. public String toadminEachartzhu2(){
    38. return "/admin/echart/xiaoshouBin";
    39. }
    40. }

    1. package com.yw.eshop.controller.admin;
    2. import com.yw.eshop.domain.Brand;
    3. import com.yw.eshop.domain.ProductType;
    4. import com.yw.eshop.service.BrandService;
    5. import com.yw.eshop.service.ProductTypeService;
    6. import com.yw.eshop.utils.PageModel;
    7. import com.yw.eshop.service.BrandService;
    8. import com.yw.eshop.service.ProductTypeService;
    9. import org.springframework.beans.factory.annotation.Autowired;
    10. import org.springframework.stereotype.Controller;
    11. import org.springframework.ui.Model;
    12. import org.springframework.web.bind.annotation.RequestMapping;
    13. import org.springframework.web.bind.annotation.RequestParam;
    14. import org.springframework.web.bind.annotation.ResponseBody;
    15. import java.util.List;
    16. @Controller
    17. @RequestMapping("/admin/brand")
    18. public class BrandController {
    19. @Autowired
    20. private BrandService brandService;
    21. @Autowired
    22. private ProductTypeService productTypeService;
    23. @RequestMapping("/list")
    24. public String list( @RequestParam(defaultValue = "1") Integer pageNo,
    25. @RequestParam(defaultValue = "5")Integer pageSize,
    26. Model model){
    27. try {
    28. PageModel brandPages = brandService.queryBrandPages(pageNo, pageSize);
    29. model.addAttribute("brandPages", brandPages);
    30. } catch (Exception e) {
    31. e.printStackTrace();
    32. model.addAttribute("errMessage", "查询失败:"+e.getMessage());
    33. return "500";
    34. }
    35. return "admin/brand/list";
    36. }
    37. @RequestMapping("addPage")
    38. public String addPage(Model model){
    39. List productTypes= productTypeService.queryProductTypeAll();
    40. model.addAttribute("productTypes",productTypes);
    41. return "admin/brand/add";
    42. }
    43. @RequestMapping("/add")
    44. private String addBrand(Brand brand,Model model){
    45. try {
    46. int i = brandService.addBrand(brand);
    47. if (i==0){
    48. model.addAttribute("errMessage","服务器繁忙操作失败");
    49. return "500";
    50. }
    51. }catch (Exception e){
    52. model.addAttribute("errMessage",e.getMessage());
    53. return "500";
    54. }
    55. model.addAttribute("url", "admin/brand/list");
    56. return "success";
    57. }
    58. @RequestMapping("updatePage")
    59. public String updatePage(String id,Model model){
    60. Brand brand= brandService.queryBrandById(id);
    61. List productTypes= productTypeService.queryProductTypeAll();
    62. model.addAttribute("productTypes",productTypes);
    63. model.addAttribute("brand",brand);
    64. return "admin/brand/update";
    65. }
    66. @RequestMapping("/update")
    67. private String update(Brand brand,Model model){
    68. try {
    69. int i = brandService.updateBrand(brand);
    70. if (i==0){
    71. model.addAttribute("errMessage","服务器繁忙操作失败");
    72. return "500";
    73. }
    74. }catch (Exception e){
    75. model.addAttribute("errMessage",e.getMessage());
    76. return "500";
    77. }
    78. model.addAttribute("url", "admin/brand/list");
    79. return "success";
    80. }
    81. @RequestMapping("deletePage")
    82. public String deletePage(String id,Model model){
    83. model.addAttribute("id",id);
    84. return "admin/carousel/delete";
    85. }
    86. @RequestMapping("/delete")
    87. public String delete(String id, Model model){
    88. try {
    89. int i = brandService.delete(id);
    90. if (i==0){
    91. model.addAttribute("errMessage","服务器繁忙操作失败");
    92. return "500";
    93. }
    94. }catch (Exception e){
    95. model.addAttribute("errMessage",e.getMessage());
    96. return "500";
    97. }
    98. model.addAttribute("url", "admin/brand/list");
    99. return "success";
    100. }
    101. @RequestMapping("batchDel")
    102. @ResponseBody
    103. public String batchDel(String[] ids) {
    104. System.out.println("进来了");
    105. brandService.batchProductTypeDel(ids);
    106. return "/admin/brand/list";
    107. }
    108. }

    1. package com.yw.eshop.controller.admin;
    2. import com.yw.eshop.domain.Carousel;
    3. import com.yw.eshop.service.CarouselService;
    4. import com.yw.eshop.utils.PageModel;
    5. import com.yw.eshop.service.CarouselService;
    6. import org.springframework.beans.factory.annotation.Autowired;
    7. import org.springframework.stereotype.Controller;
    8. import org.springframework.ui.Model;
    9. import org.springframework.web.bind.annotation.RequestMapping;
    10. import org.springframework.web.bind.annotation.RequestParam;
    11. @Controller
    12. @RequestMapping("/admin/carousel")
    13. public class CarouselController {
    14. @Autowired
    15. private CarouselService service;
    16. @RequestMapping("/list")
    17. public String list(@RequestParam(defaultValue = "1") Integer pageNo,
    18. @RequestParam(defaultValue = "5")Integer pageSize,
    19. Model model){
    20. try {
    21. PageModel CarouselPages = service.queryCarouselPages(pageNo, pageSize);
    22. model.addAttribute("CarouselPages", CarouselPages);
    23. } catch (Exception e) {
    24. e.printStackTrace();
    25. model.addAttribute("errMessage", "查询失败:"+e.getMessage());
    26. return "500";
    27. }
    28. return "admin/carousel/list";
    29. }
    30. @RequestMapping("addPage")
    31. public String addPage(){
    32. return "admin/carousel/add";
    33. }
    34. @RequestMapping("/add")
    35. public String add(Carousel carousel, Model model){
    36. try {
    37. int i = service.addCarousel(carousel);
    38. if (i==0){
    39. model.addAttribute("errMessage","服务器繁忙操作失败");
    40. return "500";
    41. }
    42. }catch (Exception e){
    43. model.addAttribute("errMessage",e.getMessage());
    44. return "500";
    45. }
    46. model.addAttribute("url", "admin/carousel/list");
    47. return "success";
    48. }
    49. @RequestMapping("updatePage")
    50. public String updatePage(String id,Model model){
    51. Carousel carousel=service.queryCarouselById(id);
    52. model.addAttribute("carousel",carousel);
    53. return "admin/carousel/update";
    54. }
    55. @RequestMapping("/update")
    56. public String update(Carousel carousel, Model model){
    57. try {
    58. int i = service.updateCarousel(carousel);
    59. if (i==0){
    60. model.addAttribute("errMessage","服务器繁忙操作失败");
    61. return "500";
    62. }
    63. }catch (Exception e){
    64. model.addAttribute("errMessage",e.getMessage());
    65. return "500";
    66. }
    67. model.addAttribute("url", "admin/carousel/list");
    68. return "success";
    69. }
    70. @RequestMapping("deletePage")
    71. public String deletePage(String id,Model model){
    72. model.addAttribute("id",id);
    73. return "admin/carousel/delete";
    74. }
    75. @RequestMapping("/delete")
    76. public String delete(String id, Model model){
    77. try {
    78. int i = service.delete(id);
    79. if (i==0){
    80. model.addAttribute("errMessage","服务器繁忙操作失败");
    81. return "500";
    82. }
    83. }catch (Exception e){
    84. model.addAttribute("errMessage",e.getMessage());
    85. return "500";
    86. }
    87. model.addAttribute("url", "admin/carousel/list");
    88. return "success";
    89. }
    90. }

    五,项目总结

     本网站的实现将经历软件的定义及规划、需求分析、软件设计、程序编码、软件测试这五个主要阶段。在软件的定义及规划和需求分析阶段对网站的需求进行分析并给出详细定义。通过软件设计阶段形成交互框架与视觉框架。之后进行详细设计,对概要设计进行细化。接着使用html,js,css进行前端设计,使用Spring Boot,Spring Security,Mybatis,Spring Mvc处理后端,最后结合MySql数据库,在idea平台上进行编码。最后对各个部分进行多次测试完成网站检验。

  • 相关阅读:
    机器学习运用-民宿价格
    GitHub操作之远程仓库基本操作(团队内创建,推送,拉取等)
    【C++】差分
    信息系统项目管理师必背核心考点(四十八)合同类型的选择
    Dockerfile
    c++学习--机房预约系统
    从零开始的 dbt 入门教程 (dbt core 命令进阶篇)
    mysql 原生语句点滴学习记录
    二进制部署1.23.4版本k8s集群-2-安装DNS服务
    FPGA原理与结构(0)——目录与传送门
  • 原文地址:https://blog.csdn.net/znzbs/article/details/128131448