大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
🎀 Python毕业设计
🌎微信小程序毕业设计
开发环境
开发语言:Java
框架:Springboot+Vue
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7
数据库工具:Navicat12
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器
演示视频
springboot296个性化定制的智慧校园管理系统录像
原版高清演示视频-编号:296
https://pan.quark.cn/s/5cda95b17ee0
源码下载地址:
https://download.csdn.net/download/2301_76953549/88920123
LW目录
【如需全文请按文末获取联系】
目录
- 开发环境
- 演示视频
- 源码下载地址:
- LW目录
- 一、项目简介
- 二、系统设计
- 2.1软件功能模块设计
- 2.2数据库设计
- 三、系统项目部分截图
- 3.1管理员功能实现
- 3.2老师功能实现
- 3.3用户功能实现
- 四、部分核心代码
- 4.1 用户部分
- 获取源码或论文
一、项目简介
智慧校园管理系统可以实现记事本管理,备忘录管理,软件管理,软件留言管理,软件收藏管理,课程管理,课程留言管理,课程收藏管理,老师管理,宿舍管理,宿舍人员管理,宿舍归寝管理,宿舍报修管理,音乐管理,音乐留言管理,音乐收藏管理,用户管理,成绩管理等功能。该系统采用了Mysql数据库,Java语言,Spring Boot框架等技术进行编程实现。
二、系统设计
2.1软件功能模块设计
图4.1即为设计的管理员功能结构,管理员权限操作的功能包括管理记事本,管理备忘录,管理软件,管理课程,管理音乐,管理宿舍,管理成绩,管理老师等。
图4.2即为设计的老师功能结构,老师权限操作的功能包括管理成绩,管理宿舍,管理宿舍归寝,管理宿舍报修,管理音乐,管理软件等。
图4.3即为设计的用户功能结构,用户权限操作的功能包括下载软件安装包,观看课程视频以及软件安装视频,播放音乐,查看成绩,管理备忘录以及记事本信息,提交宿舍报修信息,查看宿舍人员信息等。
2.2数据库设计
(1)图4.4即为宿舍报修这个实体所拥有的属性值。
(2)图4.5即为备忘录这个实体所拥有的属性值。
(3)图4.6即为成绩这个实体所拥有的属性值。
(4)图4.7即为软件这个实体所拥有的属性值。
(5)图4.8即为课程这个实体所拥有的属性值。
(6)图4.9即为音乐这个实体所拥有的属性值。
(7)图4.10即为用户这个实体所拥有的属性值。
(8)图4.11即为上面介绍的实体中存在的联系。
三、系统项目部分截图
3.1管理员功能实现
音乐管理
图5.1 即为编码实现的音乐管理界面,管理员下架音乐,上架音乐,修改音乐信息,包括修改音乐热度,音乐名称,音乐类型等信息,删除音乐,查询音乐等。
备忘录管理
图5.3 即为编码实现的备忘录管理界面,管理员增删改查备忘录信息,备忘录信息包括备忘录名称,备忘录类型,记录时间等信息。
3.2老师功能实现
宿舍管理
图5.4 即为编码实现的宿舍管理界面,老师在宿舍管理界面录入宿舍信息,宿舍信息包括宿舍地址,宿舍名称,录入时间等信息,老师可以查询宿舍,修改宿舍信息等。
课程管理
图5.6 即为编码实现的课程管理界面,老师需要上传课程学习视频,上传课件,登记课程信息等,同时老师可以上架课程,下架课程,修改课程描述信息,删除课程等。
3.3用户功能实现
软件信息
图5.8 即为编码实现的软件信息界面,用户下载软件安装包,查看软件安装视频,在软件信息界面的下方留言区域发布留言。
课程信息
图5.9 即为编码实现的课程信息界面,用户通过课程视频学习课程知识,可以下载课程课件,可以在课程信息界面下方的留言区域发布课程留言,可以可以收藏本界面的课程。
宿舍报修管理
图5.11 即为编码实现的宿舍报修管理界面,用户在后台的宿舍报修管理界面提交宿舍报修信息,可以查询宿舍报修信息等。
四、部分核心代码
4.1 用户部分
package com.controller;import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;/*** 成绩* 后端接口* @author* @email
*/
@RestController
@Controller
@RequestMapping("/chengji")
public class ChengjiController {private static final Logger logger = LoggerFactory.getLogger(ChengjiController.class);@Autowiredprivate ChengjiService chengjiService;@Autowiredprivate TokenService tokenService;@Autowiredprivate DictionaryService dictionaryService;//级联表service@Autowiredprivate KechengService kechengService;@Autowiredprivate YonghuService yonghuService;@Autowiredprivate LaoshiService laoshiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永不会进入");else if("老师".equals(role))params.put("laoshiId",request.getSession().getAttribute("userId"));else if("用户".equals(role))params.put("yonghuId",request.getSession().getAttribute("userId"));if(params.get("orderBy")==null || params.get("orderBy")==""){params.put("orderBy","id");}PageUtils page = chengjiService.queryPage(params);//字典表数据转换List<ChengjiView> list =(List<ChengjiView>)page.getList();for(ChengjiView c:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);ChengjiEntity chengji = chengjiService.selectById(id);if(chengji !=null){//entity转viewChengjiView view = new ChengjiView();BeanUtils.copyProperties( chengji , view );//把实体数据重构到view中//级联表KechengEntity kecheng = kechengService.selectById(chengji.getKechengId());if(kecheng != null){BeanUtils.copyProperties( kecheng , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段view.setKechengId(kecheng.getId());}//级联表YonghuEntity yonghu = yonghuService.selectById(chengji.getYonghuId());if(yonghu != null){BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段view.setYonghuId(yonghu.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody ChengjiEntity chengji, HttpServletRequest request){logger.debug("save方法:,,Controller:{},,chengji:{}",this.getClass().getName(),chengji.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永远不会进入");else if("用户".equals(role))chengji.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));Wrapper<ChengjiEntity> queryWrapper = new EntityWrapper<ChengjiEntity>().eq("yonghu_id", chengji.getYonghuId()).eq("kecheng_id", chengji.getKechengId()).eq("chengji_name", chengji.getChengjiName()).eq("beizhu", chengji.getBeizhu());logger.info("sql语句:"+queryWrapper.getSqlSegment());ChengjiEntity chengjiEntity = chengjiService.selectOne(queryWrapper);if(chengjiEntity==null){chengji.setInsertTime(new Date());chengji.setCreateTime(new Date());chengjiService.insert(chengji);return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody ChengjiEntity chengji, HttpServletRequest request){logger.debug("update方法:,,Controller:{},,chengji:{}",this.getClass().getName(),chengji.toString());String role = String.valueOf(request.getSession().getAttribute("role"));
// if(false)
// return R.error(511,"永远不会进入");
// else if("用户".equals(role))
// chengji.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));//根据字段查询是否有相同数据Wrapper<ChengjiEntity> queryWrapper = new EntityWrapper<ChengjiEntity>().notIn("id",chengji.getId()).andNew().eq("yonghu_id", chengji.getYonghuId()).eq("kecheng_id", chengji.getKechengId()).eq("chengji_name", chengji.getChengjiName()).eq("beizhu", chengji.getBeizhu());logger.info("sql语句:"+queryWrapper.getSqlSegment());ChengjiEntity chengjiEntity = chengjiService.selectOne(queryWrapper);if(chengjiEntity==null){chengjiService.updateById(chengji);//根据id更新return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());chengjiService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save( String fileName, HttpServletRequest request){logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");try {List<ChengjiEntity> chengjiList = new ArrayList<>();//上传的东西Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段Date date = new Date();int lastIndexOf = fileName.lastIndexOf(".");if(lastIndexOf == -1){return R.error(511,"该文件没有后缀");}else{String suffix = fileName.substring(lastIndexOf);if(!".xls".equals(suffix)){return R.error(511,"只支持后缀为xls的excel文件");}else{URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径File file = new File(resource.getFile());if(!file.exists()){return R.error(511,"找不到上传文件,请联系管理员");}else{List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件dataList.remove(0);//删除第一行,因为第一行是提示for(List<String> data:dataList){//循环ChengjiEntity chengjiEntity = new ChengjiEntity();
// chengjiEntity.setYonghuId(Integer.valueOf(data.get(0))); //用户 要改的
// chengjiEntity.setKechengId(Integer.valueOf(data.get(0))); //课程 要改的
// chengjiEntity.setChengjiName(data.get(0)); //成绩名称 要改的
// chengjiEntity.setChengjiChengji(data.get(0)); //成绩 要改的
// chengjiEntity.setBeizhu(data.get(0)); //备注 要改的
// chengjiEntity.setInsertTime(date);//时间
// chengjiEntity.setCreateTime(date);//时间chengjiList.add(chengjiEntity);//把要查询是否重复的字段放入map中}//查询是否重复chengjiService.insertBatch(chengjiList);return R.ok();}}}}catch (Exception e){e.printStackTrace();return R.error(511,"批量插入数据异常,请联系管理员");}}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));// 没有指定排序字段就默认id倒序if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){params.put("orderBy","id");}PageUtils page = chengjiService.queryPage(params);//字典表数据转换List<ChengjiView> list =(List<ChengjiView>)page.getList();for(ChengjiView c:list)dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段return R.ok().put("data", page);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);ChengjiEntity chengji = chengjiService.selectById(id);if(chengji !=null){//entity转viewChengjiView view = new ChengjiView();BeanUtils.copyProperties( chengji , view );//把实体数据重构到view中//级联表KechengEntity kecheng = kechengService.selectById(chengji.getKechengId());if(kecheng != null){BeanUtils.copyProperties( kecheng , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setKechengId(kecheng.getId());}//级联表YonghuEntity yonghu = yonghuService.selectById(chengji.getYonghuId());if(yonghu != null){BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setYonghuId(yonghu.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody ChengjiEntity chengji, HttpServletRequest request){logger.debug("add方法:,,Controller:{},,chengji:{}",this.getClass().getName(),chengji.toString());Wrapper<ChengjiEntity> queryWrapper = new EntityWrapper<ChengjiEntity>().eq("yonghu_id", chengji.getYonghuId()).eq("kecheng_id", chengji.getKechengId()).eq("chengji_name", chengji.getChengjiName()).eq("beizhu", chengji.getBeizhu());logger.info("sql语句:"+queryWrapper.getSqlSegment());ChengjiEntity chengjiEntity = chengjiService.selectOne(queryWrapper);if(chengjiEntity==null){chengji.setInsertTime(new Date());chengji.setCreateTime(new Date());chengjiService.insert(chengji);return R.ok();}else {return R.error(511,"表中有相同数据");}}}
获取源码或论文
如需对应的LW或源码,以及其他定制需求,也可以点我头像查看个人简介联系。