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

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

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

北京

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

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

看不清楚,换张图片

免费获取短信验证码

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

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

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

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

怎么用python编写垃圾分类系统

编写垃圾分类系统可以利用Python的图像识别和机器学习库,以下是一个简单的实现思路:1. 数据收集:收集垃圾分类的图像数据集,包括有害垃圾、可回收物、湿垃圾和干垃圾。可以从开源数据集或者自行收集。2. 数据预处理:使用图像处理库(如Ope
2023-10-08

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

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

Vue后台管理系统怎么实现分页功能

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

SpringBoot和Vue.js怎么实现前后端分离的用户权限管理系统

这篇文章主要介绍“SpringBoot和Vue.js怎么实现前后端分离的用户权限管理系统”,在日常操作中,相信很多人在SpringBoot和Vue.js怎么实现前后端分离的用户权限管理系统问题上存在疑惑,小编查阅了各式资料,整理出简单好用的
2023-07-05

SpringBoot+mysql+vue实现大学生健康档案管理系统前后端分离

一、项目简介 本项目是一套基于SpringBoot实现大学生健康档案管理系统,主要针对计算机相关专业的正在做bishe的学生和需要项目实战练习的Java学习者。 包含:项目源码、数据库脚本等,该项目可以直接作为bishe使用。 项目都经过严
SpringBoot+mysql+vue实现大学生健康档案管理系统前后端分离
2023-12-22

Java怎么实现用户管理系统

这篇文章给大家分享的是有关Java怎么实现用户管理系统的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。具体内容如下此系统功能和方法都比较简单本次系统通过控制台输入商品的基本信息,加入管理员的登录与对是否为管理员进行
2023-06-29

怎么用Java实现联系人管理系统

本文小编为大家详细介绍“怎么用Java实现联系人管理系统”,内容详细,步骤清晰,细节处理妥当,希望这篇“怎么用Java实现联系人管理系统”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。基于eclipse做的一个简单
2023-06-29

怎么用Java实现图书管理系统

这篇文章主要讲解了“怎么用Java实现图书管理系统”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用Java实现图书管理系统”吧!目录设计准备一、系统开发目的和意义二、系统总体设计主页:系
2023-06-20

怎么用C++实现酒店管理系统

这篇文章主要介绍“怎么用C++实现酒店管理系统”,在日常操作中,相信很多人在怎么用C++实现酒店管理系统问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么用C++实现酒店管理系统”的疑惑有所帮助!接下来,请跟
2023-06-20

编程热搜

  • 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动态编译

目录