2018-01-08

-须知
1.Controller层要负责业务流程的控制:

2.Service要负责业务模块的业务逻辑应用设计:

3.Dao层定义了与数据库交互的接口:

考试系统实现

考试中心模块实现

该模块主要对考生试卷进行分配,考生点击考试中心进入考试项目选择界面,紧接着需要进一步明确考试科目,最终选择相应的考试模式进行答题。考生必须按步骤进行,当且仅当前一操作已经执行才可以进入下一步。

1.考试项目选择模块实现

1.1.界面设计

2018-01-08_第1张图片
image.png

1.3.选择考试项目的核心代码如下所示:

1.3.1.前端请求代码:

1.3.2.Controller层:

//《ExamController.java相关源码》
@RequestMapping(value="index",method= RequestMethod.GET)
public ModelAndView index(){
return new ModelAndView("exam/index");
}
//1.选择考试专业项目 列表
@RequestMapping(value="chooseCourse")
public ModelAndView chooseCourse(ModelMap map, Integer pageNo, String findContent){
//分页,专业项目列表
map.put("findContent", findContent);
Pagination page = courseService.findByPage(map,pageNo,pageSize);
map.put("page", page);
return new ModelAndView("exam/choose_course");
}

1.3.3.Service层:

//《CourseService.java相关源码》
public interface CourseService {
//查询考试所有的专业项目 分页
Pagination findByPage(Map resultMap, Integer pageNo, Integer pageSize);
//考试项目信息
QCourse findById(Integer id);
//考试科目信息
QCourse findCourseTypeById(Integer parent_id,Integer type);
}

1.3.4.Dao层

//《QCourseMapper.java相关源码》
//考试科目信息 QCourse findCourseTypeById(@Param("parent_id") Integer parent_id,@Param("type") Integer type);
//获取所有的 _table

List findAll_Table();```

2.考试科目选择模块实现

2.1.界面设计

2018-01-08_第2张图片
image.png

2.2.考试科目选择的核心代码如下所示:

2.2.1.前端请求代码:

2.2.2.Controller层:

//《CourseService.java相关源码》
//根据考试专业项目的id查询出q_course_category所有的考试科目列表
@RequestMapping(value="get_course_list")
public ModelAndView getCourseList(ModelMap map,String findContent, Integer course_id){
if(course_id == null){
return new ModelAndView("exam/get_course_list");
}
//考试项目type
QCourse course = courseService.findById(course_id);
map.put("type",course.getType());
map.put("findContent", findContent);
map.put("course_id",course_id);
Pagination page = courseService.findByPage(map,pageNo,pageSize);
map.put("page", page);
return new ModelAndView("exam/get_course_list");
}

2.2.3.Service层

// 《CourseService.java相关源码》
public interface CourseService {
//考试项目信息
QCourse findById(Integer id);
}

2.2.4.Dao层

public interface QCourseMapper {
QCourse selectByPrimaryKey(Integer id);
}

3.考试模式模块实现

3.1.界面设计

2018-01-08_第3张图片
image.png

3.2.选择考试项目的核心代码如下所示:

3.2.1.前端请求代码:

3.2.2.Controller层:

//《ExamController.java相关源码》
//考试的模式选择 type=${remarks}考试项目 &courseType=${it.value}考试科目
@RequestMapping(value="get_model_list")
public ModelAndView getModelList(ModelMap map,Integer type,Integer courseType){
Map modelList = new LinkedHashMap<>();
modelList.put(String.valueOf(Const.ExamModelEnum.MODEL_1.getCode()),Const.ExamModelEnum.MODEL_1.getValue()); modelList.put(String.valueOf(Const.ExamModelEnum.MODEL_2.getCode()),Const.ExamModelEnum.MODEL_2.getValue()); modelList.put(String.valueOf(Const.ExamModelEnum.MODEL_3.getCode()),Const.ExamModelEnum.MODEL_3.getValue()); modelList.put(String.valueOf(Const.ExamModelEnum.MODEL_4.getCode()),Const.ExamModelEnum.MODEL_4.getValue()); modelList.put(String.valueOf(Const.ExamModelEnum.MODEL_5.getCode()),Const.ExamModelEnum.MODEL_5.getValue());
map.put("modelList",modelList);
map.put("type",type);

map.put("courseType",courseType);
return new ModelAndView("exam/get_model_list");

}

答题系统模块实现

该模块针对考生所选的考试类型进行自动分配相应的卷子。试题类型有单选题,多选题,判断题,大题,考生需要在固定的时间里完成该试卷,答题完毕后需点击交卷,否则时间截止时将会强制提交试卷无法作答。

1.考试答题系统模块实现

1.1.界面设计

2018-01-08_第4张图片
image.png

1.3.考试答题系统项目的核心代码如下所示:

1.3.1.前端请求代码:

1.3.2.Controller层:

//开始考试 随机生成新考卷
@RequestMapping(value="start_exam")
public ModelAndView StartExam(ModelMap map,Integer type,Integer courseType,Integer mode){
//考试项目
QCourse CourseProject = courseService.findById(type);
String CourseProjectName = CourseProject.getName();
map.put("CourseProjectName",CourseProjectName);
map.put("type",type);
//考试科目
QCourse Course = courseService.findCourseTypeById(CourseProject.getId(),courseType);
String CourseName = Course.getName();
map.put("CourseName",CourseName);
map.put("courseType",courseType);
//考试模式
Class clasz = Const.ExamModelEnum.class;
String modeName =(String) EnumUtil.getEnumValueByCode(mode, clasz);
map.put("modeName",modeName);
map.put("mode",mode);
//随机值 = 用来索引这个考卷的id
Random random = new Random();
int srandom = random.nextInt(1000000)%(9000000-1000000+1) + 1000000;
map.put("srandom",srandom);
//考试时间
int exam_time = 3600;
map.put("exam_time",exam_time);
//创建新的考卷
Map> questions = examService.CreateExamPaper(srandom,type,courseType,mode,exam_time);
map.put("questions",questions);
return new ModelAndView("exam/exam");
}

你可能感兴趣的:(2018-01-08)