0


Java毕业设计-基于SSM框架的供电公司安全生产考试系统项目实战(附源码+论文)

大家好!我是岛上程序猿,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:Java毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计
🌎微信小程序毕业设计

开发运行环境

  • 框架:ssm
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

源码下载地址:

https://download.csdn.net/download/m0_46388260/89278261

论文目录

【如需全文请按文末获取联系】
在这里插入图片描述
在这里插入图片描述

一、项目简介

这次开发的供电公司安全生产考试系统管理员,教师,学生。管理员功能有个人中心,学生管理,教师管理,主观题信息管理,主观题回答管理,主观题评分管理,成绩信息管理,试卷管理,试题管理,考试管理。教师可以发布考试信息,学生进行考试。

二、系统设计

2.1软件功能模块设计

下图就是系统功能结构图。
在这里插入图片描述

2.2数据库设计

(1)下图就是管理员实体E-R图
在这里插入图片描述
(2)下图就是试卷实体E-R图
在这里插入图片描述
(3)下图就是学生信息实体E-R图
在这里插入图片描述

三、系统项目部分截图

3.1教师信息管理

管理员可以管理教师信息,可以添加,修改,删除教师信息信息。下图就是教师信息管理页面。
在这里插入图片描述

3.2学生信息管理

管理员可以对学生信息进行查询和修改操作。下图就是学生信息管理页面。
在这里插入图片描述

3.3主观题管理

教师可以对主观题进行进行添加,修改,删除操作。下图就是主观题信息管理页面。
在这里插入图片描述

3.4试题信息管理

教师可以管理试题信息,可以添加,修改,删除试题信息信息。下图就是试题信息管理页面。
在这里插入图片描述

四、部分核心代码

packagecom.controller;importjava.text.SimpleDateFormat;importjava.util.ArrayList;importjava.util.Arrays;importjava.util.Calendar;importjava.util.Map;importjava.util.HashMap;importjava.util.Iterator;importjava.util.Date;importjava.util.List;importjavax.servlet.http.HttpServletRequest;importcom.utils.ValidatorUtils;importorg.apache.commons.lang3.StringUtils;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.format.annotation.DateTimeFormat;importorg.springframework.web.bind.annotation.PathVariable;importorg.springframework.web.bind.annotation.RequestBody;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.RestController;importcom.baomidou.mybatisplus.mapper.EntityWrapper;importcom.baomidou.mybatisplus.mapper.Wrapper;importcom.annotation.IgnoreAuth;importcom.entity.XueshengEntity;importcom.entity.view.XueshengView;importcom.service.XueshengService;importcom.service.TokenService;importcom.utils.PageUtils;importcom.utils.R;importcom.utils.MD5Util;importcom.utils.MPUtil;importcom.utils.CommonUtil;/**
 * 学生
 * 后端接口
 * @author 
 * @email 
 * @date 2021-05-10 21:13:32
 */@RestController@RequestMapping("/xuesheng")publicclassXueshengController{@AutowiredprivateXueshengService xueshengService;@AutowiredprivateTokenService tokenService;/**
     * 登录
     */@IgnoreAuth@RequestMapping(value ="/login")publicRlogin(String username,String password,String captcha,HttpServletRequest request){XueshengEntity user = xueshengService.selectOne(newEntityWrapper<XueshengEntity>().eq("xuehao", username));if(user==null||!user.getMima().equals(password)){returnR.error("账号或密码不正确");}String token = tokenService.generateToken(user.getId(), username,"xuesheng","学生");returnR.ok().put("token", token);}/**
     * 注册
     */@IgnoreAuth@RequestMapping("/register")publicRregister(@RequestBodyXueshengEntity xuesheng){//ValidatorUtils.validateEntity(xuesheng);XueshengEntity user = xueshengService.selectOne(newEntityWrapper<XueshengEntity>().eq("xuehao", xuesheng.getXuehao()));if(user!=null){returnR.error("注册用户已存在");}Long uId =newDate().getTime();
        xuesheng.setId(uId);
        xueshengService.insert(xuesheng);returnR.ok();}/**
     * 退出
     */@RequestMapping("/logout")publicRlogout(HttpServletRequest request){
        request.getSession().invalidate();returnR.ok("退出成功");}/**
     * 获取用户的session用户信息
     */@RequestMapping("/session")publicRgetCurrUser(HttpServletRequest request){Long id =(Long)request.getSession().getAttribute("userId");XueshengEntity user = xueshengService.selectById(id);returnR.ok().put("data", user);}/**
     * 密码重置
     */@IgnoreAuth@RequestMapping(value ="/resetPass")publicRresetPass(String username,HttpServletRequest request){XueshengEntity user = xueshengService.selectOne(newEntityWrapper<XueshengEntity>().eq("xuehao", username));if(user==null){returnR.error("账号不存在");}
        user.setMima("123456");
        xueshengService.updateById(user);returnR.ok("密码已重置为:123456");}/**
     * 后端列表
     */@RequestMapping("/page")publicRpage(@RequestParamMap<String,Object> params,XueshengEntity xuesheng,HttpServletRequest request){EntityWrapper<XueshengEntity> ew =newEntityWrapper<XueshengEntity>();PageUtils page = xueshengService.queryPage(params,MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xuesheng), params), params));returnR.ok().put("data", page);}/**
     * 前端列表
     */@RequestMapping("/list")publicRlist(@RequestParamMap<String,Object> params,XueshengEntity xuesheng,HttpServletRequest request){EntityWrapper<XueshengEntity> ew =newEntityWrapper<XueshengEntity>();PageUtils page = xueshengService.queryPage(params,MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xuesheng), params), params));returnR.ok().put("data", page);}/**
     * 列表
     */@RequestMapping("/lists")publicRlist(XueshengEntity xuesheng){EntityWrapper<XueshengEntity> ew =newEntityWrapper<XueshengEntity>();
          ew.allEq(MPUtil.allEQMapPre( xuesheng,"xuesheng"));returnR.ok().put("data", xueshengService.selectListView(ew));}/**
     * 查询
     */@RequestMapping("/query")publicRquery(XueshengEntity xuesheng){EntityWrapper<XueshengEntity> ew =newEntityWrapper<XueshengEntity>();
         ew.allEq(MPUtil.allEQMapPre( xuesheng,"xuesheng"));XueshengView xueshengView =  xueshengService.selectView(ew);returnR.ok("查询学生成功").put("data", xueshengView);}/**
     * 后端详情
     */@RequestMapping("/info/{id}")publicRinfo(@PathVariable("id")Long id){XueshengEntity xuesheng = xueshengService.selectById(id);returnR.ok().put("data", xuesheng);}/**
     * 前端详情
     */@RequestMapping("/detail/{id}")publicRdetail(@PathVariable("id")Long id){XueshengEntity xuesheng = xueshengService.selectById(id);returnR.ok().put("data", xuesheng);}/**
     * 后端保存
     */@RequestMapping("/save")publicRsave(@RequestBodyXueshengEntity xuesheng,HttpServletRequest request){
        xuesheng.setId(newDate().getTime()+newDouble(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xuesheng);XueshengEntity user = xueshengService.selectOne(newEntityWrapper<XueshengEntity>().eq("xuehao", xuesheng.getXuehao()));if(user!=null){returnR.error("用户已存在");}

        xuesheng.setId(newDate().getTime());
        xueshengService.insert(xuesheng);returnR.ok();}/**
     * 前端保存
     */@RequestMapping("/add")publicRadd(@RequestBodyXueshengEntity xuesheng,HttpServletRequest request){
        xuesheng.setId(newDate().getTime()+newDouble(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xuesheng);XueshengEntity user = xueshengService.selectOne(newEntityWrapper<XueshengEntity>().eq("xuehao", xuesheng.getXuehao()));if(user!=null){returnR.error("用户已存在");}

        xuesheng.setId(newDate().getTime());
        xueshengService.insert(xuesheng);returnR.ok();}/**
     * 修改
     */@RequestMapping("/update")publicRupdate(@RequestBodyXueshengEntity xuesheng,HttpServletRequest request){//ValidatorUtils.validateEntity(xuesheng);
        xueshengService.updateById(xuesheng);//全部更新returnR.ok();}/**
     * 删除
     */@RequestMapping("/delete")publicRdelete(@RequestBodyLong[] ids){
        xueshengService.deleteBatchIds(Arrays.asList(ids));returnR.ok();}/**
     * 提醒接口
     */@RequestMapping("/remind/{columnName}/{type}")publicRremindCount(@PathVariable("columnName")String columnName,HttpServletRequest request,@PathVariable("type")String type,@RequestParamMap<String,Object> map){
        map.put("column", columnName);
        map.put("type", type);if(type.equals("2")){SimpleDateFormat sdf =newSimpleDateFormat("yyyy-MM-dd");Calendar c =Calendar.getInstance();Date remindStartDate =null;Date remindEndDate =null;if(map.get("remindstart")!=null){Integer remindStart =Integer.parseInt(map.get("remindstart").toString());
                c.setTime(newDate()); 
                c.add(Calendar.DAY_OF_MONTH,remindStart);
                remindStartDate = c.getTime();
                map.put("remindstart", sdf.format(remindStartDate));}if(map.get("remindend")!=null){Integer remindEnd =Integer.parseInt(map.get("remindend").toString());
                c.setTime(newDate());
                c.add(Calendar.DAY_OF_MONTH,remindEnd);
                remindEndDate = c.getTime();
                map.put("remindend", sdf.format(remindEndDate));}}Wrapper<XueshengEntity> wrapper =newEntityWrapper<XueshengEntity>();if(map.get("remindstart")!=null){
            wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null){
            wrapper.le(columnName, map.get("remindend"));}int count = xueshengService.selectCount(wrapper);returnR.ok().put("count", count);}}

获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。


本文转载自: https://blog.csdn.net/m0_46388260/article/details/142668006
版权归原作者 岛上程序猿 所有, 如有侵权,请联系我们删除。

“Java毕业设计-基于SSM框架的供电公司安全生产考试系统项目实战(附源码+论文)”的评论:

还没有评论