项目介绍
网络化时代给我们提供了许多便利的同时也对我们提出了新的要求,这是一个知识爆炸的社会,信息量的增多,信息流通速度的加快,让我们越发觉得时间压力的增大,传统的纸张登记信息的形式已经不能适应这个时代的日新月异的变化了,生活到处都充满新科技气息,信息技术让我们的时代变得越发忙碌,越讲究高效率进行任务办公处理。以前不实用的相关记载也将面临退世,取代它的将会是新技术研发出来的少儿编程在线培训系统。这个系统能让我们生活的相关变得更便利,能够发布新闻公告信息。信息数据管理与操作时间缩短,正确率高,稳定性强。系统使用了SSM框架进行系统开发操作,系统数据保存在Mysql数据库里面。少儿编程在线培训系统的出现会真正惠及大用户。
开发环境
编程语言:Java
数据库 :Mysql
系统架构:B/S
后端框架:SSM
编译工具:idea或者eclipse,jdk1.8,maven
支持定做:java/php/python/android/小程序/vue/爬虫/c#/asp.net
系统实现
如图5.2显示的就是教师信息管理页面,此页面提供给管理员的功能有:查看已发布的教师信息数据,修改教师信息,教师信息作废,即可删除。
图5.2 教师信息管理页面
5.3课程信息管理
如图5.3显示的就是课程信息管理页面,此页面提供给管理员的功能有:根据课程信息进行条件查询,还可以对课程信息进行新增、修改、查询操作等等。
图5.3 课程信息管理页面
5.1公告信息管理
如图5.4显示的就是公告信息管理页面,此页面提供给管理员的功能有:根据公告信息进行新增、修改、查询操作等等。
图5.4 公告信息管理页面
核心代码
package com.controller;
import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;
import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;
/**
* 报名记录
* 后端接口
* @author
* @email
*/
@RestController
@Controller
@RequestMapping("/kechengbaoming")
public class KechengbaomingController {
private static final Logger logger = LoggerFactory.getLogger(KechengbaomingController.class);
@Autowired
private KechengbaomingService kechengbaomingService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;
//级联表service
@Autowired
private KechengService kechengService;
@Autowired
private YonghuService yonghuService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永不会进入");
else if("用户".equals(role))
params.put("yonghuId",request.getSession().getAttribute("userId"));
if(params.get("orderBy")==null || params.get("orderBy")==""){
params.put("orderBy","id");
}
PageUtils page = kechengbaomingService.queryPage(params);
//字典表数据转换
List<KechengbaomingView> list =(List<KechengbaomingView>)page.getList();
for(KechengbaomingView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c, request);
}
return R.ok().put("data", page);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id, HttpServletRequest request){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
KechengbaomingEntity kechengbaoming = kechengbaomingService.selectById(id);
if(kechengbaoming !=null){
//entity转view
KechengbaomingView view = new KechengbaomingView();
BeanUtils.copyProperties( kechengbaoming , view );//把实体数据重构到view中
//级联表
KechengEntity kecheng = kechengService.selectById(kechengbaoming.getKechengId());
if(kecheng != null){
BeanUtils.copyProperties( kecheng , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setKechengId(kecheng.getId());
}
//级联表
YonghuEntity yonghu = yonghuService.selectById(kechengbaoming.getYonghuId());
if(yonghu != null){
BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setYonghuId(yonghu.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody KechengbaomingEntity kechengbaoming, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,kechengbaoming:{}",this.getClass().getName(),kechengbaoming.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永远不会进入");
else if("用户".equals(role))
kechengbaoming.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
Wrapper<KechengbaomingEntity> queryWrapper = new EntityWrapper<KechengbaomingEntity>()
.eq("kecheng_id", kechengbaoming.getKechengId())
.eq("yonghu_id", kechengbaoming.getYonghuId())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
KechengbaomingEntity kechengbaomingEntity = kechengbaomingService.selectOne(queryWrapper);
if(kechengbaomingEntity==null){
kechengbaoming.setCreateTime(new Date());
kechengbaomingService.insert(kechengbaoming);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody KechengbaomingEntity kechengbaoming, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,kechengbaoming:{}",this.getClass().getName(),kechengbaoming.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
// if(false)
// return R.error(511,"永远不会进入");
// else if("用户".equals(role))
// kechengbaoming.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
//根据字段查询是否有相同数据
Wrapper<KechengbaomingEntity> queryWrapper = new EntityWrapper<KechengbaomingEntity>()
.notIn("id",kechengbaoming.getId())
.andNew()
.eq("kecheng_id", kechengbaoming.getKechengId())
.eq("yonghu_id", kechengbaoming.getYonghuId())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
KechengbaomingEntity kechengbaomingEntity = kechengbaomingService.selectOne(queryWrapper);
if(kechengbaomingEntity==null){
kechengbaomingService.updateById(kechengbaoming);//根据id更新
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Integer[] ids){
logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
kechengbaomingService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 批量上传
*/
@RequestMapping("/batchInsert")
public R save( String fileName, HttpServletRequest request){
logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
List<KechengbaomingEntity> kechengbaomingList = new ArrayList<>();//上传的东西
Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段
Date date = new Date();
int lastIndexOf = fileName.lastIndexOf(".");
if(lastIndexOf == -1){
return R.error(511,"该文件没有后缀");
}else{
String suffix = fileName.substring(lastIndexOf);
if(!".xls".equals(suffix)){
return R.error(511,"只支持后缀为xls的excel文件");
}else{
URL resource = this.getClass().getClassLoader().getResource("../../upload/" + fileName);//获取文件路径
File file = new File(resource.getFile());
if(!file.exists()){
return R.error(511,"找不到上传文件,请联系管理员");
}else{
List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
dataList.remove(0);//删除第一行,因为第一行是提示
for(List<String> data:dataList){
//循环
KechengbaomingEntity kechengbaomingEntity = new KechengbaomingEntity();
// kechengbaomingEntity.setKechengId(Integer.valueOf(data.get(0))); //课程 要改的
// kechengbaomingEntity.setYonghuId(Integer.valueOf(data.get(0))); //用户 要改的
// kechengbaomingEntity.setCreateTime(date);//时间
kechengbaomingList.add(kechengbaomingEntity);
//把要查询是否重复的字段放入map中
}
//查询是否重复
kechengbaomingService.insertBatch(kechengbaomingList);
return R.ok();
}
}
}
}catch (Exception e){
e.printStackTrace();
return R.error(511,"批量插入数据异常,请联系管理员");
}
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
// 没有指定排序字段就默认id倒序
if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){
params.put("orderBy","id");
}
PageUtils page = kechengbaomingService.queryPage(params);
//字典表数据转换
List<KechengbaomingView> list =(List<KechengbaomingView>)page.getList();
for(KechengbaomingView c:list)
dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段
return R.ok().put("data", page);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id, HttpServletRequest request){
logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
KechengbaomingEntity kechengbaoming = kechengbaomingService.selectById(id);
if(kechengbaoming !=null){
//entity转view
KechengbaomingView view = new KechengbaomingView();
BeanUtils.copyProperties( kechengbaoming , view );//把实体数据重构到view中
//级联表
KechengEntity kecheng = kechengService.selectById(kechengbaoming.getKechengId());
if(kecheng != null){
BeanUtils.copyProperties( kecheng , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setKechengId(kecheng.getId());
}
//级联表
YonghuEntity yonghu = yonghuService.selectById(kechengbaoming.getYonghuId());
if(yonghu != null){
BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setYonghuId(yonghu.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody KechengbaomingEntity kechengbaoming, HttpServletRequest request){
logger.debug("add方法:,,Controller:{},,kechengbaoming:{}",this.getClass().getName(),kechengbaoming.toString());
KechengEntity kechengEntity = kechengService.selectById(kechengbaoming.getKechengId());
YonghuEntity yonghuEntity = yonghuService.selectById(kechengbaoming.getYonghuId());
if(yonghuEntity.getNewMoney() < kechengEntity.getKechengNumber()){
return R.error("报名费用不足,请充值!");
}
yonghuEntity.setNewMoney(yonghuEntity.getNewMoney() - kechengEntity.getKechengNumber());
yonghuService.updateById(yonghuEntity);
kechengbaoming.setCreateTime(new Date());
kechengbaomingService.insert(kechengbaoming);
return R.ok();
}
}
论文参考
目 录
目 录 I
1 课题背景及研究内容 4
1.1 课题背景 4
1.2 开发目的和意义 4
2 相关技术和应用 4
2.1 VUE技术 4
2.2 Mysql数据库简介 5
2.3 SSM框架简介 6
2.4 Eclipse简介 6
2.5 B/S系统架构 6
3 系统分析 8
3.1可行性分析 8
3.1.1技术可行性 8
3.1.2经济可行性 8
3.1.3操作可行性 8
3.1.4 时间可行性 8
3.2 系统性能分析 8
3.3系统运行环境 8
3.4 系统流程分析 8
3.4.1用户登录流程 8
3.4.2信息修改流程 9
3.4.3信息添加流程 10
3.4.4信息查询流程 10
3.5 功能需求 11
4 系统设计 11
4.1系统结构设计 11
4.2 系统功能模块设计 11
4.3 数据库设计 12
5 系统实现 14
5.3课程信息管理 15
5.1公告信息管理 15
结 论 16
参考文献 18
致 谢 19