基于SSM的宠物领养收养救助系统的设计与实现

精彩专栏推荐订阅:在 下方专栏👇🏻👇🏻👇🏻👇🏻

💖🔥作者主页计算机毕设木哥🔥 💖

一、项目介绍

1.1背景及意义:

随着互联网的普及和计算机技术的发展,人们的生活方式发生了巨大变化。其中一个明显的趋势是线上领养宠物的兴起。许多动物救助组织通过网络平台发布待领养的宠物信息,而许多有意领养的人也通过这些平台寻找合适的宠物。然而,当前市场上的宠物领养系统存在一些问题,如信息不透明、搜索功能不完善、用户交互体验差等。这使得寻找合适的宠物变得困难,也影响了动物救助组织的工作效率。因此,我们团队决定开发一款全新的宠物领养系统,以解决这些问题。

当前市场上的宠物领养系统存在一些问题,如信息不透明、搜索功能不完善、用户交互体验差等,这些问题不仅影响了有意领养宠物的人的体验,也影响了动物救助组织的工作效率。因此,开发一款全新的宠物领养系统,可以帮助有意领养宠物的人更方便快捷地找到合适的宠物,同时也可以帮助动物救助组织更高效地进行领养匹配和管理工作。

1.2功能介绍:

本项目旨在开发一款全新的宠物领养系统,以解决当前市场上存在的一些问题。该系统将具备完善的功能,包括用户管理、新闻管理、地区管理、犬种管理、犬龄管理、领养信息管理、领养管理、宠物动态管理、宠物评论管理、私聊管理、宠物信息管理、管理员帐号管理和系统管理等功能。这些功能将使得有意领养宠物的人可以更方便快捷地找到合适的宠物,同时也可以帮助动物救助组织更高效地进行领养匹配和管理工作。

该项目的目标是为有意领养宠物的人和动物救助组织提供一个更加便捷、高效的平台,同时提高动物救助组织的领养成功率。未来,我们将继续优化系统的性能和功能,增加更多的人性化设计,为更多的宠物爱好者提供更好的服务。

二、开发环境

  • 开发语言:Java
  • 数据库:MySQL
  • 系统架构:B/S
  • 后端:SSM
  • 前端:HTML
  • 工具:IDEA或者Eclipse,JDK1.8,Maven

三、项目展示

注册登录页面:在这里插入图片描述
首页模块:在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述管理员模块:在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

四、代码展示


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("/chongwulingyangshenhe")
public class ChongwulingyangshenheController {
    private static final Logger logger = LoggerFactory.getLogger(ChongwulingyangshenheController.class);

    @Autowired
    private ChongwulingyangshenheService chongwulingyangshenheService;


    @Autowired
    private TokenService tokenService;
    @Autowired
    private DictionaryService dictionaryService;

    //级联表service
    @Autowired
    private ChongwulingyangService chongwulingyangService;
    @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.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 = chongwulingyangshenheService.queryPage(params);

        //字典表数据转换
        List<ChongwulingyangshenheView> list =(List<ChongwulingyangshenheView>)page.getList();
        for(ChongwulingyangshenheView 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);
        ChongwulingyangshenheEntity chongwulingyangshenhe = chongwulingyangshenheService.selectById(id);
        if(chongwulingyangshenhe !=null){
            //entity转view
            ChongwulingyangshenheView view = new ChongwulingyangshenheView();
            BeanUtils.copyProperties( chongwulingyangshenhe , view );//把实体数据重构到view中

                //级联表
                ChongwulingyangEntity chongwulingyang = chongwulingyangService.selectById(chongwulingyangshenhe.getChongwulingyangId());
                if(chongwulingyang != null){
                    BeanUtils.copyProperties( chongwulingyang , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                    view.setChongwulingyangId(chongwulingyang.getId());
                }
                //级联表
                YonghuEntity yonghu = yonghuService.selectById(chongwulingyangshenhe.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 ChongwulingyangshenheEntity chongwulingyangshenhe, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,chongwulingyangshenhe:{}",this.getClass().getName(),chongwulingyangshenhe.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            return R.error(511,"权限为空");
        else if("用户".equals(role))
            chongwulingyangshenhe.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));

        Wrapper<ChongwulingyangshenheEntity> queryWrapper = new EntityWrapper<ChongwulingyangshenheEntity>()
            .eq("chongwulingyang_id", chongwulingyangshenhe.getChongwulingyangId())
            .eq("yonghu_id", chongwulingyangshenhe.getYonghuId())
            .eq("chongwurenlingshenhe_text", chongwulingyangshenhe.getChongwurenlingshenheText())
            .eq("chongwulingyangshenhe_yesno_types", chongwulingyangshenhe.getChongwulingyangshenheYesnoTypes())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        ChongwulingyangshenheEntity chongwulingyangshenheEntity = chongwulingyangshenheService.selectOne(queryWrapper);
        if(chongwulingyangshenheEntity==null){
            chongwulingyangshenhe.setChongwulingyangshenheYesnoTypes(1);
            chongwulingyangshenhe.setCreateTime(new Date());
            chongwulingyangshenheService.insert(chongwulingyangshenhe);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

    /**
    * 后端修改
    */
    @RequestMapping("/update")
    public R update(@RequestBody ChongwulingyangshenheEntity chongwulingyangshenhe, HttpServletRequest request){
        logger.debug("update方法:,,Controller:{},,chongwulingyangshenhe:{}",this.getClass().getName(),chongwulingyangshenhe.toString());

        //根据字段查询是否有相同数据
        Wrapper<ChongwulingyangshenheEntity> queryWrapper = new EntityWrapper<ChongwulingyangshenheEntity>()
            .notIn("id",chongwulingyangshenhe.getId())
            .andNew()
            .eq("chongwulingyang_id", chongwulingyangshenhe.getChongwulingyangId())
            .eq("yonghu_id", chongwulingyangshenhe.getYonghuId())
            .eq("chongwurenlingshenhe_text", chongwulingyangshenhe.getChongwurenlingshenheText())
            .eq("chongwulingyangshenhe_yesno_types", chongwulingyangshenhe.getChongwulingyangshenheYesnoTypes())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        ChongwulingyangshenheEntity chongwulingyangshenheEntity = chongwulingyangshenheService.selectOne(queryWrapper);
        if(chongwulingyangshenheEntity==null){
            //  String role = String.valueOf(request.getSession().getAttribute("role"));
            //  if("".equals(role)){
            //      chongwulingyangshenhe.set
            //  }
            if(chongwulingyangshenhe.getChongwulingyangshenheYesnoTypes() == 2){
                ChongwulingyangEntity chongwulingyangEntity = new ChongwulingyangEntity();
                chongwulingyangEntity.setId(chongwulingyangshenhe.getChongwulingyangId());
                chongwulingyangEntity.setJieshuTypes(1);
                chongwulingyangService.updateById(chongwulingyangEntity);
            }
            chongwulingyangshenheService.updateById(chongwulingyangshenhe);//根据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());
        chongwulingyangshenheService.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<ChongwulingyangshenheEntity> chongwulingyangshenheList = 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){
                            //循环
                            ChongwulingyangshenheEntity chongwulingyangshenheEntity = new ChongwulingyangshenheEntity();
//                            chongwulingyangshenheEntity.setChongwulingyangId(Integer.valueOf(data.get(0)));   //宠物领养 要改的
//                            chongwulingyangshenheEntity.setYonghuId(Integer.valueOf(data.get(0)));   //领养用户 要改的
//                            chongwulingyangshenheEntity.setChongwurenlingshenheText(data.get(0));                    //认领理由 要改的
//                            chongwulingyangshenheEntity.setChongwulingyangshenheYesnoTypes(Integer.valueOf(data.get(0)));   //申请状态 要改的
//                            chongwulingyangshenheEntity.setCreateTime(date);//时间
                            chongwulingyangshenheList.add(chongwulingyangshenheEntity);


                            //把要查询是否重复的字段放入map中
                        }

                        //查询是否重复
                        chongwulingyangshenheService.insertBatch(chongwulingyangshenheList);
                        return R.ok();
                    }
                }
            }
        }catch (Exception e){
            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 = chongwulingyangshenheService.queryPage(params);

        //字典表数据转换
        List<ChongwulingyangshenheView> list =(List<ChongwulingyangshenheView>)page.getList();
        for(ChongwulingyangshenheView 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);
        ChongwulingyangshenheEntity chongwulingyangshenhe = chongwulingyangshenheService.selectById(id);
            if(chongwulingyangshenhe !=null){


                //entity转view
                ChongwulingyangshenheView view = new ChongwulingyangshenheView();
                BeanUtils.copyProperties( chongwulingyangshenhe , view );//把实体数据重构到view中

                //级联表
                    ChongwulingyangEntity chongwulingyang = chongwulingyangService.selectById(chongwulingyangshenhe.getChongwulingyangId());
                if(chongwulingyang != null){
                    BeanUtils.copyProperties( chongwulingyang , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                    view.setChongwulingyangId(chongwulingyang.getId());
                }
                //级联表
                    YonghuEntity yonghu = yonghuService.selectById(chongwulingyangshenhe.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 ChongwulingyangshenheEntity chongwulingyangshenhe, HttpServletRequest request){
        logger.debug("add方法:,,Controller:{},,chongwulingyangshenhe:{}",this.getClass().getName(),chongwulingyangshenhe.toString());
        Wrapper<ChongwulingyangshenheEntity> queryWrapper = new EntityWrapper<ChongwulingyangshenheEntity>()
            .eq("chongwulingyang_id", chongwulingyangshenhe.getChongwulingyangId())
            .eq("yonghu_id", chongwulingyangshenhe.getYonghuId())
            .eq("chongwurenlingshenhe_text", chongwulingyangshenhe.getChongwurenlingshenheText())
            .eq("chongwulingyangshenhe_yesno_types", chongwulingyangshenhe.getChongwulingyangshenheYesnoTypes())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        ChongwulingyangshenheEntity chongwulingyangshenheEntity = chongwulingyangshenheService.selectOne(queryWrapper);
        if(chongwulingyangshenheEntity==null){
            chongwulingyangshenhe.setChongwulingyangshenheYesnoTypes(1);
            chongwulingyangshenhe.setCreateTime(new Date());
        //  String role = String.valueOf(request.getSession().getAttribute("role"));
        //  if("".equals(role)){
        //      chongwulingyangshenhe.set
        //  }
        chongwulingyangshenheService.insert(chongwulingyangshenhe);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }


}

五、论文参考

在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

计算机毕业设计木哥

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值