大家好!我是岛上程序猿,感谢您阅读本文,欢迎一键三连哦。
当前专栏:Java毕业设计
精彩专栏推荐
安卓app毕业设计
微信小程序毕业设计
开发语言:Java
框架:springboot
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7
数据库工具:Navicat12
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器
jspssm535Springboot体质测试数据分析
https://download.csdn.net/download/m0_46388260/87987356
本体质测试数据分析及可视化设计采用的数据库是Mysql,使用springboot框架开发。在设计过程中,充分保证了系统代码的良好可读性、实用性、易扩展性、通用性、便于后期维护、操作方便以及页面简洁等特点。
学习编程,我们都知道数据库设计是基于需要设计的系统功能,我们需要建立一个数据库关系模型,用于存储数据信息,这样当我们在程序中时,就没有必要为程序页面添加数据,从而提高系统的效率。数据库存储了很多信息,可以说是信息管理系统的核心和基础,数据库还提供了添加、删除、修改和检查,使系统能够快速找到自己想要的信息,而不是在程序代码中找到。数据库中信息表的每个部分根据一定的关系精确地组合,排列和组合成数据表。
通过体质测试数据分析及可视化设计的功能进行规划分成几个实体信息,实体信息将通过ER图进行说明,本系统的主要实体图如下:
管理员信息属性图如图4-5所示。
教师信息实体属性图如图4-6所示。
运动分析信息实体属性图如图4-7所示。
成绩信息实体属性图如图4-8所示。
管理员登录,通过填写注册时输入的用户名、密码、角色进行登录,如图5-1所示。
管理员登录进入体质测试数据分析及可视化设计可以查看首页、个人中心、学生管理、教师管理、日常运动管理、运动分析管理、成绩信息管理、论坛管理、系统管理等信息。
个人中心,在个人中心页面中可以通过填写原密码、新密码、确认密码等信息进行添加、修改,如图5-2所示。还可以根据需要对个人信息进行添加,修改或删除等详细操作,如图5-3所示。
学生管理,在学生管理页面中可以查看学号、密码、姓名、性别、头像、学院、手机等信息,并可根据需要对学生管理进行详情、修改或删除等操作,如图5-4所示。
教师管理,在教师管理页面中可以查看工号、密码、教师姓名、性别、头像、学院、电话等信息,并可根据需要对教师管理进行详情、修改或删除等详细操作,如图5-5所示。
轮播图;该页面为轮播图管理界面。管理员可以在此页面进行首页轮播图的管理,通过新建操作可在轮播图中加入新的图片,还可以对以上传的图片进行修改操作,以及图片的删除操作,如图5-6所示。
学生登录进入体质测试数据分析及可视化设计可以查看首页、个人中心、日常运动管理、运动分析管理、成绩信息管理、论坛管理等内容。
个人信息,在个人信息页面中通过填写学号、密码、姓名、性别、头像、学院、手机等信息还可以根据需要对个人信息进行修改,如图5-7所示。
日常运动管理,在日常运动管理页面中可以查看名称、类型、时间秒、活动内容、日期、学号、姓名等信息内容,并且根据需要对日常运动管理进行修改或删除等其他详细操作,如图5-8所示。
体质测试数据分析及可视化设计,在体质测试数据分析及可视化设计可以查看首页、论坛信息、公告信息、个人中心、后台管理、客服等内容,如图5-9所示。
登录,通过登录获取账号、密码等信息进行登录,如图5-10所示。
公告信息,在公告信息页面可以填写公告信息等信息进行提交,如图5-11所示。
教师登录进入体质测试数据分析及可视化设计可以查看首页、个人中心、日常运动管理、运动分析管理、成绩信息管理、系统管理等内容。
个人信息,在个人信息页面中通过填写工号、密码、教师姓名、性别、头像、学院、电话等信息还可以根据需要对个人信息进行修改,如图5-14所示。
日常运动管理,在日常运动管理页面中可以查看名称、类型、时间秒、活动内容、日期、学号、姓名等信息内容,并且根据需要对日常运动管理进行修改或删除等其他详细操作,如图5-15所示。
运动分析管理,在运动分析管理页面中可以查看名称、类型、学号、姓名、时间秒、数据分析、工号、教师姓名等信息内容,并且根据需要对运动分析管理进行修改或删除等其他详细操作,如图5-16所示。
成绩信息管理,在成绩信息管理页面中可以查看名称、类型、学号、姓名、成绩、测试数、工号、教师姓名等信息内容,并且根据需要对成绩信息管理进行修改或删除等其他详细操作,如图5-17所示。
package com.controller;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.UUID;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import com.annotation.IgnoreAuth;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.entity.ConfigEntity;
import com.entity.EIException;
import com.service.ConfigService;
import com.utils.R;
/**
* 上传文件映射表
*/
@RestController
@RequestMapping("file")
@SuppressWarnings({"unchecked","rawtypes"})
public class FileController{
@Autowired
private ConfigService configService;
/**
* 上传文件
*/
@RequestMapping("/upload")
public R upload(@RequestParam("file") MultipartFile file,String type) throws Exception {
if (file.isEmpty()) {
throw new EIException("上传文件不能为空");
}
String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
File path = new File(ResourceUtils.getURL("classpath:static").getPath());
if(!path.exists()) {
path = new File("");
}
File upload = new File(path.getAbsolutePath(),"/upload/");
if(!upload.exists()) {
upload.mkdirs();
}
String fileName = new Date().getTime()+"."+fileExt;
File dest = new File(upload.getAbsolutePath()+"/"+fileName);
file.transferTo(dest);
if(StringUtils.isNotBlank(type) && type.equals("1")) {
ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
if(configEntity==null) {
configEntity = new ConfigEntity();
configEntity.setName("faceFile");
configEntity.setValue(fileName);
} else {
configEntity.setValue(fileName);
}
configService.insertOrUpdate(configEntity);
}
return R.ok().put("file", fileName);
}
/**
* 下载文件
*/
@IgnoreAuth
@RequestMapping("/download")
public ResponseEntity<byte[]> download(@RequestParam String fileName) {
try {
File path = new File(ResourceUtils.getURL("classpath:static").getPath());
if(!path.exists()) {
path = new File("");
}
File upload = new File(path.getAbsolutePath(),"/upload/");
if(!upload.exists()) {
upload.mkdirs();
}
File file = new File(upload.getAbsolutePath()+"/"+fileName);
if(file.exists()){
/*if(!fileService.canRead(file, SessionManager.getSessionUser())){
getResponse().sendError(403);
}*/
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
headers.setContentDispositionFormData("attachment", fileName);
return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);
}
} catch (IOException e) {
e.printStackTrace();
}
return new ResponseEntity<byte[]>(HttpStatus.INTERNAL_SERVER_ERROR);
}
}
如需对应的论文或源码,也可以下方微信联系我