java web学生考试系统,mysql数据库


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.settingsorg.eclipse.core.resources.prefs

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

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

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

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

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

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

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

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

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

    I.A....      5941  2019-03-12 18:43  cd-exampom.xml

    I.A....      1093  2019-03-18 12:00  cd-examsrcmainjavacomqfeducdexamcontrollerChoiceController.java

    I.A....      2109  2019-03-19 11:25  cd-examsrcmainjavacomqfeducdexamcontrollerExamController.java

    I.A....      1217  2019-03-18 16:29  cd-examsrcmainjavacomqfeducdexamcontrollerKnowledgeController.java

    I.A....      3519  2019-03-19 11:25  cd-examsrcmainjavacomqfeducdexamcontrollerPaperController.java

    I.A....      3227  2019-03-18 16:29  cd-examsrcmainjavacomqfeducdexamcontrollerQuestionController.java

    I.A....      2047  2019-03-14 16:25  cd-examsrcmainjavacomqfeducdexamdtoChoiceDto.java

    I.A....      4191  2019-03-18 12:00  cd-examsrcmainjavacomqfeducdexamdtoExamDto.java

    I.A....      2683  2019-03-18 16:29  cd-examsrcmainjavacomqfeducdexamdtoKnowledgeDto.java

    I.A....      3327  2019-03-18 16:29  cd-examsrcmainjavacomqfeducdexamdtoPaperDto.java

    I.A....      5849  2019-03-14 16:25  cd-examsrcmainjavacomqfeducdexamdtoQuestionDto.java

    I.A....      2476  2019-03-19 11:25  cd-examsrcmainjavacomqfeducdexampoAnswerPaper.java

    I.A....      1978  2019-03-13 17:00  cd-examsrcmainjavacomqfeducdexampoAnswerPaperItem.java

    I.A....      1204  2019-03-13 17:00  cd-examsrcmainjavacomqfeducdexampoChoice.java

    I.A....      3023  2019-03-18 12:00  cd-examsrcmainjavacomqfeducdexampoExam.java

    I.A....      2632  2019-03-13 17:00  cd-examsrcmainjavacomqfeducdexampoKnowledge.java

    I.A....      2559  2019-03-18 12:00  cd-examsrcmainjavacomqfeducdexampoPaper.java

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

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)