• 基于ssm+vue的美食分享网站


    博主主页猫头鹰源码

    博主简介:Java领域优质创作者、CSDN博客专家、公司架构师、全网粉丝5万+、专注Java技术领域和毕业设计项目实战

    主要内容:毕业设计(Javaweb项目|小程序等)、简历模板、学习资料、面试题库、技术咨询

    文末联系获取

    项目介绍: 

    本系统适合选题:美食、分享、美食网站类其他美食系统等。系统采用ssm+vue整合开发,前端主要使用了element-ui框架、数据层采用mybatis,系统分为2个角色,功能齐全,界面美观。

    随着网络不断的普及发展,美食网站设计与实现依靠网络技术的支持得到了快速的发展,首先要从用户的实际需求出发,通过了解用户的需求开发出具有针对性的热门美食、在线商城、美食分享、用户交流、美食资讯等功能,利用目前网络给用户带来的方便快捷这一特点对系统进行调整,设计的系统让用户的使用起来更加方便,本系统的主要目的就是给用户带来快捷与高效、安全,用户只要在家中就可以进行操作。同时随着电子商务的发展美食网站设计与实现已经受到广大用户的关注。

    互联网发展至今,已经解决了很多我们解决不了的难题,使得我们工作更加便捷,提高了我们的工作效率。目前各行各业都在运用网络信息管理程序,不同的用户也都接触到信息管理,特别是在各大电商行业广泛的应运起来。通过对当前网络环境发展的分析与总结,开发美食网站设计与实现可以改变以往的人工统计方式,改变传统线下美食网站设计与实现的状态,由于用户的不断增多,使用传统的线下手工模式已经远远不能满足于用户需求了,而且越来越多的商家也在开通线上进行美食网站设计与实现,所以开发一个美食网站设计与实现可以解决商家不利于线下美食分享的问题,同时商家可以利用网络对美食分享信息进行管理,设计的网站保证信息的完整安全,这样才能提高工作效率,保证系统安全正常的运行

    项目功能:

    本美食网站设计与实现主要包括二大功能模块,即用户功能模块和管理员功能模块。

    1)管理员模块:系统中的核心用户是管理员,管理员登录后,通过管理员功能来管理后台系统。主要功能有:首页、个人中心、美食分类管理、商品分类管理、热门美食管理、在线商城管理、用户管理、订单评价管理、美食分享管理、用户交流、管理员管理、系统管理、订单管理等功能。

    2)用户:首页、个人中心、订单评价管理、美食分享管理、我的收藏管理等功能

    3)前台首页:首页、热门美食、在线商城、美食分享、用户交流、美食资讯、个人中心、后台管理、购物车、在线聊天等功能

    系统包含技术:

    后端:ssm
    前端:element-ui、js、css等
    开发工具:idea
    数据库:mysql 5.7
    JDK版本:jdk1.8

    部分截图说明:

    下面是登录页面

    用户首页

     用户查看热门美食

    美食详情

    美食资讯查看

    资讯详情

    在线商城

     个人中心

    用户交流

    购物车

     美食管理

    商城管理

    商品分类管理

    美食分享管理

    轮播图管理

    部分代码:

    购物车操作

    1. /**
    2. * 后端列表
    3. */
    4. @RequestMapping("/page")
    5. public R page(@RequestParam Map<String, Object> params,CartEntity cart, HttpServletRequest request){
    6. if(!request.getSession().getAttribute("role").toString().equals("管理员")) {
    7. cart.setUserid((Long)request.getSession().getAttribute("userId"));
    8. }
    9. EntityWrapper<CartEntity> ew = new EntityWrapper<CartEntity>();
    10. PageUtils page = cartService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cart), params), params));
    11. return R.ok().put("data", page);
    12. }
    13. /**
    14. * 前端列表
    15. */
    16. @RequestMapping("/list")
    17. public R list(@RequestParam Map<String, Object> params,CartEntity cart, HttpServletRequest request){
    18. EntityWrapper<CartEntity> ew = new EntityWrapper<CartEntity>();
    19. PageUtils page = cartService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cart), params), params));
    20. return R.ok().put("data", page);
    21. }
    22. /**
    23. * 列表
    24. */
    25. @RequestMapping("/lists")
    26. public R list( CartEntity cart){
    27. EntityWrapper<CartEntity> ew = new EntityWrapper<CartEntity>();
    28. ew.allEq(MPUtil.allEQMapPre( cart, "cart"));
    29. return R.ok().put("data", cartService.selectListView(ew));
    30. }
    31. /**
    32. * 查询
    33. */
    34. @RequestMapping("/query")
    35. public R query(CartEntity cart){
    36. EntityWrapper< CartEntity> ew = new EntityWrapper< CartEntity>();
    37. ew.allEq(MPUtil.allEQMapPre( cart, "cart"));
    38. CartView cartView = cartService.selectView(ew);
    39. return R.ok("查询购物车表成功").put("data", cartView);
    40. }
    41. /**
    42. * 后端详情
    43. */
    44. @RequestMapping("/info/{id}")
    45. public R info(@PathVariable("id") Long id){
    46. CartEntity cart = cartService.selectById(id);
    47. return R.ok().put("data", cart);
    48. }
    49. /**
    50. * 前端详情
    51. */
    52. @RequestMapping("/detail/{id}")
    53. public R detail(@PathVariable("id") Long id){
    54. CartEntity cart = cartService.selectById(id);
    55. return R.ok().put("data", cart);
    56. }
    57. /**
    58. * 后端保存
    59. */
    60. @RequestMapping("/save")
    61. public R save(@RequestBody CartEntity cart, HttpServletRequest request){
    62. cart.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    63. //ValidatorUtils.validateEntity(cart);
    64. cart.setUserid((Long)request.getSession().getAttribute("userId"));
    65. cartService.insert(cart);
    66. return R.ok();
    67. }
    68. /**
    69. * 前端保存
    70. */
    71. @RequestMapping("/add")
    72. public R add(@RequestBody CartEntity cart, HttpServletRequest request){
    73. cart.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    74. //ValidatorUtils.validateEntity(cart);
    75. cartService.insert(cart);
    76. return R.ok();
    77. }
    78. /**
    79. * 修改
    80. */
    81. @RequestMapping("/update")
    82. public R update(@RequestBody CartEntity cart, HttpServletRequest request){
    83. //ValidatorUtils.validateEntity(cart);
    84. cartService.updateById(cart);//全部更新
    85. return R.ok();
    86. }
    87. /**
    88. * 删除
    89. */
    90. @RequestMapping("/delete")
    91. public R delete(@RequestBody Long[] ids){
    92. cartService.deleteBatchIds(Arrays.asList(ids));
    93. return R.ok();
    94. }
    95. /**
    96. * 提醒接口
    97. */
    98. @RequestMapping("/remind/{columnName}/{type}")
    99. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
    100. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
    101. map.put("column", columnName);
    102. map.put("type", type);
    103. if(type.equals("2")) {
    104. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    105. Calendar c = Calendar.getInstance();
    106. Date remindStartDate = null;
    107. Date remindEndDate = null;
    108. if(map.get("remindstart")!=null) {
    109. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
    110. c.setTime(new Date());
    111. c.add(Calendar.DAY_OF_MONTH,remindStart);
    112. remindStartDate = c.getTime();
    113. map.put("remindstart", sdf.format(remindStartDate));
    114. }
    115. if(map.get("remindend")!=null) {
    116. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
    117. c.setTime(new Date());
    118. c.add(Calendar.DAY_OF_MONTH,remindEnd);
    119. remindEndDate = c.getTime();
    120. map.put("remindend", sdf.format(remindEndDate));
    121. }
    122. }
    123. Wrapper<CartEntity> wrapper = new EntityWrapper<CartEntity>();
    124. if(map.get("remindstart")!=null) {
    125. wrapper.ge(columnName, map.get("remindstart"));
    126. }
    127. if(map.get("remindend")!=null) {
    128. wrapper.le(columnName, map.get("remindend"));
    129. }
    130. if(!request.getSession().getAttribute("role").toString().equals("管理员")) {
    131. wrapper.eq("userid", (Long)request.getSession().getAttribute("userId"));
    132. }
    133. int count = cartService.selectCount(wrapper);
    134. return R.ok().put("count", count);
    135. }

    文件上传和下载

    1. /**
    2. * 上传文件
    3. */
    4. @RequestMapping("/upload")
    5. public R upload(@RequestParam("file") MultipartFile file, String type,HttpServletRequest request) throws Exception {
    6. if (file.isEmpty()) {
    7. throw new EIException("上传文件不能为空");
    8. }
    9. String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
    10. String fileName = new Date().getTime()+"."+fileExt;
    11. File dest = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
    12. file.transferTo(dest);
    13. if(StringUtils.isNotBlank(type) && type.equals("1")) {
    14. ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
    15. if(configEntity==null) {
    16. configEntity = new ConfigEntity();
    17. configEntity.setName("faceFile");
    18. configEntity.setValue(fileName);
    19. } else {
    20. configEntity.setValue(fileName);
    21. }
    22. configService.insertOrUpdate(configEntity);
    23. }
    24. return R.ok().put("file", fileName);
    25. }
    26. /**
    27. * 下载文件
    28. */
    29. @IgnoreAuth
    30. @RequestMapping("/download")
    31. public void download(@RequestParam String fileName, HttpServletRequest request, HttpServletResponse response) {
    32. try {
    33. File file = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
    34. if (file.exists()) {
    35. response.reset();
    36. response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName+"\"");
    37. response.setHeader("Cache-Control", "no-cache");
    38. response.setHeader("Access-Control-Allow-Credentials", "true");
    39. response.setContentType("application/octet-stream; charset=UTF-8");
    40. IOUtils.write(FileUtils.readFileToByteArray(file), response.getOutputStream());
    41. }
    42. } catch (IOException e) {
    43. e.printStackTrace();
    44. }
    45. }

    以上就是部分功能展示,从整体上来看,本系统功能是十分完整的,界面设计简洁大方,交互友好,数据库设计也很合理,规模适中,代码工整,清晰,适合学习使用。

    好了,今天就到这儿吧,小伙伴们点赞、收藏、评论,一键三连走起呀,下期见~~

  • 相关阅读:
    SpringBoot中使用Redisson分布式锁的应用场景-多线程、服务、节点秒杀/抢票处理
    每天5分钟复习OpenStack(八)存储虚拟化
    nvm基础用法
    大不列颠泰迪熊加入PUBG 手游
    kubernetes1.18集群安装实战
    前端 | Ajax&Axios模块
    【数学】丑数II 和 超级丑数
    【算法专题突破】双指针 - 和为s的两个数字(6)
    面试中如何介绍mysql的B+树
    Selenium:上传文件组件处理总结
  • 原文地址:https://blog.csdn.net/mtyedu/article/details/127460350