宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

码农世界 2024-05-27 后端 64 次浏览 0个评论

基于springboot的宠物领养系统设计与实现

目录

一、摘要

二、相关技术

三、系统设计

3.1 整体功能设计图

 3.2 功能具体细节设计  

四、数据库设计 

五、核心代码  

六、论文参考 

         七、源码获取


一、摘要

如今社会上各行各业,都在用属于自己专用的软件来进行工作,互联网发展到这个时候,人们已经发现离不开了互联网。互联网的发展,离不开一些新的技术,而新技术的产生往往是为了解决现有问题而产生的。针对于宠物领养信息管理方面的不规范,容错率低,管理人员处理数据费工费时,采用新开发的宠物领养系统可以从根源上规范整个数据处理流程的正规性和合法性。

宠物领养系统能够实现用户管理,宠物领养管理,宠物认领管理,教学视频管理,感谢信管理,公告管理,宠物领养审核管理,宠物认领审核管理等功能。该系统采用了Mysql数据库,Java语言,Spring Boot框架等技术进行编程实现。

宠物领养系统可以提高宠物领养信息管理问题的解决效率,优化宠物领养信息处理流程,并且能够保证存储数据的安全,它是一个非常可靠,非常安全的应用程序。

关键词:宠物领养系统;Mysql数据库;Java语言

二、相关技术

java、tomcat、mysql、spring、sprigBoot、mybatis、query、vue

三、系统设计

3.1 整体功能设计图

管理员功能结构,管理员权限操作的功能包括对注册用户信息的管理,对宠物领养,宠物认领,教学视频,感谢信以及公告进行管理,审核宠物领养以及认领的信息。

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

 3.2 功能具体细节设计  

(1)宠物领养

下图即为编码实现的宠物领养界面,用户在该界面中查看宠物领养的介绍信息,只能对未被领养的宠物进行申请领养,已经被领养的宠物只能查看其介绍信息。

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

(2)宠物认领 

下图即为编码实现的宠物认领界面,用户在该界面中查看宠物认领信息,已经找到主人的宠物不支持认领。还没有找到主人的宠物才能进行申请认领。

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

(3)教学视频 

下图即为编码实现的教学视频界面,用户在该界面中主要就是播放教学视频,在教学视频下方发布留言,该教学视频也支持用户在当前页面进行收藏,方便下次查看。

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

(3)感谢信管理 

下图即为编码实现的感谢信管理界面,用户在该界面中可以发布感谢信,对感谢信的内容进行更改,查询,删除。

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

四、数据库设计 

(1)宠物认领这个实体所拥有的属性值

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

 

(2)用户这个实体所拥有的属性值 

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

(3)宠物领养这个实体所拥有的属性值 

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

(4)管理员这个实体所拥有的属性值 

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

以下为上面介绍的实体中存在的联系 

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

五、核心代码  

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("/chongwurenlingshenhe")
public class ChongwurenlingshenheController {
    private static final Logger logger = LoggerFactory.getLogger(ChongwurenlingshenheController.class);
    @Autowired
    private ChongwurenlingshenheService chongwurenlingshenheService;
    @Autowired
    private TokenService tokenService;
    @Autowired
    private DictionaryService dictionaryService;
    //级联表service
    @Autowired
    private ChongwurenlingService chongwurenlingService;
    @Autowired
    private YonghuService yonghuService;
    /**
    * 后端列表
    */
    @RequestMapping("/page")
    public R page(@RequestParam Map params, HttpServletRequest request){
        logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            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 = chongwurenlingshenheService.queryPage(params);
        //字典表数据转换
        List list =(List)page.getList();
        for(ChongwurenlingshenheView 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);
        ChongwurenlingshenheEntity chongwurenlingshenhe = chongwurenlingshenheService.selectById(id);
        if(chongwurenlingshenhe !=null){
            //entity转view
            ChongwurenlingshenheView view = new ChongwurenlingshenheView();
            BeanUtils.copyProperties( chongwurenlingshenhe , view );//把实体数据重构到view中
                //级联表
                ChongwurenlingEntity chongwurenling = chongwurenlingService.selectById(chongwurenlingshenhe.getChongwurenlingId());
                if(chongwurenling != null){
                    BeanUtils.copyProperties( chongwurenling , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                    view.setChongwurenlingId(chongwurenling.getId());
                }
                //级联表
                YonghuEntity yonghu = yonghuService.selectById(chongwurenlingshenhe.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("/save")
    public R save(@RequestBody ChongwurenlingshenheEntity chongwurenlingshenhe, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,chongwurenlingshenhe:{}",this.getClass().getName(),chongwurenlingshenhe.toString());
        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            return R.error(511,"权限为空");
        else if("用户".equals(role))
            chongwurenlingshenhe.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
        Wrapper queryWrapper = new EntityWrapper()
            .eq("chongwurenling_id", chongwurenlingshenhe.getChongwurenlingId())
            .eq("yonghu_id", chongwurenlingshenhe.getYonghuId())
            .eq("chongwurenlingshenhe_text", chongwurenlingshenhe.getChongwurenlingshenheText())
            .eq("chongwurenlingshenhe_yesno_types", chongwurenlingshenhe.getChongwurenlingshenheYesnoTypes())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        ChongwurenlingshenheEntity chongwurenlingshenheEntity = chongwurenlingshenheService.selectOne(queryWrapper);
        if(chongwurenlingshenheEntity==null){
            chongwurenlingshenhe.setChongwurenlingshenheYesnoTypes(1);
            chongwurenlingshenhe.setCreateTime(new Date());
            chongwurenlingshenheService.insert(chongwurenlingshenhe);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }
    /**
    * 后端修改
    */
    @RequestMapping("/update")
    public R update(@RequestBody ChongwurenlingshenheEntity chongwurenlingshenhe, HttpServletRequest request){
        logger.debug("update方法:,,Controller:{},,chongwurenlingshenhe:{}",this.getClass().getName(),chongwurenlingshenhe.toString());
        //根据字段查询是否有相同数据
        Wrapper queryWrapper = new EntityWrapper()
            .notIn("id",chongwurenlingshenhe.getId())
            .andNew()
            .eq("chongwurenling_id", chongwurenlingshenhe.getChongwurenlingId())
            .eq("yonghu_id", chongwurenlingshenhe.getYonghuId())
            .eq("chongwurenlingshenhe_text", chongwurenlingshenhe.getChongwurenlingshenheText())
            .eq("chongwurenlingshenhe_yesno_types", chongwurenlingshenhe.getChongwurenlingshenheYesnoTypes())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        ChongwurenlingshenheEntity chongwurenlingshenheEntity = chongwurenlingshenheService.selectOne(queryWrapper);
        if(chongwurenlingshenheEntity==null){
            if(chongwurenlingshenhe.getChongwurenlingshenheYesnoTypes() == 2){
                ChongwurenlingEntity chongwurenlingEntity = new ChongwurenlingEntity();
                chongwurenlingEntity.setId(chongwurenlingshenhe.getChongwurenlingId());
                chongwurenlingEntity.setJieshuTypes(1);
                chongwurenlingService.updateById(chongwurenlingEntity);
            }
            chongwurenlingshenheService.updateById(chongwurenlingshenhe);//根据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());
        chongwurenlingshenheService.deleteBatchIds(Arrays.asList(ids));
        return R.ok();
    }
    /**
     * 批量上传
     */
    @RequestMapping("/batchInsert")
    public R save( String fileName){
        logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
        try {
            List chongwurenlingshenheList = new ArrayList<>();//上传的东西
            Map> 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> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
                        dataList.remove(0);//删除第一行,因为第一行是提示
                        for(List data:dataList){
                            //循环
                            ChongwurenlingshenheEntity chongwurenlingshenheEntity = new ChongwurenlingshenheEntity();
//                            chongwurenlingshenheEntity.setChongwurenlingId(Integer.valueOf(data.get(0)));   //宠物认领 要改的
//                            chongwurenlingshenheEntity.setYonghuId(Integer.valueOf(data.get(0)));   //认领用户 要改的
//                            chongwurenlingshenheEntity.setChongwurenlingshenheText(data.get(0));                    //认领理由 要改的
//                            chongwurenlingshenheEntity.setChongwurenlingshenheYesnoTypes(Integer.valueOf(data.get(0)));   //申请状态 要改的
//                            chongwurenlingshenheEntity.setCreateTime(date);//时间
                            chongwurenlingshenheList.add(chongwurenlingshenheEntity);
                            //把要查询是否重复的字段放入map中
                        }
                        //查询是否重复
                        chongwurenlingshenheService.insertBatch(chongwurenlingshenheList);
                        return R.ok();
                    }
                }
            }
        }catch (Exception e){
            return R.error(511,"批量插入数据异常,请联系管理员");
        }
    }

    /**
    * 前端列表
    */
    @IgnoreAuth
    @RequestMapping("/list")
    public R list(@RequestParam Map 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 = chongwurenlingshenheService.queryPage(params);
        //字典表数据转换
        List list =(List)page.getList();
        for(ChongwurenlingshenheView 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);
        ChongwurenlingshenheEntity chongwurenlingshenhe = chongwurenlingshenheService.selectById(id);
            if(chongwurenlingshenhe !=null){
                //entity转view
                ChongwurenlingshenheView view = new ChongwurenlingshenheView();
                BeanUtils.copyProperties( chongwurenlingshenhe , view );//把实体数据重构到view中
                //级联表
                    ChongwurenlingEntity chongwurenling = chongwurenlingService.selectById(chongwurenlingshenhe.getChongwurenlingId());
                if(chongwurenling != null){
                    BeanUtils.copyProperties( chongwurenling , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                    view.setChongwurenlingId(chongwurenling.getId());
                }
                //级联表
                    YonghuEntity yonghu = yonghuService.selectById(chongwurenlingshenhe.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 ChongwurenlingshenheEntity chongwurenlingshenhe, HttpServletRequest request){
        logger.debug("add方法:,,Controller:{},,chongwurenlingshenhe:{}",this.getClass().getName(),chongwurenlingshenhe.toString());
        Wrapper queryWrapper = new EntityWrapper()
            .eq("chongwurenling_id", chongwurenlingshenhe.getChongwurenlingId())
            .eq("yonghu_id", chongwurenlingshenhe.getYonghuId())
            .eq("chongwurenlingshenhe_text", chongwurenlingshenhe.getChongwurenlingshenheText())
            .eq("chongwurenlingshenhe_yesno_types", chongwurenlingshenhe.getChongwurenlingshenheYesnoTypes())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        ChongwurenlingshenheEntity chongwurenlingshenheEntity = chongwurenlingshenheService.selectOne(queryWrapper);
        if(chongwurenlingshenheEntity==null){
            chongwurenlingshenhe.setChongwurenlingshenheYesnoTypes(1);
            chongwurenlingshenhe.setCreateTime(new Date());
        //  String role = String.valueOf(request.getSession().getAttribute("role"));
        //  if("".equals(role)){
        //      chongwurenlingshenhe.set
        //  }
        chongwurenlingshenheService.insert(chongwurenlingshenhe);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }
}

六、论文参考 

宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)

七、源码获取:

 点赞、收藏、关注、评论啦。有任何问题欢迎咨询

👇🏻获取联系方式在文章末尾👇🏻

 

转载请注明来自码农世界,本文标题:《宠物领养|基于springboot的宠物领养系统设计与实现(附项目源码+论文)》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,64人围观)参与讨论

还没有评论,来说两句吧...

Top