我的编程空间,编程开发者的网络收藏夹
学习永远不晚

如何使用springboot及vue实现垃圾分类管理系统

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

如何使用springboot及vue实现垃圾分类管理系统

本篇内容介绍了“如何使用springboot及vue实现垃圾分类管理系统”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

一、项目概述

1.项目内容

本项目利用IDEA,Visual Studio Code 开发工具,借助Mysql,Navicat for MySQL 工具,实现了一个基于springboot+vue的垃圾分类管理系统。系统为两种类型的用户提供服务,用户和管理员。

2.实现功能

(1)登陆功能

通过和数据库建立联系后,数据库内的用户和管理员可在登录页面输入账号和密码登陆网页。

(2)数据的增、查、改、删功能

① 垃圾的增、查、改、删

② 管理员的增、查、改、删

③ 用户的增、查、改、删

(3)通过饼状图,柱状图可显示用户的性别比例,入库垃圾的数量信息,用户总数,管理员总数,入库垃圾数量,查询次数等。

二、具体实现

1.前端登陆界面

<template>  <div class="login-wrap">    <div class="ms-title">垃圾分类信息管理系统</div>    <div class="ms-login">      <el-form :model="ruleForm" :rules="rules" ref="ruleForm">        <el-form-item prop="username">          <el-input v-model="ruleForm.username" placeholder="用户名"></el-input>        </el-form-item>        <el-form-item prop="password">          <el-input type="password" v-model="ruleForm.password" placeholder="密码"></el-input>        </el-form-item>        <div class="login-btn">          <el-button type="primary" @click="submitForm">登录</el-button>        </div>      </el-form>    </div>  </div></template><script>import {mixin} from "../mixins/index";import {getLoginStatus} from "../api/index";export default {  mixins:[mixin],  data: function(){    return {      ruleForm:{        username: "admin",        password: "123"      },      rules:{        username:[          {required:true,message:"请输入用户名",trigger:"blur"}        ],        password:[          {required:true,message:"请输入密码",trigger:"blur"}        ]      }    };  },  methods:{    submitForm(){      let params = new URLSearchParams();      params.append("name",this.ruleForm.username);      params.append("password",this.ruleForm.password);      getLoginStatus(params)        .then((res) =>{          if(res.code == 1){            this.$router.push("/Info");            this.notify("登录成功","success");          }else{            this.notify("登录失败","error");          }        });    }  }}</script>

2.增删改查实现

(1)管理员信息增删改查:

     @RequestMapping(value = "/add",method = RequestMethod.POST)    public Object addAdminGuanli(HttpServletRequest request){        JSONObject jsonObject = new JSONObject();        String name = request.getParameter("name").trim();        String username = request.getParameter("username").trim();        String password = request.getParameter("password").trim();        String pic = request.getParameter("pic").trim();        String location = request.getParameter("location").trim();        String introduction = request.getParameter("introduction").trim();        //保存到管理员的对象中        AdminGuanli adminGuanli = new AdminGuanli();        adminGuanli.setName(name);        adminGuanli.setUsername(username);        adminGuanli.setPassword(password);        adminGuanli.setPic(pic);        adminGuanli.setLocation(location);        adminGuanli.setIntroduction(introduction);        boolean flag = AdminGuanliService.insert(adminGuanli);        if(flag){            jsonObject.put(Consts.CODE,1);            jsonObject.put(Consts.MSG,"添加成功");            return jsonObject;        }        jsonObject.put(Consts.CODE,0);        jsonObject.put(Consts.MSG,"添加失败");        return jsonObject;    }        @RequestMapping(value ="/update",method = RequestMethod.POST)    public Object updateAdminGuanli(HttpServletRequest request){        JSONObject jsonObject = new JSONObject();        String id = request.getParameter("id").trim();        String name = request.getParameter("name").trim();        String username = request.getParameter("username").trim();        String password = request.getParameter("password").trim();        String location = request.getParameter("location").trim();        String introduction = request.getParameter("introduction").trim();        //保存到管理员的对象中        AdminGuanli adminGuanli = new AdminGuanli();        adminGuanli.setId(Integer.parseInt(id));        adminGuanli.setName(name);        adminGuanli.setUsername(username);        adminGuanli.setPassword(password);        adminGuanli.setLocation(location);        adminGuanli.setIntroduction(introduction);        boolean flag = AdminGuanliService.update(adminGuanli);        if(flag){            jsonObject.put(Consts.CODE,1);            jsonObject.put(Consts.MSG,"修改成功");            System.out.println("11111111111111111");            return jsonObject;        }        jsonObject.put(Consts.CODE,0);        jsonObject.put(Consts.MSG,"修改失败");        return jsonObject;    }        @RequestMapping(value ="/delete",method = RequestMethod.GET)    public Object deleteAdminGuanli(HttpServletRequest request){        String id = request.getParameter("id").trim();        boolean flag = AdminGuanliService.delete(Integer.parseInt(id));        return flag;    }        @RequestMapping(value ="/selectByPrimaryKey",method = RequestMethod.GET)    public Object selectByPrimaryKey(HttpServletRequest request){        String id = request.getParameter("id").trim();        return AdminGuanliService.selectByPrimaryKey(Integer.parseInt(id));    }    @RequestMapping(value ="/allAdminGuanli",method = RequestMethod.GET)    public Object allAdminGuanli(HttpServletRequest request){        return AdminGuanliService.allAdminGuanli();    }    @RequestMapping(value ="/AdminGuanliOfName",method = RequestMethod.GET)    public Object AdminGuanliOfName(HttpServletRequest request){        String name = request.getParameter("name").trim();        return AdminGuanliService.AdminGuanliOfName("%"+name+"#");    }        @RequestMapping(value ="/updateAdminPic",method = RequestMethod.POST)    public Object updateAdminPic(@RequestParam("file") MultipartFile avatorFile, @RequestParam("id")int id){        JSONObject jsonObject = new JSONObject();        if(avatorFile.isEmpty()){            jsonObject.put(Consts.CODE,0);            jsonObject.put(Consts.MSG,"文件上传失败");            return jsonObject;        }        //文件名=当前时间到毫秒+原来文件名        String fileName = System.currentTimeMillis()+avatorFile.getOriginalFilename();        //文件路径        String filePath = System.getProperty("user.dir")+System.getProperty("file.separator")+"img"                +System.getProperty("file.separator")+"AdminPic";        //如果文件路径不存在,新增该路径        File file1 = new File(filePath);        if(file1.exists()){            file1.mkdir();        }        //实际文件路径        File dest = new File(filePath+System.getProperty("file.separator")+fileName);        //存储到数据库的相对文件地址        String storeAvatorPath = "/img/AdminPic/"+fileName;        try {            avatorFile.transferTo(dest);            AdminGuanli adminGuanli = new AdminGuanli();            adminGuanli.setId(id);            adminGuanli.setPic(storeAvatorPath);            boolean flag = AdminGuanliService.update(adminGuanli);            if(flag){                jsonObject.put(Consts.CODE,1);                jsonObject.put(Consts.MSG,"上传成功");                jsonObject.put("pic",storeAvatorPath);                return jsonObject;            }            jsonObject.put(Consts.CODE,0);            jsonObject.put(Consts.MSG,"修改失败");            return jsonObject;        } catch (IOException e) {            jsonObject.put(Consts.CODE,0);            jsonObject.put(Consts.MSG,"修改失败"+e.getMessage());        }finally {            return jsonObject;        }    }}

(2)垃圾信息增删改查

    @RequestMapping(value="/add",method= RequestMethod.POST)    public Object addGarbage(HttpServletRequest request){        JSONObject jsonObject=new JSONObject();        String name=request.getParameter("name").trim();        String type=request.getParameter("type").trim();        String introduction=request.getParameter("introduction").trim();        //保存到垃圾信息的对象当中        Garbage garbage=new Garbage();        garbage.setName(name);        garbage.setType(type);        garbage.setIntroduction(introduction);        boolean flag=GarbageService.insert(garbage);        if(flag){            jsonObject.put(Consts.CODE,1);            jsonObject.put(Consts.MSG,"添加成功");            return jsonObject;        }        jsonObject.put(Consts.CODE,0);        jsonObject.put(Consts.MSG,"添加失败");        return jsonObject;    }        @RequestMapping(value = "/update",method = RequestMethod.POST)    public Object updateGarbage(HttpServletRequest request){        JSONObject jsonObject=new JSONObject();        String id=request.getParameter("id").trim();        String name=request.getParameter("name").trim();        String type=request.getParameter("type").trim();        String introduction=request.getParameter("introduction");        //保存到垃圾信息的对象中去        Garbage garbage=new Garbage();        garbage.setId(Integer.parseInt(id));        garbage.setName(name);        garbage.setType(type);        garbage.setIntroduction(introduction);        boolean flag=GarbageService.update(garbage);        if(flag){            jsonObject.put(Consts.CODE,1);            jsonObject.put(Consts.MSG,"修改成功");            return jsonObject;        }        jsonObject.put(Consts.CODE,0);        jsonObject.put(Consts.MSG,"修改失败");        return jsonObject;    }    @RequestMapping(value = "/delete",method = RequestMethod.GET)    public Object deleteGarbage(HttpServletRequest request){        String id=request.getParameter("id").trim();        boolean flag=GarbageService.delete(Integer.parseInt(id));        return flag;    }    @RequestMapping(value = "/allGarbage",method = RequestMethod.GET)    public Object allGarbage(HttpServletRequest request){        return GarbageService.allGarbage();    }}

(3)用户信息增删改查

    @RequestMapping(value = "/add",method = RequestMethod.POST)    public Object addUser(HttpServletRequest request){        JSONObject jsonObject = new JSONObject();        String name = request.getParameter("name").trim();        String username = request.getParameter("username").trim();        String password = request.getParameter("password").trim();        String sex = request.getParameter("sex").trim();        String pic = request.getParameter("pic").trim();        String birth = request.getParameter("birth").trim();        String location = request.getParameter("location").trim();        String contact = request.getParameter("contact").trim();        DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");        Date birthDate = new Date();        try {            birthDate = dateFormat.parse(birth);        } catch (ParseException e) {            e.printStackTrace();        }        System.out.println(name);        //保存到用户的对象中        User user=new User();        user.setName(name);        user.setUsername(username);        user.setPassword(password);        user.setSex(new Byte(sex));        user.setPic(pic);        user.setBirth(birthDate);        user.setLocation(location);        user.setContact(contact);        boolean flag = UserService.insert(user);        if(flag){            jsonObject.put(Consts.CODE,1);            jsonObject.put(Consts.MSG,"添加成功");            return jsonObject;        }        jsonObject.put(Consts.CODE,0);        jsonObject.put(Consts.MSG,"添加失败");        return jsonObject;    }    @RequestMapping(value ="/update",method = RequestMethod.POST)    public Object updateUser(HttpServletRequest request){        JSONObject jsonObject = new JSONObject();        String id = request.getParameter("id").trim();        String name = request.getParameter("name").trim();        String username = request.getParameter("username").trim();        String password = request.getParameter("password").trim();        String sex = request.getParameter("sex").trim();        String pic = request.getParameter("pic").trim();        String birth = request.getParameter("birth").trim();        String location = request.getParameter("location").trim();        String contact = request.getParameter("contact").trim();        DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");        Date birthDate = new Date();        try {            birthDate = dateFormat.parse(birth);        } catch (ParseException e) {            e.printStackTrace();        }        //保存到用户的对象中        User user=new User();        user.setId(Integer.parseInt(id));        user.setName(name);        user.setPassword(password);        user.setSex(new Byte(sex));        user.setPic(pic);        user.setBirth(birthDate);        user.setLocation(location);        user.setContact(contact);        boolean flag = UserService.update(user);        if(flag){            jsonObject.put(Consts.CODE,1);            jsonObject.put(Consts.MSG,"修改成功");            System.out.println("11111111111111111");            return jsonObject;        }        jsonObject.put(Consts.CODE,0);        jsonObject.put(Consts.MSG,"修改失败");        return jsonObject;    }    @RequestMapping(value ="/delete",method = RequestMethod.GET)    public Object deleteUser(HttpServletRequest request){        String id = request.getParameter("id").trim();        boolean flag = UserService.delete(Integer.parseInt(id));        return flag;    }    @RequestMapping(value ="/selectByPrimaryKey",method = RequestMethod.GET)    public Object selectByPrimaryKey(HttpServletRequest request){        String id = request.getParameter("id").trim();        return UserService.selectByPrimaryKey(Integer.parseInt(id));    }    @RequestMapping(value ="/allUser",method = RequestMethod.GET)    public Object allUser(HttpServletRequest request){        return UserService.allUser();    }    @RequestMapping(value ="/UserOfName",method = RequestMethod.GET)    public Object UserOfName(HttpServletRequest request){        String name = request.getParameter("name").trim();        return UserService.userOfName("%"+name+"#");    }    @RequestMapping(value ="/updateUserPic",method = RequestMethod.POST)    public Object updateUserPic(@RequestParam("file") MultipartFile avatorFile, @RequestParam("id")int id){        JSONObject jsonObject = new JSONObject();        if(avatorFile.isEmpty()){            jsonObject.put(Consts.CODE,0);            jsonObject.put(Consts.MSG,"文件上传失败");            return jsonObject;        }        //文件名=当前时间到毫秒+原来文件名        String fileName = System.currentTimeMillis()+avatorFile.getOriginalFilename();        //文件路径        String filePath = System.getProperty("user.dir")+System.getProperty("file.separator")+"img"                +System.getProperty("file.separator")+"userPic";        //如果文件路径不存在,新增该路径        File file1 = new File(filePath);        if(file1.exists()){            file1.mkdir();        }        //实际文件路径        File dest = new File(filePath+System.getProperty("file.separator")+fileName);        //存储到数据库的相对文件地址        String storeAvatorPath = "/img/userPic/"+fileName;        try {            avatorFile.transferTo(dest);            User user = new User();            user.setId(id);            user.setPic(storeAvatorPath);            boolean flag = UserService.update(user);            if(flag){                jsonObject.put(Consts.CODE,1);                jsonObject.put(Consts.MSG,"上传成功");                jsonObject.put("pic",storeAvatorPath);                return jsonObject;            }            jsonObject.put(Consts.CODE,0);            jsonObject.put(Consts.MSG,"修改失败");            return jsonObject;        } catch (IOException e) {            jsonObject.put(Consts.CODE,0);            jsonObject.put(Consts.MSG,"修改失败"+e.getMessage());        }finally {            return jsonObject;        }    }}

3.解决跨域问题

public class WebMvcConfig implements WebMvcConfigurer {    @Override    public void addCorsMappings(CorsRegistry registry) {        registry.addMapping("                .allowedOriginPatterns("*")                .allowedMethods("*");    }}

三、功能演示

跟随前端网址访问网页

如何使用springboot及vue实现垃圾分类管理系统

登陆主页

如何使用springboot及vue实现垃圾分类管理系统

查看垃圾信息

如何使用springboot及vue实现垃圾分类管理系统

用户管理页面

如何使用springboot及vue实现垃圾分类管理系统

管理员管理页面

如何使用springboot及vue实现垃圾分类管理系统

“如何使用springboot及vue实现垃圾分类管理系统”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

如何使用springboot及vue实现垃圾分类管理系统

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

如何使用springboot及vue实现垃圾分类管理系统

本篇内容介绍了“如何使用springboot及vue实现垃圾分类管理系统”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!一、项目概述1.项目内
2023-07-06

怎么用springboot+vue实现垃圾分类管理系统

这篇文章主要介绍“怎么用springboot+vue实现垃圾分类管理系统”,在日常操作中,相信很多人在怎么用springboot+vue实现垃圾分类管理系统问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么用
2023-06-20

怎么在HTML5中使用WebGL实现一个垃圾分类系统

怎么在HTML5中使用WebGL实现一个垃圾分类系统?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。gv.setMovableFunc(() => { return false
2023-06-09

如何使用Springboot实现健身房管理系统

这篇文章将为大家详细讲解有关如何使用Springboot实现健身房管理系统,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。项目说明:本系统基于Springboot技术开发实现,同时采用SSM框架进行系统的后
2023-06-20

如何使用C++实现单词管理系统

这篇文章主要为大家展示了“如何使用C++实现单词管理系统”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“如何使用C++实现单词管理系统”这篇文章吧。具体内容如下实现功能退出添加单词删除单词修改单词
2023-06-29

如何使用C++实现信息管理系统

小编给大家分享一下如何使用C++实现信息管理系统,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!具体内容如下有一个信息管理系统,要求检查每一个登录系统的用户(Use
2023-06-29

如何使用Java实现图书管理系统

本篇内容介绍了“如何使用Java实现图书管理系统”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!一. 功能介绍1.1 使用介绍1.输入姓名2.
2023-07-02

如何使用C++实现酒店管理系统

这篇文章主要介绍了如何使用C++实现酒店管理系统,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。现今大多数宾馆所提供的服务样式都各式各样,规模大小也是各有不同,但是归总下来,不
2023-06-29

如何实现基于Java SpringBoot的前后端分离信息管理系统

这篇文章主要介绍了如何实现基于Java SpringBoot的前后端分离信息管理系统,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。主要功能说明用户登录、修改密码、首页介绍、数
2023-06-21

C++如何使用链表实现图书管理系统

这篇文章主要为大家展示了“C++如何使用链表实现图书管理系统”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“C++如何使用链表实现图书管理系统”这篇文章吧。具体内容如下一、程序实现功能1.录入书籍
2023-06-29

如何使用C++编写实现图书管理系统

这篇文章将为大家详细讲解有关如何使用C++编写实现图书管理系统,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。具体内容如下为图书管理人员编写一个图书管理系统,图书管理系统的设计主要是实现对图书的管理和相关操
2023-06-29

如何使用C语言实现销售管理系统

这篇文章给大家分享的是有关如何使用C语言实现销售管理系统的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。具体内容如下一.C程序设计课程设计题目简介该设计要求学生以某公司销售管理业务为背景,设计、开发一套“销售管理系
2023-06-29

如何使用C++实现图书信息管理系统

小编给大家分享一下如何使用C++实现图书信息管理系统,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!具体内容如下1.题目:类型有:编号:ISBN书名:name价格:price完成如下的功能:①录入:从键盘输入(或从文件读入)
2023-06-29

如何使用C++实现学生宿舍管理系统

这篇文章给大家分享的是有关如何使用C++实现学生宿舍管理系统的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。具体内容如下非常简易,完成个作业够用,仅供初学者参考,不喜勿喷。#include#inc
2023-06-29

使用java如何实现简易超市管理系统

这篇文章给大家分享的是有关使用java如何实现简易超市管理系统的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、确定需求程序概述:小型超市商品销售管理系统选择小型超市的四类商品进行管理。这四类商品是:食品、化妆品
2023-06-14

如何使用python实现简易名片管理系统

小编给大家分享一下如何使用python实现简易名片管理系统,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!具体内容如下功能需求用户输入数字选择要进行的操作添加名片删
2023-06-14

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录