SpringBoot+Vue2+Echarts实现图表的统计

SpringBoot+Vue2+Echarts实现图表的统计

一、需求

该功能是为了实现在对学生分班的人数统计下,所作出的相应调整。Echarts图表在实际项目中也有使用。

二、具体实现

1、数据库设计

班级表:classes

字段名类型长度小数点是否允许为空是否为主键说明
cidint00主键,自增
cnamevarchar2550班级名称

学生表:student

字段名类型长度小数点是否允许为空是否为主键说明
sidint00主键,自增
namevarchar2550姓名
sexint00性别
ageint00年龄
addressvarchar2550地址
cidint00所属班级

2、后端项目

  • 框架:SpringBoot
  • 数据库:MySQL
2.1、添加依赖
<parent><artifactId>spring-boot-starter-parent</artifactId><groupId>org.springframework.boot</groupId><version>2.5.12</version>
</parent><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId></dependency><dependency><groupId>org.junit.platform</groupId><artifactId>junit-platform-launcher</artifactId><scope>test</scope></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId></dependency><dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-boot-starter</artifactId><version>3.5.3.1</version></dependency><dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>2.0.3</version></dependency>
</dependencies>
2.2、实体类
package org.example.entity;public class StudentVO {private Integer total;private String cId;private String cName;public Integer getTotal() {return total;}public void setTotal(Integer total) {this.total = total;}public String getcId() {return cId;}public void setcId(String cId) {this.cId = cId;}public String getcName() {return cName;}public void setcName(String cName) {this.cName = cName;}
}
2.3、Mapper

StudentDao

package org.example.mapper;import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hanscnc.entity.CountVO;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;import java.util.List;@Repository
@Mapper
public interface StudentDao extends BaseMapper<Student> {List<Student> selectCountStudent();}

StudentMapper.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.example.mapper.StudentDao"><select id="selectCountStudent" resultType="org.example.entity.StudentVO">select count(*) as total, s.cid as cId, c.cname as cNamefrom student s join classes c on s.cid = c.cidgroup by c.cname;</select>
</mapper>
2.4、Service
package org.example.service;import org.example.entity.StudentVO;
import java.util.List;public interface StudentService {List<StudentVO> countStudent();}
package org.example.service.impl;import org.example.entity.StudentVO;
import org.example.mapper.StudentDao;
import org.example.service.StudentService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;import java.util.List;@Service
public class StudentServiceImpl implements StudentService {private final Logger logger = LoggerFactory.getLogger(StudentService.class);private final StudentDao studentDao;public StudentServiceImpl(StudentDao studentDao) {this.studentDao = studentDao;}@Overridepublic List<StudentVO> countStudent() {try {return studentDao.selectCountStudent();} catch (Exception e) {logger.error("StudentService---->countStudent(...)error." + e.getMessage());return null;}}}
2.5、Controller
package org.example.controller;import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.example.entity.MsgResponse;
import org.example.entity.StudentVO;
import org.example.service.StudentService;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import java.util.List;@RestController
@RequestMapping("/count")
public class StudentController {private final StudentService studentService;public StudentController(StudentService studentService) {this.studentService = studentService;}@GetMapping("/student")public String countStudent() {MsgResponse response = new MsgResponse();List<StudentVO> studentVOList = studentService.countStudent();JSONArray jsonArray = new JSONArray();JSONObject jsonObject;for (StudentVO studentVO : studentVOList) {jsonObject = new JSONObject(true);jsonObject.put("total", studentVO.getTotal());jsonObject.put("cId", studentVO.getcId());jsonObject.put("cName", studentVO.getcName());jsonArray.add(jsonObject);}response.setData(jsonArray.toString());return response.toString();}}

3、前端项目

  • Vue2
  • Axios
  • Vue Router
  • Echarts

添加依赖

npm install echarts --save

在main.js中配置

import * as echarts from 'echarts';Vue.prototype.$echarts = echarts;

在项目中使用

<template><el-container><el-header style="font-size: 12px; border-bottom: 1px solid #dcdfe6;"><el-row><el-col :span="2" style="text-align:left;"><span style="font-size:18px;font-weight:bolder;color:#409EFF;">学生统计</span></el-col><el-col :span="1" :offset="21"><el-dropdown class="header-setting"><i class="el-icon-setting" style="margin: auto 5px auto 25px;font-size:20px;cursor: pointer;"></i><el-dropdown-menu slot="dropdown"><el-dropdown-item><el-link :underline="false" href="/">系统主页</el-link></el-dropdown-item><el-dropdown-item><el-link :underline="false" href="" target="_blank">帮助中心</el-link></el-dropdown-item><el-dropdown-item><el-link :underline="false">退出登录</el-link></el-dropdown-item></el-dropdown-menu></el-dropdown></el-col></el-row></el-header><el-main :style="windowInfo"><el-card><div id="main1" style="width:100%;height:600px"></div></el-card></el-main></el-container>
</template>
<script>
import { countStudent } from '../../api/countStudent';
export default {data() {return {windowInfo: {height: '',overflow: 'scroll'},categoryList: [],seriesDataList: [],}},mounted() {window.onresize = () => {window.removeEventListener('resize', this.getWindowInit())};this.getInfo();},destroyed() {window.removeEventListener('resize', this.getWindowInit());},methods: {//初始化窗口大小getWindowInit() {this.windowInfo.height = window.innerHeight - 60 + 'px';},//获取数据getInfo() {countStudent().then(res => {if (res.errcode == 0) {let data = res.data;data.forEach(item => {this.categoryList.splice(this.categoryList.length, 0, item.parentName);this.seriesDataList.splice(this.seriesDataList.length, 0, item.total);})this.drawEcharts();}})},//画图表drawEcharts() {let myChart = this.$echarts.init(document.getElementById("main1"));let option = {title: {text: "统计班级的学生数量",},tooltip: {},legend: {data: ["学生数量"],},xAxis: {name: "所属班级",data: this.categoryList,axisLabel: {interval: 0}},yAxis: {type: 'value'},series: [{name: "班级学生的数量",type: "bar",barWidth: '60%',data: this.seriesDataList,label: {normal: {show: true,position: 'top'}}},],};// 使用刚指定的配置项和数据显示图表。myChart.setOption(option);// 点击事件myChart.on('click', function (param) {console.log('param', param);});},}
}
</script>
<style>
.el-container {width: 100%;height: 100%;
}.el-container>.el-header {background-color: #fff;color: #000;line-height: 60px;height: 60px;
}.el-container>.el-main {height: calc(100vh-60px);overflow: auto;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/626522.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

opencv通过轮廓点生成闭合图像

前言 有时候需要将某一些点生成闭合的二值图像。记录一下。 // 轮廓点个数 int nrCurvePoints curContour.nr; // 轮廓点 DIM2DL* curvePoints curContour.pts;std::vector<cv::Point> points; // 轮廓点集合 for (int cntPoint 0; cntPoint < nrCurvePoints; cn…

[晓丽紫]每日论文分享(有中文摘要,源码或项目地址)--大模型,扩散模型...

专属领域论文订阅 关注{晓理紫|小李子}&#xff0c;每日更新论文&#xff0c;如感兴趣&#xff0c;请转发给有需要的同学&#xff0c;谢谢支持 分类: 大语言模型LLM视觉模型VLM扩散模型视觉导航具身智能&#xff0c;机器人强化学习开放词汇&#xff0c;检测分割 [晓丽紫]每日论…

基于YOLOv7的学生课堂行为检测,引入BRA注意力和多种IoU改进提升检测能力

&#x1f4a1;&#x1f4a1;&#x1f4a1;本文摘要&#xff1a;介绍了学生课堂行为检测&#xff0c;并使用YOLOv7进行训练模型&#xff0c;以及引入BRA注意力和多种IoU改进来提升检测能力 目录 1.SCB介绍 ​编辑 2.如何提高YOLOv7课堂行为检测能力 2.1 训练基于YOLOv7模型的…

C++ 有需求 需要对数字向下取整 int和 double 混淆 已解决

在项目使用中。 原本以为 直接 ceil(13/ 2) 3 但是实际是错误的。 需要 是 ceil(5.0 / 2) double 才能向上取整。结果有大佬 直接使用两种办法 能解决问题。 由于传入的参数和返回的参数都是double&#xff0c;所以需要手动转化 #include <bits/stdc.h> using name…

HANA:传参,游标(Cursor)应用,FOR循环,解决存储表内存溢出的问题

作者 idan lian 如需转载备注出处 1.应用场景 最近项目上用HANA开发的比较多&#xff0c;之前我是bw用的比较多&#xff0c;就不会有这种问题。我们这个项目很多都是开发的计算视图&#xff0c;但最近做acdoca的逻辑时&#xff0c;计算视图在生产环境执行的时候报错&#xf…

flink 1.18 sql gateway /sql gateway jdbc

一 sql gateway 注意 之所以直接启动gateway 能知道yarn session 主要还是隐藏的配置文件&#xff0c;但是配置文件可以被覆盖&#xff0c;多个session 保留最新的applicationid 1 安装flink &#xff08;略&#xff09; 2 启动sql-gatway(sql-gateway 通过官网介绍只能运行…

2022年JavaB组 试题 C: 字符统计

/*试题 C: 字符统计 * 时间限制: 1.0s 内存限制: 512.0MB 本题总分&#xff1a;10 分 * 【问题描述】 * 给定一个只包含大写字母的字符串 S&#xff0c;请你输出其中出现次数最多的字母。 * 如果有多个字母均出现了最多次&#xff0c;按字母表顺序依次输出所有这些字母。 * 【输…

YOLOv8改进 | 检测头篇 | 利用DBB重参数化模块魔改检测头实现暴力涨点 (支持检测、分割、关键点检测)

一、本文介绍 本文给大家带来的改进机制是二次创新的机制,二次创新是我们发表论文中关键的一环,本文给大家带来的二次创新机制是通过DiverseBranchBlock(DBB)模块来改进我们的检测头形成一个新的检测头Detect_DBB,其中DBB是一种重参数化模块,其训练时采用复杂结构,推理时…

#AIGC##LLM##RAG# RAG:专补LLMs短板_减少LLM幻觉并多模态/RAG 技术最新进展

RAG技术&#xff0c;即检索增强生成&#xff0c;标志着自然语言处理领域的重大进展。通过整合先前知识&#xff0c;它提升了大型语言模型的性能&#xff0c;广泛应用于多模态领域和垂直行业。本文深入探讨了RAG技术的演进历程、技术发展、LLMs问题及其解决方案&#xff0c;为读…

MySQL 8.0中引入的选项和变量(二)

以下是在MySQL 8.0中新增的系统变量、状态变量和服务选项&#xff1a; • Mysqlx_bytes_sent_compressed_payload: 发送的已压缩消息数据量&#xff0c;指的是在压缩之后的大小。在MySQL 8.0.19中引入。 • Mysqlx_bytes_sent_uncompressed_frame: 发送的未压缩消息数据量&…

前端笔试题(二)

1.常见的盒子水平垂直居中的方法有哪些 使用定位 使用margin&#xff1a;auto; display:flex; justify-content:center; align-items:center; 使用transform: translate(-50%,-50%); 2.简述下深浅拷贝的原理和常用的方法 浅拷贝 对于基本类型数据来说&#xff0c;拷贝的…

【RT-DETR有效改进】ShapeIoU、InnerShapeIoU关注边界框本身的IoU(包含二次创新)

前言 大家好&#xff0c;我是Snu77&#xff0c;这里是RT-DETR有效涨点专栏。 本专栏的内容为根据ultralytics版本的RT-DETR进行改进&#xff0c;内容持续更新&#xff0c;每周更新文章数量3-10篇。 专栏以ResNet18、ResNet50为基础修改版本&#xff0c;同时修改内容也支持Re…

十、Three场景实现多个物体的合并

Three场景实现多个物体的合并 目的 产品需求是让物体的光柱墙包含一个多边形的区域,二而我的多边形只能使用原型,方向,多边形。那么再研究的时候就需要将这些多边形合并成为一个形状,那么就行实现了。 原先的图形 如上图,是两个mesh组成的。首先寻找mesh合并的方法。 第…

分布式限流要注意的问题

本文已收录至我的个人网站&#xff1a;程序员波特&#xff0c;主要记录Java相关技术系列教程&#xff0c;共享电子书、Java学习路线、视频教程、简历模板和面试题等学习资源&#xff0c;让想要学习的你&#xff0c;不再迷茫。 为什么需要匀速限流 同学们回想一下在Guava小节里…

20240109金融读报1分钟小得

金融科技是基于大数据、云计算、人工智能、区块链等一系列技术创新。大数据作为金融分析的基石&#xff0c;人工智能为提升效率助力 金融发力点&#xff1a;科技金融、绿色金融、普惠金融、养老金融分别聚焦支持科技创新、绿色低碳、民生普惠、老年群体领域的金融服务和产品

MySQL运维篇(二)主从复制

一、概述 主从复制是指将主数据库的 DDL 和 DML 操作通过 二进制日志 传到从库服务器中&#xff0c;然后在从库上对这些日志重新执行&#xff08;也叫重做&#xff09;&#xff0c;从而使得从库和主库的数据保持同步。 MySQL 支持一台主库同时向多台从库进行复制&#xff0c; 从…

聊一聊 C# 的线程本地存储TLS到底是什么

一&#xff1a;背景 1. 讲故事 有朋友在后台留言让我说一下C#的 ThreadStatic 线程本地存储是怎么玩的&#xff1f;这么说吧&#xff0c;C#的ThreadStatic是假的&#xff0c;因为C#完全是由CLR&#xff08;C&#xff09;承载的&#xff0c;言外之意C#的线程本地存储&#xff…

基于Java+SSM+MYSQL的助农特色农产品销售系统详细设计和实现【附源码】

基于JavaSSM助农特色农产品销售系统详细设计和实现【附源码】 &#x1f345; 作者主页 央顺技术团队 &#x1f345; 欢迎点赞 &#x1f44d; 收藏 ⭐留言 &#x1f4dd; &#x1f345; 文末获取源码联系方式 &#x1f4dd; &#x1f345; 查看下方微信号获取联系方式 承接各种定…

调试openjdk11源码报段错误异常Segmentation fault解决方案

解决方案-忽略信号&#xff1a;(gdb) handle SIGSEGV pass noprint nostop ##openjdk11源码编译简单教程 传送门centos7下openjdk11源码下载编译安装_openjdk11下载-CSDN博客 ##调试openjdk11源码报段错误异常Segmentation fault解决方案 Program received signal SIGSEGV,…

高防IP如何有效应对网站DDOS攻击

高防IP如何有效应对网站DDOS攻击&#xff1f;随着互联网的发展&#xff0c;网站安全问题变得越来越重要。DDoS攻击作为一种常见的网络攻击方式&#xff0c;给网站的稳定性和可用性带来了巨大威胁。而高防IP作为一种专业的网络安全解决方案&#xff0c;能够有效地应对DDoS攻击&a…