首页>代码>ssm整合开发java在线考试系统,通过maven搭建>/examxx/src/main/java/com/extr/controller/ExamPaperController.java
package com.extr.controller;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;

import javax.servlet.http.HttpServletRequest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import com.extr.controller.domain.AnswerSheetItem;
import com.extr.controller.domain.Message;
import com.extr.controller.domain.PaperCreatorParam;
import com.extr.controller.domain.QuestionQueryResult;
import com.extr.domain.exam.ExamPaper;
import com.extr.domain.question.Field;
import com.extr.domain.question.Question;
import com.extr.domain.question.QuestionStruts;
import com.extr.security.UserInfo;
import com.extr.service.ExamService;
import com.extr.service.QuestionService;
import com.extr.util.Page;
import com.extr.util.PagingUtil;
import com.extr.util.QuestionAdapter;
import com.extr.util.xml.Object2Xml;

@Controller
public class ExamPaperController {

	@Autowired
	private ExamService examService;
	@Autowired
	private QuestionService questionService;

	private static final String SUCCESS_Message = "success";
	private static final String failed_Message = "failed";

	@RequestMapping(value = "/admin/exampaper-list", method = RequestMethod.GET)
	public String exampaperListPage(Model model,
			HttpServletRequest httpServletRequest) {

		return "redirect:exampaperfilter-0-1.html";
	}

	@RequestMapping(value = "/admin/exampaperfilter-{papertype}-{page}.html", method = RequestMethod.GET)
	public String exampaperListFilterPage(Model model,
			@PathVariable("papertype") String papertype,
			@PathVariable("page") int page) {

		Page<ExamPaper> pageModel = new Page<ExamPaper>();
		pageModel.setPageNo(page);
		pageModel.setPageSize(10);
		List<ExamPaper> paper = examService.getExamPaperListByPaperType(
				papertype, pageModel);
		String pageStr = PagingUtil.getPageBtnlink(page,
				pageModel.getTotalPage());
		model.addAttribute("papertype", papertype);
		model.addAttribute("paper", paper);
		model.addAttribute("pageStr", pageStr);
		return "admin/exampaper-list";
	}

	@RequestMapping(value = "/admin/exampaper-add", method = RequestMethod.GET)
	public String exampaperAddPage(Model model) {
		List<Field> fieldList = questionService.getAllField(null);
		model.addAttribute("fieldList", fieldList);
		return "admin/exampaper-add";
	}

	@RequestMapping(value = "/admin/exampaper-edit/{exampaperid}", method = RequestMethod.GET)
	public String exampaperEditPage(Model model,
			@PathVariable("exampaperid") int exampaperid,HttpServletRequest request) {
		
		String strUrl = "http://" + request.getServerName() // 服务器地址
				+ ":" + request.getServerPort() + "/";
		
		ExamPaper examPaper = examService.getExamPaperById(exampaperid);
		StringBuilder sb = new StringBuilder();
		if(examPaper.getContent() != null && !examPaper.getContent().equals("")){
			List<QuestionQueryResult> questionList = Object2Xml.toBean(examPaper.getContent(), List.class);
			for(QuestionQueryResult question : questionList){
				/*AnswerSheetItem as = new AnswerSheetItem();
				as.setAnswer(question.getAnswer());
				as.setQuestion_type_id(question.getQuestionTypeId());
				as.setPoint(question.getQuestionPoint());*/
				QuestionAdapter adapter = new QuestionAdapter(question,strUrl);
				sb.append(adapter.getStringFromXML());
			}
		}
		
		model.addAttribute("htmlStr", sb);
		model.addAttribute("exampaperid", exampaperid);
		model.addAttribute("exampapername", examPaper.getName());
		return "admin/exampaper-edit";
	}

	@RequestMapping(value = "/admin/update-exampaper/{exampaperid}", method = RequestMethod.POST)
	public @ResponseBody
	Message exampaperOnUpdate(Model model,
			@PathVariable("exampaperid") int exampaperid,
			@RequestBody HashMap<Integer, Float> questionPointMap) {
		
		
		Message message = new Message();
		try{
			ExamPaper examPaper = new ExamPaper();
			List<Integer> idList = new ArrayList<Integer>();
			Iterator<Integer> it = questionPointMap.keySet().iterator();
			float sum = 0;
			while(it.hasNext()){
				int key = it.next();
				idList.add(key);
			}
			List<QuestionQueryResult> questionList = examService
					.getQuestionDescribeListByIdList(idList);
			for(QuestionQueryResult q : questionList){
				q.setQuestionPoint(questionPointMap.get(q.getQuestionId()));
				sum += questionPointMap.get(q.getQuestionId());
			}
			String content = Object2Xml.toXml(questionList);
			examPaper.setContent(content);
			examPaper.setTotal_point(sum);
			examPaper.setId(exampaperid);
			examService.updateExamPaper(examPaper);
		}catch(Exception e){
			message.setResult(e.getLocalizedMessage());
		}
		return message;
	}
	
	@RequestMapping(value = "admin/exampaper-add", method = RequestMethod.POST)
	public @ResponseBody
	Message createExamPaper(@RequestBody PaperCreatorParam param) {

		UserInfo userInfo = (UserInfo) SecurityContextHolder.getContext()
				.getAuthentication().getPrincipal();
		Message message = new Message();
		ExamPaper examPaper = new ExamPaper();
		examPaper.setName(param.getPaperName());
		examPaper.setDuration(param.getTime());
		examPaper.setPass_point(param.getPassPoint());
		examPaper.setPaper_type(param.getPaperType());
		examPaper.setCreator(userInfo.getUsername());
		examPaper.setTotal_point(param.getPaperPoint());
		
		
		//手工组卷
		if(param.getQuestionKnowledgePointRate().size() == 0){
			try{
				examService.insertExamPaper(examPaper);
			}catch(Exception ex){
				message.setResult(ex.getMessage());
			}
			message.setGeneratedId(examPaper.getId());
			return message;
		}
		List<Integer> idList = new ArrayList<Integer>();

		HashMap<Integer, Float> knowledgeMap = param
				.getQuestionKnowledgePointRate();
		Iterator<Integer> it = knowledgeMap.keySet().iterator();
		while(it.hasNext()){
			idList.add(it.next());
		}

		HashMap<Integer, HashMap<Integer, List<QuestionStruts>>> questionMap = questionService
				.getQuestionStrutsMap(idList);
		
		try{
			examService.createExamPaper(questionMap, param.getQuestionTypeNum(),
					param.getQuestionTypePoint(),
					param.getQuestionKnowledgePointRate(), examPaper);
			message.setGeneratedId(examPaper.getId());
		}catch(Exception e){
			e.printStackTrace();
			message.setResult(e.getMessage());
		}
		
		
		return message;
	}
	
	@RequestMapping(value = "admin/paper-publish", method = RequestMethod.POST)
	public @ResponseBody Message publishExamPaper(@RequestBody Integer examPaperId){
		
		Message message = new Message();
		ExamPaper examPaper = new ExamPaper();
		examPaper.setId(examPaperId);
		examPaper.setStatus(1);
		try{
			examService.updateExamPaper(examPaper);
		}catch(Exception e){
			message.setResult(e.getClass().getName());
			
		}
		
		return message;
	}
	
	@RequestMapping(value = "admin/paper-update", method = RequestMethod.POST)
	public @ResponseBody Message updateExamPaper(@RequestBody ExamPaper examPaper){
		
		Message message = new Message();
		examPaper.setStatus(-1);
		try{
			examService.updateExamPaper(examPaper);
			message.setObject(examPaper);
		}catch(Exception e){
			message.setResult(e.getClass().getName());
			
		}
		
		return message;
	}
	
	@RequestMapping(value = "/admin/exampaper-preview/{exampaperid}", method = RequestMethod.GET)
	public String exampaperPreviewPage(Model model,
			@PathVariable("exampaperid") int exampaperid,HttpServletRequest request) {
		
		String strUrl = "http://" + request.getServerName() // 服务器地址
				+ ":" + request.getServerPort() + "/";
		
		ExamPaper examPaper = examService.getExamPaperById(exampaperid);
		StringBuilder sb = new StringBuilder();
		if(examPaper.getContent() != null && !examPaper.getContent().equals("")){
			List<QuestionQueryResult> questionList = Object2Xml.toBean(examPaper.getContent(), List.class);
			for(QuestionQueryResult question : questionList){
				/*AnswerSheetItem as = new AnswerSheetItem();
				as.setAnswer(question.getAnswer());
				as.setQuestion_type_id(question.getQuestionTypeId());
				as.setPoint(question.getQuestionPoint());*/
				QuestionAdapter adapter = new QuestionAdapter(question,strUrl);
				sb.append(adapter.getStringFromXML());
			}
		}
		
		model.addAttribute("htmlStr", sb);
		model.addAttribute("exampaperid", exampaperid);
		model.addAttribute("exampapername", examPaper.getName());
		return "admin/exampaper-preview";
	}
	
	@RequestMapping(value = "admin/paper-delete", method = RequestMethod.POST)
	public @ResponseBody Message deleteExamPaper(@RequestBody Integer examPaperId){
		Message message = new Message();
		try{
			ExamPaper examPaper = examService.getExamPaperById(examPaperId);
			if(examPaper.getStatus() == 1){
				message.setResult("已发布的试卷不允许删除");
				return message;
			}
			examService.deleteExamPaper(examPaperId);
		}catch(Exception e){
			message.setResult(e.getClass().getName());
		}
		return message;
	}
	
	@RequestMapping(value = "admin/paper-offline", method = RequestMethod.POST)
	public @ResponseBody Message offlineExamPaper(@RequestBody Integer examPaperId){
		Message message = new Message();
		ExamPaper examPaper = new ExamPaper();
		examPaper.setId(examPaperId);
		examPaper.setStatus(2);
		try{
			examService.updateExamPaper(examPaper);
		}catch(Exception e){
			message.setResult(e.getClass().getName());
			
		}
		
		return message;
	}

}
最近下载更多
865581316LLL  LV6 2024年6月12日
pokerf  LV5 2024年4月7日
1690356080  LV38 2024年4月5日
shuangfu  LV25 2023年12月2日
tmf852  LV5 2023年11月21日
a867609090  LV8 2023年8月29日
qq2901732871  LV9 2023年5月7日
做你的景天  LV7 2023年3月29日
蹇金金  LV7 2023年3月14日
朱俪的邮件及存储  LV8 2023年3月12日
最近浏览更多
三秋桂子  LV1 2024年12月22日
ma406805131  LV19 2024年12月9日
hx0204  LV2 2024年11月1日
3334004690  LV10 2024年6月24日
林守汐  LV2 2024年6月20日
Maple1nk 2024年6月12日
暂无贡献等级
865581316LLL  LV6 2024年6月12日
happySuperman  LV2 2024年6月4日
Strive_  LV2 2024年5月14日
Boss绝  LV9 2024年4月15日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友