基于SpringBoot实现智能学习辅助系统

发布时间:2024-12-17 18:17

对于新手司机,智能驾驶辅助系统可以提供基础的辅助驾驶功能。 #生活技巧# #驾驶技巧# #智能驾驶技术#

作者简介:Java领域优质创作者、CSDN博客专家 、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO特邀作者、多年架构师设计经验、多年校企合作经验,被多个学校常年聘为校外企业导师,指导学生毕业设计并参与学生毕业答辩指导,有较为丰富的相关经验。期待与各位高校教师、企业讲师以及同行交流合作

主要内容:Java项目、Python项目、前端项目、PHP、ASP.NET、人工智能与大数据、单片机开发、物联网设计与开发设计、简历模板、学习资料、面试题库、技术互助、就业指导等

业务范围:免费功能设计、开题报告、任务书、中期检查PPT、系统功能实现、代码编写、论文编写和辅导、论文降重、长期答辩答疑辅导、腾讯会议一对一专业讲解辅导答辩、模拟答辩演练、和理解代码逻辑思路等

收藏点赞不迷路  关注作者有好处

文末获取源码 

项目编号:BS-PT-147

一,环境介绍

语言环境:Java:  jdk1.8

数据库:Mysql: mysql5.7

应用服务器:Tomcat:  tomcat8.5.31

开发工具:IDEA或eclipse

开发技术:SpringBoot+Vue

二,项目简介

本课题开发实现一个基于SpringBoot的智能学习辅助系统,该系统主要为在校学生提供学习辅助功能。信息化技术的普及,以及其在各学校中的应用,己经让我们越来越认识到使用新科技技术来帮助我们的重要性,它体现在生活和学习的各个方面。本次开发设计的智能学习辅助系统,主要利用线上平台来为学生提供在线学习、课件浏览和下载的相关功能,以帮助学生在课后进行及时的辅助学习。系统在开发实现上主要使用Java技术平台实现,基于SpringBoot+Vue开发前后端分离的助学平台系统,系统的整个业务数据采用MySQL进行数据存储,开发工具使用IDEA来构建工程代码,使用Maven进行依赖的相关管理。功能实现上主要完成线课堂视频观看,课程资料下载,使用课程信息浏览查看,在线问答和个人学习博客分享等模块。智通常习辅助系统经过后期的测试调试,完整的实现了预期的功能性目标和非功能性目上标,可以部署上线运行。

基于SpringBoot的智能学习辅助系统经过分析得整个系统的用例相关人员主要有三类,分别时在线学习和获取资料的学生用户,为学生提供辅助的教师用户,对整个系统的数据进行管理的管理员用户。

1、智能学习辅助系统中的学生用户的用例功能,学生用户完成注册登录后,可在线查看公告、课程及章节信息,进行课程学习,浏览新闻与博客文章。此外,可在个人中心管理个人与收藏信息,于后台发布博客,管理提问与老师的解答。具体如下图3-1所示。

图3-1 学生用例功能

2、基于SpringBoot的智能学习辅助系统的教师用户,登录系统后主要可以负责对课程进行一系列管理操作,包括课程、章节、提问、解答和课程资源的管理。具体功能用例如图3-2所示。

图3-2 教师用户用例图

3、基于SpringBoot的智能学习辅助系统的管理员用户的功能,管理员登录智能学习辅助系统后,可执行多项管理功能,包括用户、管理员、课程、课程章节、课程资源、博客文章、新闻资讯及轮播图的管理。具体如下图3-3所示。

图3-3 管理员用户用例图

三,系统展示

后台管理

四,核心代码展示

package com.controller;

import java.text.SimpleDateFormat;

import java.util.ArrayList;

import java.util.Arrays;

import java.util.Calendar;

import java.util.Map;

import java.util.HashMap;

import java.util.Iterator;

import java.util.Date;

import java.util.List;

import javax.servlet.http.HttpServletRequest;

import com.utils.ValidatorUtils;

import org.apache.commons.lang3.StringUtils;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.transaction.annotation.Transactional;

import org.springframework.format.annotation.DateTimeFormat;

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.RequestParam;

import org.springframework.web.bind.annotation.RestController;

import com.baomidou.mybatisplus.mapper.EntityWrapper;

import com.baomidou.mybatisplus.mapper.Wrapper;

import com.annotation.IgnoreAuth;

import com.entity.JiaoshiEntity;

import com.entity.view.JiaoshiView;

import com.service.JiaoshiService;

import com.service.TokenService;

import com.utils.PageUtils;

import com.utils.R;

import com.utils.MD5Util;

import com.utils.MPUtil;

import com.utils.CommonUtil;

import java.io.IOException;

@RestController

@RequestMapping("/jiaoshi")

public class JiaoshiController {

@Autowired

private JiaoshiService jiaoshiService;

@Autowired

private TokenService tokenService;

@IgnoreAuth

@RequestMapping(value = "/login")

public R login(String username, String password, String captcha, HttpServletRequest request) {

JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", username));

if(user==null || !user.getMima().equals(password)) {

return R.error("账号或密码不正确");

}

String token = tokenService.generateToken(user.getId(), username,"jiaoshi", "教师" );

return R.ok().put("token", token);

}

@IgnoreAuth

@RequestMapping("/register")

public R register(@RequestBody JiaoshiEntity jiaoshi){

JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", jiaoshi.getJiaoshigonghao()));

if(user!=null) {

return R.error("注册用户已存在");

}

Long uId = new Date().getTime();

jiaoshi.setId(uId);

jiaoshiService.insert(jiaoshi);

return R.ok();

}

@RequestMapping("/logout")

public R logout(HttpServletRequest request) {

request.getSession().invalidate();

return R.ok("退出成功");

}

@RequestMapping("/session")

public R getCurrUser(HttpServletRequest request){

Long id = (Long)request.getSession().getAttribute("userId");

JiaoshiEntity user = jiaoshiService.selectById(id);

return R.ok().put("data", user);

}

@IgnoreAuth

@RequestMapping(value = "/resetPass")

public R resetPass(String username, HttpServletRequest request){

JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", username));

if(user==null) {

return R.error("账号不存在");

}

user.setMima("123456");

jiaoshiService.updateById(user);

return R.ok("密码已重置为:123456");

}

@RequestMapping("/page")

public R page(@RequestParam Map<String, Object> params,JiaoshiEntity jiaoshi,

HttpServletRequest request){

EntityWrapper<JiaoshiEntity> ew = new EntityWrapper<JiaoshiEntity>();

PageUtils page = jiaoshiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiaoshi), params), params));

return R.ok().put("data", page);

}

@IgnoreAuth

@RequestMapping("/list")

public R list(@RequestParam Map<String, Object> params,JiaoshiEntity jiaoshi,

HttpServletRequest request){

EntityWrapper<JiaoshiEntity> ew = new EntityWrapper<JiaoshiEntity>();

PageUtils page = jiaoshiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiaoshi), params), params));

return R.ok().put("data", page);

}

@RequestMapping("/lists")

public R list( JiaoshiEntity jiaoshi){

EntityWrapper<JiaoshiEntity> ew = new EntityWrapper<JiaoshiEntity>();

ew.allEq(MPUtil.allEQMapPre( jiaoshi, "jiaoshi"));

return R.ok().put("data", jiaoshiService.selectListView(ew));

}

@RequestMapping("/query")

public R query(JiaoshiEntity jiaoshi){

EntityWrapper< JiaoshiEntity> ew = new EntityWrapper< JiaoshiEntity>();

ew.allEq(MPUtil.allEQMapPre( jiaoshi, "jiaoshi"));

JiaoshiView jiaoshiView = jiaoshiService.selectView(ew);

return R.ok("查询教师成功").put("data", jiaoshiView);

}

@RequestMapping("/info/{id}")

public R info(@PathVariable("id") Long id){

JiaoshiEntity jiaoshi = jiaoshiService.selectById(id);

return R.ok().put("data", jiaoshi);

}

@IgnoreAuth

@RequestMapping("/detail/{id}")

public R detail(@PathVariable("id") Long id){

JiaoshiEntity jiaoshi = jiaoshiService.selectById(id);

return R.ok().put("data", jiaoshi);

}

@RequestMapping("/save")

public R save(@RequestBody JiaoshiEntity jiaoshi, HttpServletRequest request){

jiaoshi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());

JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", jiaoshi.getJiaoshigonghao()));

if(user!=null) {

return R.error("用户已存在");

}

jiaoshi.setId(new Date().getTime());

jiaoshiService.insert(jiaoshi);

return R.ok();

}

@RequestMapping("/add")

public R add(@RequestBody JiaoshiEntity jiaoshi, HttpServletRequest request){

jiaoshi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());

JiaoshiEntity user = jiaoshiService.selectOne(new EntityWrapper<JiaoshiEntity>().eq("jiaoshigonghao", jiaoshi.getJiaoshigonghao()));

if(user!=null) {

return R.error("用户已存在");

}

jiaoshi.setId(new Date().getTime());

jiaoshiService.insert(jiaoshi);

return R.ok();

}

@RequestMapping("/update")

@Transactional

public R update(@RequestBody JiaoshiEntity jiaoshi, HttpServletRequest request){

jiaoshiService.updateById(jiaoshi);

return R.ok();

}

@RequestMapping("/delete")

public R delete(@RequestBody Long[] ids){

jiaoshiService.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<JiaoshiEntity> wrapper = new EntityWrapper<JiaoshiEntity>();

if(map.get("remindstart")!=null) {

wrapper.ge(columnName, map.get("remindstart"));

}

if(map.get("remindend")!=null) {

wrapper.le(columnName, map.get("remindend"));

}

int count = jiaoshiService.selectCount(wrapper);

return R.ok().put("count", count);

}

}

五,相关作品展示

基于Java开发、Python开发、PHP开发、C#开发等相关语言开发的实战项目

基于Nodejs、Vue等前端技术开发的前端实战项目

基于微信小程序和安卓APP应用开发的相关作品

基于51单片机等嵌入式物联网开发应用

基于各类算法实现的AI智能应用

基于大数据实现的各类数据管理和推荐系统

 

 

网址:基于SpringBoot实现智能学习辅助系统 https://www.yuejiaxmz.com/news/view/501157

相关内容

基于SpringBoot的线上学习资源智能推荐系统
基于SpringBoot+Vue实现大健康养老公寓管理系统
基于SpringBoot和VUE技术的智慧生活商城系统设计与实现
【开题报告】基于SpringBoot的老年养生系统的设计与实现
案例198基于Springboot的智能家居系统
Springboot基于SpringBoot的宠物门诊系统6f8jy
【附源码】springboot 自驾游攻略查询系统设计与实现
【附源码】springboot 轻院网购商城管理系统设计与实现
基于springboot的美食推荐系统的设计与实现
基于springboot旧物回收管理系统设计与实现

随便看看