我是靠谱客的博主 默默睫毛膏,最近开发中收集的这篇文章主要介绍SpringBoot+Vue实现在线考试系统,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.SpringBoot+Vue实现在线考试系统
个人网站:http://xiaocaoshare.com
1.需求分析
用户角色:
管理员:考试管理、题库管理、成绩查询、学生管理、教师管理
教师:考试管理、题库管理、成绩查询、学生管理
学生:登录、我的试卷、我的练习、我的分数、给我留言、开始答题
2.技术架构
springboot+mybatis+mysql+vue
开发工具:
IDEA或eclipse
3.部分功能代码展示
@RestController
public class StudentController {

@Autowired
private StudentServiceImpl studentService;

@GetMapping("/students/{page}/{size}")
public ApiResult findAll(@PathVariable Integer page, @PathVariable Integer size) {
    Page<Student> studentPage = new Page<>(page,size);
    IPage<Student> res = studentService.findAll(studentPage);
    return  ApiResultHandler.buildApiResult(200,"分页查询所有学生",res);
}

@GetMapping("/student/{studentId}")
public ApiResult findById(@PathVariable("studentId") Integer studentId) {
    Student res = studentService.findById(studentId);
    if (res != null) {
    return ApiResultHandler.buildApiResult(200,"请求成功",res);
    } else {
        return ApiResultHandler.buildApiResult(404,"查询的用户不存在",null);
    }
}

@DeleteMapping("/student/{studentId}")
public ApiResult deleteById(@PathVariable("studentId") Integer studentId) {
    return ApiResultHandler.buildApiResult(200,"删除成功",studentService.deleteById(studentId));
}

@PutMapping("/studentPWD")
public ApiResult updatePwd(@RequestBody Student student) {
    studentService.updatePwd(student);
    return ApiResultHandler.buildApiResult(200,"密码更新成功",null);
}
@PutMapping("/student")
public ApiResult update(@RequestBody Student student) {
    int res = studentService.update(student);
    if (res != 0) {
        return ApiResultHandler.buildApiResult(200,"更新成功",res);
    }
    return ApiResultHandler.buildApiResult(400,"更新失败",res);
}

@PostMapping("/student")
public ApiResult add(@RequestBody Student student) {
    int res = studentService.add(student);
    if (res == 1) {
        return ApiResultHandler.buildApiResult(200,"添加成功",null);
    }else {
        return ApiResultHandler.buildApiResult(400,"添加失败",null);
    }
}

}

4.系统演示视频
链接:https://pan.baidu.com/s/1D2n00LeANrsNZaM9Rwc2Eg
提取码:m3td

最后

以上就是默默睫毛膏为你收集整理的SpringBoot+Vue实现在线考试系统的全部内容,希望文章能够帮你解决SpringBoot+Vue实现在线考试系统所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部