ssm+mysql+jsp打造在线考试系统WeKnow-学生端
一.登陆模块
前台提交账号和密码传到后台处理控制层
1.1 首先是控制器
@RequestMapping(value="/studentLogin", method=RequestMethod.POST)
public ModelAndView studentLogin(StudentInfo student, HttpServletRequest request) {
ModelAndView model = new ModelAndView();
StudentInfo loginStudent = studentInfoService.getStudentByAccountAndPwd(student.getStudentAccount());
if(loginStudent == null || !student.getStudentPwd().equals(loginStudent.getStudentPwd())){
model.setViewName("home/suc");
return model;
}
request.getSession().setAttribute("loginStudent", loginStudent);
System.out.println(request.getSession().getAttribute("loginStudent"));
model.setViewName("home/suc");
System.out.println("执行完毕");
return model;
}
}
1.2 在这里会调用服务层
StudentInfo loginStudent = studentInfoService.getStudentByAccountAndPwd(student.getStudentAccount());
1.3 服务层接口
public StudentInfo getStudentByAccountAndPwd(String studentAccount);
1.4 服务层实现
public StudentInfo getStudentByAccountAndPwd(String studentAccount) {
return studentInfoMapper.getStudentByAccountAndPwd(studentAccount);//调用dao接口
}
1.5 数据层接口
public StudentInfo getStudentByAccountAndPwd(String studentAccount);
1.6 数据层实现
<mapper namespace="com.caizhen.weknow.dao.StudentInfoMapper">
<!-- 定义resultMap -->
<resultMap type="com.caizhen.weknow.domain.StudentInfo" id="queryStudent">
<!-- 学号 -->
<id column="studentId" property="studentId"/>
<!-- 学生姓名 -->
<result column="studentName" property="studentName"/>
<!-- 学生账号 -->
<result column="studentAccount" property="studentAccount"/>
<!-- 学生账号密码 -->
<result column="studentPwd" property="studentPwd"/>
<!-- 班级 -->
<!-- 班级自身的属性与数据库字段的映射 -->
<association property="classInfo" javaType="com.caizhen.weknow.domain.ClassInfo">
<id column="classId" property="classId"/>
<result column="className" property="className"/>
</association>
<!-- 年级 -->
<!-- 年级自身的属性与数据库字段的映射 -->
<association property="grade" javaType="com.caizhen.weknow.domain.GradeInfo">
<id column="gradeId" property="gradeId"/>
<result column="gradeName" property="gradeName"/>
</association>
</resultMap>
<select id="getStudentByAccountAndPwd" parameterType="java.lang.String" resultMap="queryStudent">
SELECT a.*,b.className,c.gradeId,c.gradeName FROM StudentInfo a
INNER JOIN ClassInfo b ON a.classId=b.classId
INNER JOIN GradeInfo c ON b.gradeId=c.gradeId
WHERE studentAccount=#{studentAccount}
</select>
</mapper>
二:考试中心模块
<li><a id="examCenter-link" target="home" style="cursor: pointer;"
href="willexams?
classId=${sessionScope.loginStudent.classInfo.classId }&
gradeId=${sessionScope.loginStudent.grade.gradeId }&
studentId=${sessionScope.loginStudent.studentId }"
>考试中心</a></li>
向url:willexams传入三个参数:classId,gradeId,studentId
2.1进入控制器
@RequestMapping("/willexams")
public ModelAndView getStudentWillExam(
@RequestParam("classId") Integer classId,
@RequestParam("gradeId") Integer gradeId,
@RequestParam(value="studentId", required=false) Integer studentId) {
ModelAndView model = new ModelAndView();
model.setViewName("/home/examCenter");
//将classId和gradeId存入map集合中
Map<String, Object> map = new HashMap<String, Object>();
map.put("classId", classId);
map.put("gradeId", gradeId);
List<ExamPlanInfo> examPlans = examPlanInfoService.getStudentWillExam(map);
model.addObject("examPlans", examPlans);
model.addObject("gradeId", gradeId);
return model;
}
2.2 进入服务层接口
public List<ExamPlanInfo> getStudentWillExam(Map<String, Object> map);
2.3进入服务层实现层
public List<ExamPlanInfo> getStudentWillExam(Map<String, Object> map) {
return examPlanInfoMapper.getStudentWillExam(map);
}
2.4 进入数据协议层
public List<ExamPlanInfo> getStudentWillExam(Map<String, Object> map);
2.5 进入数据实现层
<mapper namespace="com.caizhen.weknow.dao.ExamPlanInfoMapper"> <resultMap type="com.caizhen.weknow.domain.ExamPlanInfo" id="queryWillExam">
<id column="examPlanId" property="examPlanId"/>
<result column="beginTime" property="beginTime"/>
<!-- 科目 -->
<association property="course" javaType="com.caizhen.weknow.domain.CourseInfo">
<id column="courseId" property="courseId"/>
<result column="courseName" property="courseName"/>
</association>
<!-- 班级 -->
<association property="clazz" javaType="com.caizhen.weknow.domain.ClassInfo">
<id column="classId" property="classId"/>
</association>
<!-- 试卷 -->
<association property="examPaper" javaType="com.caizhen.weknow.domain.ExamPaperInfo">
<id column="examPaperId" property="examPaperId"/>
<result column="examPaperName" property="examPaperName"/>
<result column="subjectNum" property="subjectNum"/>
<result column="examPaperScore" property="examPaperScore"/>
<result column="examPaperEasy" property="examPaperEasy"/>
<result column="examPaperTime" property="examPaperTime"/>
</association>
</resultMap> <!-- 查询学生待考信息 -->
<!-- 考试安排表 examplaninfo a-->
<!-- 班级信息表 classinfo b-->
<!-- 年级表 gradeinfo c -->
<!-- 试卷表 exampaperinfo d -->
<!-- 课程表 courseinfo e -->
<!-- 需要的参数
1.a.* 考试安排表所有字段
2.d.examPaperName 试卷名称
3.d.subjectNum 试题号
4.d.examPaperScore 试卷分数
5.d.examPaperEasy 试卷难易度
6.d.examPaperTime 考试时长
5.e.coure.name 课程名称
-->
<select id="getStudentWillExam" parameterType="java.util.Map" resultMap="queryWillExam">
SELECT a.*,d.examPaperName,d.subjectNum,d.examPaperScore,d.examPaperEasy,d.examPaperTime,e.courseName FROM ExamPlanInfo a
INNER JOIN ClassInfo b ON a.classId=b.classId
INNER JOIN GradeInfo c ON b.gradeId=c.gradeId
INNER JOIN ExamPaperInfo d ON a.examPaperId=d.examPaperId
INNER JOIN CourseInfo e ON a.courseId=e.courseId
WHERE a.classId=#{classId} AND b.gradeId=#{gradeId}
</select>
</mapper>
2.6 定向到考试中心界面判断exPlans中的条数是否大于0
<c:when test="${fn:length(examPlans) > 0 }">
如果不是则输出页面
<c:otherwise>
<div class="jumbotron">
<h1>暂无待考信息</h1>
<p>请等待教师分配</p>
</div>
</c:otherwise>
三:历史考试模块
1.前台
<!-- 考试历史 -->
<li><a id="mineCenter-link" target="home" style="cursor: pointer;" href="history/${sessionScope.loginStudent.studentId }" studentId="${sessionScope.loginStudent.studentId }">考试历史</a></li>
1.1 前台状态校验
<script type="text/javascript">
$(function() {
//考试中心状态判断
$("#examCenter-link, #mineCenter-link").click(function() {
//判断是否登录
var studetnId = $(this).attr("studentId");
//如果学生号为空
if(studetnId.trim() == "" || studetnId == null) {
zeroModal.show({
title: "提示",
content: "登录后才能查看",
width : '200px',
height : '130px',
overlay : false,
ok : true,
onClosed : function() {
location.reload();
}
});
return false;
}
});
2.后台
2.1 如果学生成功登陆后点击历史考试(控制层)
@Controller
public class ExamHistoryInfoHandler {
@Autowired
private ExamHistoryPaperService examHistoryPaperService;
@RequestMapping("/historys")
public ModelAndView examHistorys() {
List<ExamHistoryInfo> historys = examHistoryPaperService.getExamHistoryToTeacher();
ModelAndView model = new ModelAndView("admin/examHistorys");
model.addObject("historys", historys);
return model;
}
}
2.2 服务层
private ExamHistoryPaperService examHistoryPaperService;
服务层
public interface ExamHistoryPaperService {
//查询考试历史信息,针对前台学生查询
public List<ExamHistoryPaper> getExamHistoryToStudent(int studentId);
public int isAddExamHistory(Map<String, Object> map);
public int getHistoryInfoWithIds(Map<String, Object> map);
public List<ExamHistoryInfo> getExamHistoryToTeacher();
}
2.3 服务实现层
@Service
public class ExamHistoryPaperServiceImpl implements ExamHistoryPaperService { @Autowired
private ExamHistoryPaperMapper examHistoryPaperMapper;
public List<ExamHistoryPaper> getExamHistoryToStudent(int studentId) {
return examHistoryPaperMapper.getExamHistoryToStudent(studentId);
}
public int isAddExamHistory(Map<String, Object> map) {
return examHistoryPaperMapper.isAddExamHistory(map);
}
public int getHistoryInfoWithIds(Map<String, Object> map) {
return examHistoryPaperMapper.getHistoryInfoWithIds(map);
}
public List<ExamHistoryInfo> getExamHistoryToTeacher() {
return examHistoryPaperMapper.getExamHistoryToTeacher();
}
}
2.4 数据接口层
public interface ExamHistoryPaperMapper {
//查询考试历史信息,针对前台学生查询
public List<ExamHistoryPaper> getExamHistoryToStudent(int studentId);
public int isAddExamHistory(Map<String, Object> map);
public int getHistoryInfoWithIds(Map<String, Object> map);
//查询考试历史信息,针对后台教师查询
public List<ExamHistoryInfo> getExamHistoryToTeacher();
}
2.5 数据实现层
<mapper namespace="com.caizhen.weknow.dao.ExamHistoryPaperMapper"> <resultMap type="com.caizhen.weknow.domain.ExamHistoryInfo" id="queryExamHistoryToStudentResultMap">
<id column="historyId" property="historyId"/>
<result column="examScore" property="examScore"/>
<association property="examPaper" javaType="com.caizhen.weknow.domain.ExamPaperInfo">
<id column="examPaperId" property="examPaperId"/>
<result column="examPaperName" property="examPaperName"/>
<result column="examPaperScore" property="examPaperScore"/>
<result column="subjectNum" property="subjectNum"/>
</association>
</resultMap> <!-- 查询考试历史信息,针对前台学生查询 -->
<select id="getExamHistoryToStudent" parameterType="int" resultType="ExamHistoryPaper">
SELECT
a.historyId,a.examScore,b.examPaperId,b.examPaperName,b.examPaperScore,b.subjectNum,c.beginTime
FROM ExamHistoryInfo a
LEFT JOIN examPaperInfo b ON a.examPaperId=b.exampaperId
LEFT JOIN examPlanInfo c ON b.examPaperId=c.examPaperId
WHERE studentId=#{studentId}
</select> <!-- 新增历史记录 -->
<insert id="isAddExamHistory" parameterType="java.util.Map">
INSERT INTO ExamHistoryInfo VALUES(NULL, #{studentId}, #{examPaperId}, #{examScore});
</insert> <select id="getHistoryInfoWithIds" parameterType="java.util.Map" resultType="int">
SELECT COUNT(*) FROM ExamHistoryInfo WHERE studentId=#{studentId} AND examPaperId=#{examPaperId}
</select> <resultMap type="com.caizhen.weknow.domain.ExamHistoryInfo" id="queryExamHistoryToTeacherResultMap">
<id column="historyId" property="historyId"/>
<result column="examScore" property="examScore"/>
<association property="examPaper" javaType="com.caizhen.weknow.domain.ExamPaperInfo">
<id column="examPaperId" property="examPaperId"/>
<result column="examPaperName" property="examPaperName"/>
<result column="examPaperScore" property="examPaperScore"/>
<result column="subjectNum" property="subjectNum"/>
</association>
<association property="student" javaType="com.caizhen.weknow.domain.StudentInfo">
<id column="studentId" property="studentId"/>
<result column="studentName" property="studentName"/>
</association>
</resultMap>
<!-- 查询考试历史信息,针对后台教师查询 -->
<select id="getExamHistoryToTeacher" resultMap="queryExamHistoryToTeacherResultMap">
SELECT
a.historyId,a.examScore,b.examPaperId,b.examPaperName,b.examPaperScore,b.subjectNum,d.studentId,d.studentName
FROM ExamHistoryInfo a
INNER JOIN examPaperInfo b ON a.examPaperId=b.exampaperId
LEFT JOIN StudentInfo d ON a.studentId=d.studentId;
</select>
</mapper>
ssm+mysql+jsp打造在线考试系统WeKnow-学生端的更多相关文章
- 基于java开发jsp+ssm+mysql实现的在线考试系统 源码下载
实现的关于在线考试的功能有:用户前台:用户注册登录.查看考试信息.进行考试.查看考试成绩.查看历史考试记录.回顾已考试卷.修改密码.修改个人信息等,后台管理功能(脚手架功能不在这里列出),科目专业管理 ...
- 基于JSP的在线考试系统-JavaWeb项目-有源码
开发工具:Myeclipse/Eclipse + MySQL + Tomcat 系统简介: 网络考试系统主要用于实现高校在线考试,基本功能包括:自动组卷.试卷发布.试卷批阅.试卷成绩统计等.本系统结构 ...
- 基于Web在线考试系统的设计与实现
这是一个课程设计的文档,源码及文档数据库我都修改过了,貌似这里复制过来的时候图片不能贴出,下载地址:http://download.csdn.net/detail/sdksdk0/9361973 ...
- 基于B/S架构的在线考试系统的设计与实现
前言 这个是我的Web课程设计,用到的主要是JSP技术并使用了大量JSTL标签,所有代码已经上传到了我的Github仓库里,地址:https://github.com/quanbisen/online ...
- JavaWeb项目开发案例精粹-第3章在线考试系统-007View层
0.login.jsp <%@ page language="java" import="java.util.*" pageEncoding=" ...
- Java在线考试系统(含源码)
本文demo下载和视频教学观看地址:http://www.wisdomdd.cn/Wisdom/resource/articleDetail.htm?resourceId=1076 本实例介绍了在线考 ...
- 基于Django的在线考试系统
概述 基于Django的在线考试系统,适配电脑端,可以实现出题,答题,排行榜,倒计时等等等功能 详细 代码下载:http://www.demodashi.com/demo/13923.html 项目目 ...
- 基于ssh框架的在线考试系统开发的质量属性
我做的系统是基于ssh框架的在线考试系统.在线考试系统有以下几点特性:(1)系统响应时间需要非常快,可以迅速的出题,答题.(2)系统的负载量也需要非常大,可以支持多人在线考试(3)还有系统的安全性也需 ...
- WSB功能分解(在线考试系统)
对在线考试系统进行WSB功能分解至三级子功能,并且预估每个子功能所需时间. 一级功能 二级功能 三级功能 预估花费时间(小时) 考试管理员功能模块 培训计划 查询 1.5 重置 1 新增计划 1.5 ...
随机推荐
- IDEA Dao层快速跳转Mapper.xml 文件的插件
1.Idea 窗口→File→Setting→Plugins, 2.搜索 Free MyBatis plugin, install,等待安装完成后,Restart IDEA .
- C++基本程序设计——面向对象程序设计课堂笔记
主要对老师上课的ppt的笔记整理 C++基本程序设计 1.c++的输入输出 使用cin,cout和流运算符,开头须有 #include<iostream> (1)cin语句:cin> ...
- 使用 @Transactional 时常犯的N种错误
@Transactional是我们在用Spring时候几乎逃不掉的一个注解,该注解主要用来声明事务.它的实现原理是通过Spring AOP在注解修饰方法的前后织入事务管理的实现语句,所以开发者只需要通 ...
- 【Python】300行代码搞定HTML模板渲染
一.前言 模板语言由HTML代码和逻辑控制代码组成,此处@PHP.通过模板语言可以快速的生成预想的HTML页面.应该算是后端渲染不可缺少的组成部分. 二.功能介绍 通过使用学习tornado.bott ...
- [atAGC007E]Shik and Travel
二分枚举答案,判定答案是否合法 贪心:每一个叶子只能经过一遍,因此叶子的顺序一定是一个dfs序,即走完一棵子树中的所有叶子才会到子树外 根据这个贪心可以dp,设$f[k][l][r]$表示仅考虑$k$ ...
- Redis | 第4章 Redis中的数据库《Redis设计与实现》
目录 前言 1. Redis中的数据库 2. 数据库的键空间 3. 键的生成时间与过期时间 4. Redis中的过期键删除策略 5. AOF.RDB和复制功能对过期键的处理 5.1 生成 RDB 文件 ...
- Android系统编程入门系列之硬件交互——多媒体摄像头
多媒体系列硬件 多媒体包括图片.动画.音频.视频,这些多媒体素材的采集(输入)主要依靠摄像头和麦克风等硬件设备转化为基础数据,而他们的播放渲染(输出),则需要依靠具有相关功能的编解码软件.当然随着硬件 ...
- No 'Access-Control-Allow-Origin' header: 跨域问题踩坑记录
前言 前两周在服务器上部署一个系统时,遇到了跨域问题,这也不是第一次遇到跨域问题了,本来以为解决起来会很顺利,没想到解决过程中遇到了很多坑,所以觉得有必要写一篇博客记录一下这个坑. 问题产生原因 本来 ...
- [SCOI2009] windy 数 (数位dp)
题目 算法 应该是一道很经典的数位dp题 我们设dp[i][j]是填到第i位此时第i位的数是j的方案数 然后进行转移(代码注释) 代码 #include<iostream> #includ ...
- Codeforces 891E - Lust(生成函数)
Codeforces 题面传送门 & 洛谷题面传送门 NaCly_Fish:<简单>的生成函数题 然鹅我连第一步都没 observe 出来 首先注意到如果我们按题意模拟那肯定是不方 ...