项目介绍
采用java技术构建的一个管理系统。整个开发过程首先对系统进行需求分析,得出系统的主要功能。接着对系统进行总体设计和详细设计。总体设计主要包括系统功能设计、系统总体结构设计、系统数据结构设计和系统安全设计等;详细设计主要包括系统数据库访问的实现,主要功能模块的具体实现,模块实现关键代码等。最后对系统进行功能测试,并对测试结果进行分析总结。 包括程序毕设程序源代码一份,数据库一份,完美运行。
开发环境
编程语言:Java
数据库 :Mysql
系统架构:B/S
后端框架:SSM
编译工具:idea或者eclipse,jdk1.8,maven
支持定做:java/php/python/android/小程序ue/爬虫/c#/asp.net
系统实现
核心代码
package com.controller;
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.StringUtil;
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.PeixunEntity;
import com.service.PeixunService;
import com.entity.view.PeixunView;
import com.service.YonghuService;
import com.entity.YonghuEntity;
import com.utils.PageUtils;
import com.utils.R;
/**
* 培训
* 后端接口
* @author
* @email
* @date
*/
@RestController
@Controller
@RequestMapping("/peixun")
public class PeixunController {
private static final Logger logger = LoggerFactory.getLogger(PeixunController.class);
@Autowired
private PeixunService peixunService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;
//级联表service
@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(StringUtil.isNotEmpty(role) && "用户".equals(role)){
params.put("yonghuId",request.getSession().getAttribute("userId"));
}
params.put("orderBy","id");
PageUtils page = peixunService.queryPage(params);
//字典表数据转换
List<PeixunView> list =(List<PeixunView>)page.getList();
for(PeixunView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c);
}
return R.ok().put("data", page);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
PeixunEntity peixun = peixunService.selectById(id);
if(peixun !=null){
//entity转view
PeixunView view = new PeixunView();
BeanUtils.copyProperties( peixun , view );//把实体数据重构到view中
//级联表
YonghuEntity yonghu = yonghuService.selectById(peixun.getYonghuId());
if(yonghu != null){
BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setYonghuId(yonghu.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("ve")
public R save(@RequestBody PeixunEntity peixun, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,peixun:{}",this.getClass().getName(),peixun.toString());
Wrapper<PeixunEntity> queryWrapper = new EntityWrapper<PeixunEntity>()
.eq("yonghu_id", peixun.getYonghuId())
.eq("peixun_name", peixun.getPeixunName())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
PeixunEntity peixunEntity = peixunService.selectOne(queryWrapper);
if(peixunEntity==null){
peixun.setCreateTime(new Date());
// String role = String.valueOf(request.getSession().getAttribute("role"));
// if("".equals(role)){
// peixun.set
// }
peixunService.insert(peixun);
return R.ok();
}else {
return R.error(511,"该用户已经在本次培训中存在");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody PeixunEntity peixun, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,peixun:{}",this.getClass().getName(),peixun.toString());
//根据字段查询是否有相同数据
Wrapper<PeixunEntity> queryWrapper = new EntityWrapper<PeixunEntity>()
.notIn("id",peixun.getId())
.andNew()
.eq("yonghu_id", peixun.getYonghuId())
.eq("peixun_name", peixun.getPeixunName())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
PeixunEntity peixunEntity = peixunService.selectOne(queryWrapper);
if(peixunEntity==null){
// String role = String.valueOf(request.getSession().getAttribute("role"));
// if("".equals(role)){
// peixun.set
// }
peixunService.updateById(peixun);//根据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());
peixunService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
}
论文参考
目录
第一章 绪论 5
1.1 研究背景 5
1.2 系统研究现状 5
1.3 系统实现的功能 6
1.4 系统实现的特点 6
1.5 本文的组织结构 6
第二章开发技术与环境配置 7
2.1 Java语言简介 7
2.2 Vue技术 8
2.3 MySQL环境配置 8
2.4 IDEA环境配置 9
2.5 Mysql数据库介绍 9
2.6 B/S架构 9
第三章系统分析与设计 11
3.1 可行性分析 11
3.1.1 技术可行性 11
3.1.2 操作可行性 11
3.1.3经济可行性 11
3.2 需求分析 12
3.3 总体设计 12
3.4 数据库设计与实现 13
3.4.1 数据库概念结构设计 13
3.4.2 数据库具体设计 14
第四章 系统功能的具体实现 22
4.1 系统功能模块 22
4.2 管理员功能模块 25
第五章 系统测试 29
总结 30
参考文献 31
致谢 32