基于java,SpringBoot和Vue志愿者服务管理系统设计
摘要
本文旨在设计和实现一个基于Java、SpringBoot和Vue的志愿者服务管理系统,以提升志愿服务活动的效率和管理效果。系统采用前后端分离架构,前端使用Vue.js框架,后端采用SpringBoot框架,通过RESTful API进行数据交互。数据库选择MySQL,并利用MyBatis Plus简化数据持久化操作。主要功能包括用户注册与登录、活动报名、服务记录管理、个人信息管理等模块。系统设计注重安全性,采用HTTPS协议和加密存储用户密码,同时通过Redis进行缓存处理,提高系统响应速度。测试方面,进行了详细的单元测试和集成测试,确保系统功能的稳定性和可靠性。最终,该系统提供了一个高效、便捷的平台,为志愿者提供更好的管理和服务体验。
功能介绍
管理员、普通用户两种用户角色;
管理员:个人中心、管理员管理、基础数据管理、公告信息管理、广场论坛管理、志愿活动管理、活动报名管理、捐赠信息管理、志愿资源管理、用户管理、轮播图管理等;
普通用户:个人中心、首页、广场论坛、志愿活动、公告通知、志愿资源等。
技术介绍
后端:Java语言的Spring Boot框架、MySQL数据库、Maven依赖管理等;
前端:Vue、element-ui、axios等。
部分代码展示
/**
* 后端列表
*/
@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"));
params.put("huodongDeleteStart",1);params.put("huodongDeleteEnd",1);
CommonUtil.checkMap(params);
PageUtils page = huodongService.queryPage(params);
//字典表数据转换
List<HuodongView> list =(List<HuodongView>)page.getList();
for(HuodongView 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);
HuodongEntity huodong = huodongService.selectById(id);
if(huodong !=null){
//entity转view
HuodongView view = new HuodongView();
BeanUtils.copyProperties( huodong , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody HuodongEntity huodong, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,huodong:{}",this.getClass().getName(),huodong.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永远不会进入");
Wrapper<HuodongEntity> queryWrapper = new EntityWrapper<HuodongEntity>()
.eq("huodong_name", huodong.getHuodongName())
.eq("huodong_address", huodong.getHuodongAddress())
.eq("huodong_shijian", huodong.getHuodongShijian())
.eq("zan_number", huodong.getZanNumber())
.eq("cai_number", huodong.getCaiNumber())
.eq("huodong_types", huodong.getHuodongTypes())
.eq("huodong_kucun_number", huodong.getHuodongKucunNumber())
.eq("status_types", huodong.getStatusTypes())
.eq("huodong_delete", 1)
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
HuodongEntity huodongEntity = huodongService.selectOne(queryWrapper);
if(huodongEntity==null){
huodong.setZanNumber(1);
huodong.setCaiNumber(1);
huodong.setHuodongClicknum(1);
huodong.setHuodongDelete(1);
huodong.setInsertTime(new Date());
huodong.setCreateTime(new Date());
huodongService.insert(huodong);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody HuodongEntity huodong, HttpServletRequest request) throws NoSuchFieldException, ClassNotFoundException, IllegalAccessException, InstantiationException {
logger.debug("update方法:,,Controller:{},,huodong:{}",this.getClass().getName(),huodong.toString());
HuodongEntity oldHuodongEntity = huodongService.selectById(huodong.getId());//查询原先数据
String role = String.valueOf(request.getSession().getAttribute("role"));
if("".equals(huodong.getHuodongPhoto()) || "null".equals(huodong.getHuodongPhoto())){
huodong.setHuodongPhoto(null);
}
if("".equals(huodong.getHuodongContent()) || "null".equals(huodong.getHuodongContent())){
huodong.setHuodongContent(null);
}
huodongService.updateById(huodong);//根据id更新
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");
//.eq("time", new SimpleDateFormat("yyyy-MM-dd").format(new Date()))
try {
List<HuodongEntity> huodongList = 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("static/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){
//循环
HuodongEntity huodongEntity = new HuodongEntity();
//把要查询是否重复的字段放入map中
//活动编号
if(seachFields.containsKey("huodongUuidNumber")){
List<String> huodongUuidNumber = seachFields.get("huodongUuidNumber");
huodongUuidNumber.add(data.get(0));//要改的
}else{
List<String> huodongUuidNumber = new ArrayList<>();
huodongUuidNumber.add(data.get(0));//要改的
seachFields.put("huodongUuidNumber",huodongUuidNumber);
}
}
//查询是否重复
//活动编号
List<HuodongEntity> huodongEntities_huodongUuidNumber = huodongService.selectList(new EntityWrapper<HuodongEntity>().in("huodong_uuid_number", seachFields.get("huodongUuidNumber")).eq("huodong_delete", 1));
if(huodongEntities_huodongUuidNumber.size() >0 ){
ArrayList<String> repeatFields = new ArrayList<>();
for(HuodongEntity s:huodongEntities_huodongUuidNumber){
repeatFields.add(s.getHuodongUuidNumber());
}
return R.error(511,"数据库的该表中的 [活动编号] 字段已经存在 存在数据为:"+repeatFields.toString());
}
huodongService.insertBatch(huodongList);
return R.ok();
}
}
}
}catch (Exception e){
e.printStackTrace();
return R.error(511,"批量插入数据异常,请联系管理员");
}
}
/**
* 个性推荐
*/
@IgnoreAuth
@RequestMapping("/gexingtuijian")
public R gexingtuijian(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("gexingtuijian方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
CommonUtil.checkMap(params);
List<HuodongView> returnHuodongViewList = new ArrayList<>();
//查看收藏
Map<String, Object> params1 = new HashMap<>(params);params1.put("sort","id");params1.put("yonghuId",request.getSession().getAttribute("userId"));
params1.put("shangxiaTypes",1);
params1.put("huodongYesnoTypes",2);
PageUtils pageUtils = huodongCollectionService.queryPage(params1);
List<HuodongCollectionView> collectionViewsList =(List<HuodongCollectionView>)pageUtils.getList();
Map<Integer,Integer> typeMap=new HashMap<>();//购买的类型list
for(HuodongCollectionView collectionView:collectionViewsList){
Integer huodongTypes = collectionView.getHuodongTypes();
if(typeMap.containsKey(huodongTypes)){
typeMap.put(huodongTypes,typeMap.get(huodongTypes)+1);
}else{
typeMap.put(huodongTypes,1);
}
}
List<Integer> typeList = new ArrayList<>();//排序后的有序的类型 按最多到最少
typeMap.entrySet().stream().sorted((o1, o2) -> o2.getValue() - o1.getValue()).forEach(e -> typeList.add(e.getKey()));//排序
Integer limit = Integer.valueOf(String.valueOf(params.get("limit")));
for(Integer type:typeList){
Map<String, Object> params2 = new HashMap<>(params);params2.put("huodongTypes",type);
params2.put("shangxiaTypes",1);
params2.put("huodongYesnoTypes",2);
PageUtils pageUtils1 = huodongService.queryPage(params2);
List<HuodongView> huodongViewList =(List<HuodongView>)pageUtils1.getList();
returnHuodongViewList.addAll(huodongViewList);
if(returnHuodongViewList.size()>= limit) break;//返回的推荐数量大于要的数量 跳出循环
}
params.put("shangxiaTypes",1);
params.put("huodongYesnoTypes",2);
//正常查询出来商品,用于补全推荐缺少的数据
PageUtils page = huodongService.queryPage(params);
if(returnHuodongViewList.size()<limit){//返回数量还是小于要求数量
int toAddNum = limit - returnHuodongViewList.size();//要添加的数量
List<HuodongView> huodongViewList =(List<HuodongView>)page.getList();
for(HuodongView huodongView:huodongViewList){
Boolean addFlag = true;
for(HuodongView returnHuodongView:returnHuodongViewList){
if(returnHuodongView.getId().intValue() ==huodongView.getId().intValue()) addFlag=false;//返回的数据中已存在此商品
}
if(addFlag){
toAddNum=toAddNum-1;
returnHuodongViewList.add(huodongView);
if(toAddNum==0) break;//够数量了
}
}
}else {
returnHuodongViewList = returnHuodongViewList.subList(0, limit);
}
for(HuodongView c:returnHuodongViewList)
dictionaryService.dictionaryConvert(c, request);
page.setList(returnHuodongViewList);
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
CommonUtil.checkMap(params);
PageUtils page = huodongService.queryPage(params);
//字典表数据转换
List<HuodongView> list =(List<HuodongView>)page.getList();
for(HuodongView c:list)
dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段
return R.ok().put("data", page);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Integer id, HttpServletRequest request){
logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
HuodongEntity huodong = huodongService.selectById(id);
if(huodong !=null){
//点击数量加1
huodong.setHuodongClicknum(huodong.getHuodongClicknum()+1);
huodongService.updateById(huodong);
//entity转view
HuodongView view = new HuodongView();
BeanUtils.copyProperties( huodong , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody HuodongEntity huodong, HttpServletRequest request){
logger.debug("add方法:,,Controller:{},,huodong:{}",this.getClass().getName(),huodong.toString());
Wrapper<HuodongEntity> queryWrapper = new EntityWrapper<HuodongEntity>()
.eq("huodong_uuid_number", huodong.getHuodongUuidNumber())
.eq("huodong_name", huodong.getHuodongName())
.eq("huodong_address", huodong.getHuodongAddress())
.eq("huodong_shijian", huodong.getHuodongShijian())
.eq("zan_number", huodong.getZanNumber())
.eq("cai_number", huodong.getCaiNumber())
.eq("huodong_types", huodong.getHuodongTypes())
.eq("huodong_kucun_number", huodong.getHuodongKucunNumber())
.eq("huodong_clicknum", huodong.getHuodongClicknum())
.eq("status_types", huodong.getStatusTypes())
.eq("huodong_delete", huodong.getHuodongDelete())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
HuodongEntity huodongEntity = huodongService.selectOne(queryWrapper);
if(huodongEntity==null){
huodong.setZanNumber(1);
huodong.setCaiNumber(1);
huodong.setHuodongClicknum(1);
huodong.setHuodongDelete(1);
huodong.setInsertTime(new Date());
huodong.setCreateTime(new Date());
huodongService.insert(huodong);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
}
演示视频
Java,SpringBoot和Vue志愿者服务管理系统
原文地址:https://blog.csdn.net/qq_28245905/article/details/143872973
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!