• 大小: 11.36MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-12
  • 语言: Java
  • 标签: spring  mysql  json  ajax  maven  

资源简介

java web学生考试系统:使用spring框架,mySql数据库,json、ajax。带完整的开发过程文档。

资源截图

代码片段和文件信息

/**
 * 
 */
package com.qfedu.cd.exam.controller;

import javax.annotation.Resource;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.qfedu.cd.exam.service.ChoiceService;

import wo.common.exception.WoResultCode;

/**
 * @author jiaod
 *
 */
@RestController
@RequestMapping(“/exam/choice“)
public class ChoiceController {

private final static Logger LOG = LoggerFactory.getLogger(ChoiceController.class);

@Resource
private ChoiceService choiceService;

/**
 * 修改选项
 * @param id
 * @param description
 * @return
 */
@RequestMapping(“/update“)
WoResultCode update (String id String description) {
choiceService.update(id description);
return WoResultCode.getSuccessCode();
}

/**
 * 删除选项
 * @param id
 * @return
 */
@RequestMapping(“/delete“)
WoResultCode delete (String id) {
choiceService.delete(id);
return WoResultCode.getSuccessCode();
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    I.A....      1738  2019-03-19 15:10  cd-exam\.classpath

    I.A....      1083  2019-03-12 18:43  cd-exam\.project

    I.A....       639  2019-03-12 18:43  cd-exam\.settings\.jsdtscope

    I.A....       191  2019-03-12 18:43  cd-exam\.settings\org.eclipse.core.resources.prefs

    I.A....       478  2019-03-19 09:52  cd-exam\.settings\org.eclipse.jdt.core.prefs

    I.A....        90  2019-03-12 18:43  cd-exam\.settings\org.eclipse.m2e.core.prefs

    I.A....       677  2019-03-12 18:43  cd-exam\.settings\org.eclipse.wst.common.component

    I.A....       252  2019-03-12 18:43  cd-exam\.settings\org.eclipse.wst.common.project.facet.core.xml

    I.A....        49  2019-03-12 18:43  cd-exam\.settings\org.eclipse.wst.jsdt.ui.superType.container

    I.A....         6  2019-03-12 18:43  cd-exam\.settings\org.eclipse.wst.jsdt.ui.superType.name

    I.A....        50  2019-03-12 18:43  cd-exam\.settings\org.eclipse.wst.validation.prefs

    I.A....   5808645  2019-03-19 11:25  cd-exam\doc\cd-exam.docx

    I.A....     81980  2019-03-13 17:00  cd-exam\doc\在线考试系统.xmind

    I.A....      5941  2019-03-12 18:43  cd-exam\pom.xml

    I.A....      1093  2019-03-18 12:00  cd-exam\src\main\java\com\qfedu\cd\exam\controller\ChoiceController.java

    I.A....      2109  2019-03-19 11:25  cd-exam\src\main\java\com\qfedu\cd\exam\controller\ExamController.java

    I.A....      1217  2019-03-18 16:29  cd-exam\src\main\java\com\qfedu\cd\exam\controller\KnowledgeController.java

    I.A....      3519  2019-03-19 11:25  cd-exam\src\main\java\com\qfedu\cd\exam\controller\PaperController.java

    I.A....      3227  2019-03-18 16:29  cd-exam\src\main\java\com\qfedu\cd\exam\controller\QuestionController.java

    I.A....      2047  2019-03-14 16:25  cd-exam\src\main\java\com\qfedu\cd\exam\dto\ChoiceDto.java

    I.A....      4191  2019-03-18 12:00  cd-exam\src\main\java\com\qfedu\cd\exam\dto\ExamDto.java

    I.A....      2683  2019-03-18 16:29  cd-exam\src\main\java\com\qfedu\cd\exam\dto\KnowledgeDto.java

    I.A....      3327  2019-03-18 16:29  cd-exam\src\main\java\com\qfedu\cd\exam\dto\PaperDto.java

    I.A....      5849  2019-03-14 16:25  cd-exam\src\main\java\com\qfedu\cd\exam\dto\QuestionDto.java

    I.A....      2476  2019-03-19 11:25  cd-exam\src\main\java\com\qfedu\cd\exam\po\AnswerPaper.java

    I.A....      1978  2019-03-13 17:00  cd-exam\src\main\java\com\qfedu\cd\exam\po\AnswerPaperItem.java

    I.A....      1204  2019-03-13 17:00  cd-exam\src\main\java\com\qfedu\cd\exam\po\Choice.java

    I.A....      3023  2019-03-18 12:00  cd-exam\src\main\java\com\qfedu\cd\exam\po\Exam.java

    I.A....      2632  2019-03-13 17:00  cd-exam\src\main\java\com\qfedu\cd\exam\po\Knowledge.java

    I.A....      2559  2019-03-18 12:00  cd-exam\src\main\java\com\qfedu\cd\exam\po\Paper.java

............此处省略1082个文件信息

评论

共有 条评论