Eclipse+Java+SSM+Easyui实现网上考试系统

简介: Eclipse+Java+SSM+Easyui实现网上考试系统

一、系统介绍


软件环境

IDEA:2018.2

Java:jdk1.8

Mysql:8.0.13

Tomcat:8.5.23


系统功能

1.考生:注册与登录,考试,查询成绩,修改个人资料。

2.超级管理员:管理管理员信息,考生信息管理,套题信息管理,考试题目管理。

3.一般管理员:考生信息管理,套题信息管理,考试题目管理。


数据库涉及的表

lesson

manager

questions

student

studentresult

taoti


二、系统展示


1.考生-注册登录


20210401224637753.jpg


2.考生-主页面


20210401224653657.jpg


3.考生-选择课程


20210401224708975.jpg

4.考生-考试界面


20210401224725132.jpg


5.考生-自动判卷

20210401224740397.jpg

6.考生-查询成绩


20210401224756359.jpg


7.考生-修改信息


20210401224915361.jpg

8.管理员-登录


2021040122492954.jpg


9.管理员-管理员信息管理


20210401224942366.jpg


10.管理员-考生信息管理


20210401224958214.jpg


11.管理员-考生成绩管理


20210401225011919.jpg


12.管理员-课程信息管理


20210401225027564.jpg


13.管理员-套题信息管理


20210401225041751.jpg


14.管理员-考试题目管理


20210401225056325.jpg


三、代码实现


ExamController.java

package controller;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.servlet.http.HttpSession;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import po.Exam;
import po.Questions;
import po.QuestionsCustom;
import po.Student;
import po.Studentresult;
import po.StudentresultCustom;
import po.Taoti;
import service.QuestionsService;
import service.ResultService;
import service.StudentService;
import service.TaotiService;
@Controller
public class ExamController {
  @Autowired
  private TaotiService taotiService;
  @Autowired
  private QuestionsService questionsService;
  @Autowired
  private StudentService studentService;
  @Autowired
  private ResultService resultService;
  @RequestMapping("/toExam.action")
  public String toExam() throws Exception{
    return "/exam";
  }
  @RequestMapping("/toExamPage.action")
  public ModelAndView toExamPage(Integer lessonid) throws Exception{
    ModelAndView modelAndView=new ModelAndView();
    List<Taoti> list = taotiService.findListByLessonid(lessonid);
    if (list.size()>0) {
      Integer length=list.size();
      Integer index=(int) (Math.random()*(length-1));
      Taoti taoti=list.get(index);
      List<QuestionsCustom> list2 = questionsService.findListByTaotiid(taoti.getId());
      modelAndView.addObject("list", list2);
    }else {
      modelAndView.addObject("list", null);
    }
    modelAndView.setViewName("/examPage");
    return modelAndView;
  }
  @RequestMapping("/postExam.action")
  public ModelAndView postExam(Exam exam,HttpSession session) throws Exception{
    ModelAndView modelAndView=new ModelAndView();
    Studentresult studentresult=new Studentresult();
    Map<Integer, String> map = exam.getAnswerMap();
    Set<Integer> keySet=map.keySet();
    Iterator<Integer> it=keySet.iterator();
    Integer singleGrade=0;
    Integer doubleGrade=0;
    Integer taotiId=null;
    while(it.hasNext()) {
      Integer key=it.next();
      String value=map.get(key);
      Questions questions = questionsService.findById(key);
      if(taotiId == null) {
        taotiId=questions.getTaotiid();
      }
      if(questions.getType().equals("单选")) {
        if(questions.getAnswer().equals(value)) {
          singleGrade+=10;
        }
      }else {
        if(questions.getAnswer().equals(value)) {
          doubleGrade+=20;
        }
      }
    }
    Integer totalGrade=singleGrade+doubleGrade;
    Taoti taoti = taotiService.fintOneById(taotiId);
    String examnumber="CN";
    SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyyMMdd");
    Date date=new Date();
    String strD = simpleDateFormat.format(date);
    Object studentName = session.getAttribute("studentName");
    String studentId=null;
    if(studentName!=null) {
      String studentName2=studentName.toString();
      Student student = studentService.findOne(studentName2);
      studentId=student.getId().toString();
    }
    examnumber=examnumber+strD+studentId;
    studentresult.setExamnumber(examnumber);
    studentresult.setLessonid(taoti.getLessonid());
    studentresult.setResingle(singleGrade);
    studentresult.setResmore(doubleGrade);
    studentresult.setRestotal(totalGrade);
    studentresult.setCreatetime(new Timestamp(new Date().getTime()));
    if(session.getAttribute("xiaowutoken")!=null) {
      resultService.addOne(studentresult);
      session.removeAttribute("xiaowutoken");
    }
    List<QuestionsCustom> questionsCustoms = questionsService.findListByTaotiid(taotiId);
    StudentresultCustom studentresultCustom=new StudentresultCustom();
    BeanUtils.copyProperties(studentresult, studentresultCustom);
    studentresultCustom.setLessonname(questionsCustoms.get(0).getLessonName());
    modelAndView.setViewName("/examResult");
    modelAndView.addObject("studentresult", studentresultCustom);
    return modelAndView;
  }
}

CustomException.java

package exception;
public class CustomException extends Exception {
  /**
   * 
   */
  private static final long serialVersionUID = 1L;
  private String message;
  public CustomException(String message) {
    super(message);
    this.message=message;
  }
  public String getMessage() {
    return message;
  }
  public void setMessage(String message) {
    this.message = message;
  } 
}

LessonServiceImpl.java

package serviceImpl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import mapper.LessonMapper;
import mapper.LessonMapperCustom;
import po.Lesson;
import po.LessonExample;
import po.Pagination;
import service.LessonService;
public class LessonServiceImpl implements LessonService {
  @Autowired
  private LessonMapper lessonMapper;
  @Autowired
  private LessonMapperCustom lessonMapperCustom;
  public List<Lesson> getListByLimit(Pagination pagination) throws Exception {
    pagination.setStartPage((pagination.getPage()-1)*pagination.getRows());
    return lessonMapperCustom.getListByLimit(pagination);
  }
  public List<Lesson> getList() throws Exception {
    LessonExample example=new LessonExample();
    return lessonMapper.selectByExample(example);
  }
  @Transactional
  public void deleteOneById(Integer id) {
    lessonMapper.deleteByPrimaryKey(id);
  }
  @Transactional
  public void addOne(Lesson lesson) {
    lessonMapper.insertSelective(lesson);
  }
}

QueryResultVo.java

package vo;
import po.Pagination;
import po.QueryResult;
import po.StudentresultCustom;
public class QueryResultVo {
  private Pagination pagination;
  private QueryResult queryResult;
  public Pagination getPagination() {
    return pagination;
  }
  public void setPagination(Pagination pagination) {
    this.pagination = pagination;
  }
  public QueryResult getQueryResult() {
    return queryResult;
  }
  public void setQueryResult(QueryResult queryResult) {
    this.queryResult = queryResult;
  }
}

index.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="${pageContext.request.contextPath }/image/main_logo.ico" rel="shortcut icon">
<title>在线考试系统-首页</title>
<link rel="stylesheet" type="text/css"
  href="${pageContext.request.contextPath }/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"
  href="${pageContext.request.contextPath }/easyui/themes/icon.css">
<script type="text/javascript"
  src="${pageContext.request.contextPath }/easyui/jquery.min.js"></script>
<script type="text/javascript"
  src="${pageContext.request.contextPath }/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript"
  src="${pageContext.request.contextPath }/easyui/locale/easyui-lang-zh_CN.js"></script>
<script type="text/javascript">
  $(function(){
    var spanText = $("#sp").text();
    if(spanText==""){
      $("#ft").hide();
    }
  })
</script>
</head>
<body style="background-image:url('${pageContext.request.contextPath}/image/indexback.jpg');background-size:cover">
<div style="margin-top:2%">
  <font color="#01814A" size="12px" face="仿宋" style="font-weight:bold;margin-left:34%">营 养 在 线 考 试 网</font>
  <br>
  <br>
  <font id="ft" style="margin-left:35%">当 前 学 生:<span id="sp">${sessionScope.studentName }</span></font>
</div>
<div style="margin-top:5%;margin-left:30%">
  <table cellpadding="30px">
    <tr>
      <td>
        <a href="${pageContext.request.contextPath }/toExam.action" class="easyui-linkbutton" data-options="iconCls:'icon-edit',size:'large'"><font size="4px">在线考试</font></a>
      </td>
      <td>
        <a href="${pageContext.request.contextPath }/queryResult.action" class="easyui-linkbutton" data-options="iconCls:'icon-search',size:'large'"><font size="4px">成绩查询</font></a>
      </td>
    </tr>
    <tr>
      <td>
        <a href="${pageContext.request.contextPath }/toEdit.action" class="easyui-linkbutton" data-options="iconCls:'icon-reload',size:'large'"><font size="4px">修改资料</font></a>
      </td>
      <td>
        <a href="${pageContext.request.contextPath }/logout.action" class="easyui-linkbutton" data-options="iconCls:'icon-cancel',size:'large'"><font size="4px">退出系统</font></a>
      </td>
    </tr>
  </table>
</div>
<center style="margin-top:5%">
  <font>CopyRight ©: 水坚石青 版权所有</font>
</center>
</body>
</html>

managerIndex.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="${pageContext.request.contextPath }/image/main_logo.ico" rel="shortcut icon">
<title>在线考试系统-后台管理</title>
<link rel="stylesheet" type="text/css"
  href="${pageContext.request.contextPath }/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"
  href="${pageContext.request.contextPath }/easyui/themes/icon.css">
<script type="text/javascript"
  src="${pageContext.request.contextPath }/easyui/jquery.min.js"></script>
<script type="text/javascript"
  src="${pageContext.request.contextPath }/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript"
  src="${pageContext.request.contextPath }/easyui/locale/easyui-lang-zh_CN.js"></script>
<script type="text/javascript">
  function openTab(title,url,icon){
    var managerName="${sessionScope.managerName}";
    if (managerName=="") {
      window.location.href="${pageContext.request.contextPath }/managerLogout.action";
      return;
    }
    if ($("#tabs").tabs("exists",title)) {
      $("#tabs").tabs("select",title);
    }else{
      var content="<iframe frameborder='0' scolling='auto' width='100%' height='100%' src='${pageContext.request.contextPath}/jsp/"+url+"'></iframe>";
      $("#tabs").tabs("add",{
        title:title,
        iconCls:icon,
        closable:true,
        content:content
      })
    }
  }
</script>
</head>
<body class="easyui-layout">
<input id="managerAuthority" type="hidden" value="${sessionScope.managerAuthority }">
  <div data-options="region:'north'" style="height:60px">
    <div style="line-height:60px;height:58px;background-image:url('${pageContext.request.contextPath}/image/signinback.jpg');background-size:cover">
      <font color="white" size="8px" face="仿宋" style="font-weight:bold;margin-left:2%">营 养 在 线 考 试 网<font size="5px" color="black"> -- 后 台 管 理 </font></font>
      <font id="ft" style="margin-left:20%">当 前 管 理 员:<span id="sp">${sessionScope.managerName }</span></font>
    </div>
  </div>
  <div data-options="region:'south'" style="height:40px">
    <center style="margin-top:1%">
      <font>CopyRight © : 2021 水坚石青 版权所有</font>
    </center>
  </div>
  <div data-options="region:'west',title:'后台导航栏',split:true" style="width:200px">
    <div class="easyui-accordion" data-options="fit:true">
      <c:if test="${sessionScope.managerAuthority=='super' }">
        <div title="管理员管理" style="padding: 10px" data-options="iconCls:'icon-man'" align="center">
          <a href="javascript:openTab('管理员信息管理','managerList.jsp','icon-man')"  class="easyui-linkbutton" data-options="iconCls:'icon-man',plain:true" style="width:150px">管理员信息管理</a>
        </div>
      </c:if>
      <div title="考生管理" style="padding: 10px" data-options="iconCls:'icon-group'" align="center">
        <a href="javascript:openTab('考生信息管理','managerStudentList.jsp','icon-group')" class="easyui-linkbutton" data-options="iconCls:'icon-group',plain:true" style="width:150px">考生信息管理</a>
        <a href="javascript:openTab('考生成绩管理','managerQueryResult.jsp','icon-definition')" class="easyui-linkbutton" data-options="iconCls:'icon-definition',plain:true" style="width:150px">考生成绩管理</a>
      </div>
      <div title="试题管理" style="padding:10px" data-options="iconCls:'icon-ask'" align="center">
        <a href="javascript:openTab('课程信息管理','managerLessonList.jsp','icon-ask')" class="easyui-linkbutton" data-options="iconCls:'icon-ask',plain:true" style="width:150px">课程信息管理</a>
        <a href="javascript:openTab('套题信息管理','managerTaotiList.jsp','icon-deployment')" class="easyui-linkbutton" data-options="iconCls:'icon-deployment',plain:true" style="width:150px">套题信息管理</a>
        <a href="javascript:openTab('考试题目管理','managerQuestionsList.jsp','icon-flow')" class="easyui-linkbutton" data-options="iconCls:'icon-flow',plain:true" style="width:150px">考试题目管理</a>
      </div>
      <div title="系统管理" style="padding: 10px" align="center">
        <a href="${pageContext.request.contextPath }/managerLogout.action" class="easyui-linkbutton" data-options="iconCls:'icon-signout',plain:true" style="width:150px">退出后台管理</a>
      </div>
    </div>
  </div>
  <div data-options="region:'center'" style="padding:1px;background:#eee">
    <div id="tabs" class="easyui-tabs" data-options="fit:true,border:false">
      <div title="首页">
        <div align="center" style="margin-top: 15%">
          <font size="6" style="font-weight: bold">欢  迎  使  用  !</font>
        </div>
      </div>
    </div>
  </div>
</body>
</html>


四、其他


1.其他系统实现


Java+JSP实现图书管理系统

Java+Servlet+JSP实现学生成绩管理系统

Java+Servlet+JSP实现宠物诊所管理系统



相关文章
|
1月前
|
监控 Java API
如何使用Java语言快速开发一套智慧工地系统
使用Java开发智慧工地系统,采用Spring Cloud微服务架构和前后端分离设计,结合MySQL、MongoDB数据库及RESTful API,集成人脸识别、视频监控、设备与环境监测等功能模块,运用Spark/Flink处理大数据,ECharts/AntV G2实现数据可视化,确保系统安全与性能,采用敏捷开发模式,提供详尽文档与用户培训,支持云部署与容器化管理,快速构建高效、灵活的智慧工地解决方案。
|
26天前
|
设计模式 消息中间件 搜索推荐
Java 设计模式——观察者模式:从优衣库不使用新疆棉事件看系统的动态响应
【11月更文挑战第17天】观察者模式是一种行为设计模式,定义了一对多的依赖关系,使多个观察者对象能直接监听并响应某一主题对象的状态变化。本文介绍了观察者模式的基本概念、商业系统中的应用实例,如优衣库事件中各相关方的动态响应,以及模式的优势和实际系统设计中的应用建议,包括事件驱动架构和消息队列的使用。
|
1月前
|
运维 自然语言处理 供应链
Java云HIS医院管理系统源码 病案管理、医保业务、门诊、住院、电子病历编辑器
通过门诊的申请,或者直接住院登记,通过”护士工作站“分配患者,完成后,进入医生患者列表,医生对应开具”长期医嘱“和”临时医嘱“,并在电子病历中,记录病情。病人出院时,停止长期医嘱,开具出院医嘱。进入出院审核,审核医嘱与住院通过后,病人结清缴费,完成出院。
98 3
|
1月前
|
Java 数据库连接 数据库
深入探讨Java连接池技术如何通过复用数据库连接、减少连接建立和断开的开销,从而显著提升系统性能
在Java应用开发中,数据库操作常成为性能瓶颈。本文通过问题解答形式,深入探讨Java连接池技术如何通过复用数据库连接、减少连接建立和断开的开销,从而显著提升系统性能。文章介绍了连接池的优势、选择和使用方法,以及优化配置的技巧。
41 1
|
1月前
|
JavaScript Java 项目管理
Java毕设学习 基于SpringBoot + Vue 的医院管理系统 持续给大家寻找Java毕设学习项目(附源码)
基于SpringBoot + Vue的医院管理系统,涵盖医院、患者、挂号、药物、检查、病床、排班管理和数据分析等功能。开发工具为IDEA和HBuilder X,环境需配置jdk8、Node.js14、MySQL8。文末提供源码下载链接。
|
2月前
|
移动开发 前端开发 JavaScript
java家政系统成品源码的关键特点和技术应用
家政系统成品源码是已开发完成的家政服务管理软件,支持用户注册、登录、管理个人资料,家政人员信息管理,服务项目分类,订单与预约管理,支付集成,评价与反馈,地图定位等功能。适用于各种规模的家政服务公司,采用uniapp、SpringBoot、MySQL等技术栈,确保高效管理和优质用户体验。
|
2月前
|
XML JSON 监控
告别简陋:Java日志系统的最佳实践
【10月更文挑战第19天】 在Java开发中,`System.out.println()` 是最基本的输出方法,但它在实际项目中往往被认为是不专业和不足够的。本文将探讨为什么在现代Java应用中应该避免使用 `System.out.println()`,并介绍几种更先进的日志解决方案。
62 1
|
2月前
|
Java 关系型数据库 API
介绍一款Java开发的企业接口管理系统和开放平台
YesApi接口管理平台Java版,基于Spring Boot、Vue.js等技术,提供API接口的快速研发、管理、开放及收费等功能,支持多数据库、Docker部署,适用于企业级PaaS和SaaS平台的二次开发与搭建。
|
2月前
|
前端开发 Java 数据库连接
基于Java的校车管理系统(下)
基于Java的校车管理系统(下)
28 0
|
2月前
|
存储 前端开发 Java
基于Java的校车管理系统
基于Java的校车管理系统(上)
29 0

推荐镜像

更多