目录
大家好呀,我是一个混迹在java圈的码农。今天要和大家分享的是 一款基于SpringBoot+Vue的课程答疑管理系统,项目源码请点击文章末尾联系我哦~目前有各类成品 毕设 JavaWeb SSM SpringBoot等等项目框架,源码丰富,欢迎咨询。
一、项目介绍
随着信息互联网信息的飞速发展,无纸化作业变成了一种趋势,针对这个问题开发一个专门适应师生交流形式的网站。本文介绍了课程答疑系统的开发全过程。通过分析企业对于课程答疑系统的需求,创建了一个计算机管理课程答疑系统的方案。文章介绍了课程答疑系统的系统分析部分,包括可行性分析等,系统设计部分主要介绍了系统功能设计和数据库设计。
本课程答疑系统有管理员,老师,学生三个角色。管理员功能有,个人中心,学生管理,老师过来,科目类型管理,学生问题管理,老师回答管理,老师信息管理,关注列表管理,交流区,系统管理。学生功能有,个人中心,科目类型管理,学生问题管理,老师回答管理,老师信息管理,关注列表管理,我的收藏管理。老师功能有,个人中心,老师回答管理,老师信息管理,关注列表管理,我的收藏管理。因而具有一定的实用性。
本站是一个B/S模式系统,采用Spring Boot框架作为后台开发技术,前端框架是VUE,MYSQL数据库设计开发,充分保证系统的稳定性。系统具有界面清晰、操作简单,功能齐全的特点,使得课程答疑系统管理工作系统化、规范化。
关键词:课程答疑系统;Spring Boot框架;MYSQL数据库;VUE框架
二、开发环境
开发系统:Windows
JDK版本:Java JDK1.8(推荐)
开发工具:IDEA/MyEclipse(推荐IDEA)
数据库版本: mysql8.0(推荐)
数据库可视化工具: navicat
服务器:SpringBoot自带 apache tomcat
框架:springboot,vue
三、功能介绍
课程答疑系统的系统管理员可以管理学生,可以对学生信息、科目类型信息添加修改删除以及查询操作。老师可以对老师回答进行查看以及查询操作。老师可以对报我的收藏信息进行添加修改删除操作,还可以对业务信息进行查询。
学生登录后在首页查看老师回答信息、在交流区发布信息。
四、核心代码
/**
* 关注列表
* 后端接口
* @author
* @email
* @date 2021-04-15 14:47:01
*/
@RestController
@RequestMapping("/guanzhuliebiao")
public class GuanzhuliebiaoController {
@Autowired
private GuanzhuliebiaoService guanzhuliebiaoService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,GuanzhuliebiaoEntity guanzhuliebiao,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("laoshi")) {
guanzhuliebiao.setLaoshizhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("xuesheng")) {
guanzhuliebiao.setXueshengzhanghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<GuanzhuliebiaoEntity> ew = new EntityWrapper<GuanzhuliebiaoEntity>();
PageUtils page = guanzhuliebiaoService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, guanzhuliebiao), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,GuanzhuliebiaoEntity guanzhuliebiao, HttpServletRequest request){
EntityWrapper<GuanzhuliebiaoEntity> ew = new EntityWrapper<GuanzhuliebiaoEntity>();
PageUtils page = guanzhuliebiaoService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, guanzhuliebiao), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( GuanzhuliebiaoEntity guanzhuliebiao){
EntityWrapper<GuanzhuliebiaoEntity> ew = new EntityWrapper<GuanzhuliebiaoEntity>();
ew.allEq(MPUtil.allEQMapPre( guanzhuliebiao, "guanzhuliebiao"));
return R.ok().put("data", guanzhuliebiaoService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(GuanzhuliebiaoEntity guanzhuliebiao){
EntityWrapper< GuanzhuliebiaoEntity> ew = new EntityWrapper< GuanzhuliebiaoEntity>();
ew.allEq(MPUtil.allEQMapPre( guanzhuliebiao, "guanzhuliebiao"));
GuanzhuliebiaoView guanzhuliebiaoView = guanzhuliebiaoService.selectView(ew);
return R.ok("查询关注列表成功").put("data", guanzhuliebiaoView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
GuanzhuliebiaoEntity guanzhuliebiao = guanzhuliebiaoService.selectById(id);
return R.ok().put("data", guanzhuliebiao);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
GuanzhuliebiaoEntity guanzhuliebiao = guanzhuliebiaoService.selectById(id);
return R.ok().put("data", guanzhuliebiao);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody GuanzhuliebiaoEntity guanzhuliebiao, HttpServletRequest request){
guanzhuliebiao.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(guanzhuliebiao);
guanzhuliebiaoService.insert(guanzhuliebiao);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody GuanzhuliebiaoEntity guanzhuliebiao, HttpServletRequest request){
guanzhuliebiao.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(guanzhuliebiao);
guanzhuliebiaoService.insert(guanzhuliebiao);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody GuanzhuliebiaoEntity guanzhuliebiao, HttpServletRequest request){
//ValidatorUtils.validateEntity(guanzhuliebiao);
guanzhuliebiaoService.updateById(guanzhuliebiao);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
guanzhuliebiaoService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 提醒接口
*/
@RequestMapping("/remind/{columnName}/{type}")
public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
@PathVariable("type") String type,@RequestParam Map<String, Object> map) {
map.put("column", columnName);
map.put("type", type);
if(type.equals("2")) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
Date remindStartDate = null;
Date remindEndDate = null;
if(map.get("remindstart")!=null) {
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindStart);
remindStartDate = c.getTime();
map.put("remindstart", sdf.format(remindStartDate));
}
if(map.get("remindend")!=null) {
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindEnd);
remindEndDate = c.getTime();
map.put("remindend", sdf.format(remindEndDate));
}
}
Wrapper<GuanzhuliebiaoEntity> wrapper = new EntityWrapper<GuanzhuliebiaoEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("laoshi")) {
wrapper.eq("laoshizhanghao", (String)request.getSession().getAttribute("username"));
}
if(tableName.equals("xuesheng")) {
wrapper.eq("xueshengzhanghao", (String)request.getSession().getAttribute("username"));
}
int count = guanzhuliebiaoService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
五、效果图
六、源码获取:
同系统在主页搜索资源可下载~