基于java+springboot+vue的宠物咖啡馆平台

项目介绍

随着信息技术在管理上越来越深入而广泛的应用,管理信息系统的实施在技术上已逐步成熟。本文介绍了基于Spring Boot的宠物咖啡馆平台的设计与实现的开发全过程。通过分析基于Spring Boot的宠物咖啡馆平台的设计与实现管理的不足,创建了一个计算机管理基于Spring Boot的宠物咖啡馆平台的设计与实现的方案。文章介绍了基于Spring Boot的宠物咖啡馆平台的设计与实现的系统分析部分,包括可行性分析等,系统设计部分主要介绍了系统功能设计和数据库设计。

本基于Spring Boot的宠物咖啡馆平台的设计与实现有管理员和用户以及看护师三个角色。用户功能有个人中心,咖啡菜品管理,菜品订单管理,宠物信息管理,宠物体验管理,宠物订单管理,宠物寄养管理,健康状况管理,看护服务管理,周边商品管理,商品购买管理,我的收藏管理等。管理员功能有个人中心,用户管理,看护师管理,咖啡菜品管理,菜品类型管理,菜品订单管理,宠物信息管理,宠物体验管理,宠物订单管理,宠物寄养管理,健康状况管理,互动项目管理,看护服务管理,周边商品管理,商品类型管理,商品购买管理,商品入库管理,系统管理等。看护师功能有个人中心,宠物体验管理,宠物寄养管理,健康状况管理,看护服务管理等。因而具有一定的实用性。

本站是一个B/S模式系统,采用SSM框架,MYSQL数据库设计开发,充分保证系统的稳定性。系统具有界面清晰、操作简单,功能齐全的特点,使得基于Spring Boot的宠物咖啡馆平台的设计与实现管理工作系统化、规范化。本系统的使用使管理人员从繁重的工作中解脱出来,实现无纸化办公,能够有效的提高基于Spring Boot的宠物咖啡馆平台的设计与实现管理效率。

基于java+springboot+vue的宠物咖啡馆平台_第1张图片
基于java+springboot+vue的宠物咖啡馆平台_第2张图片
基于java+springboot+vue的宠物咖啡馆平台_第3张图片

开发环境

编程语言:Java
数据库 :Mysql
系统架构:B/S
后端框架:SpringBoot
编译工具:idea或者eclipse,jdk1.8,maven
支持定做:java/php/python/android/小程序vue/爬虫/c#/asp.net

系统实现

5.1 管理员模块的实现
5.1.1 用户信息管理
基于Spring Boot的宠物咖啡馆平台的设计与实现的系统管理员可以管理用户,可以对用户信息添加修改删除以及查询操作。具体界面的展示如图5.1所示。
基于java+springboot+vue的宠物咖啡馆平台_第4张图片

图5.1 用户信息管理界面

5.1.2 看护师信息管理
系统管理员可以查看对看护师信息进行添加,修改,删除以及查询操作。具体界面如图5.2所示。
基于java+springboot+vue的宠物咖啡馆平台_第5张图片

图5.2 看护师信息管理界面

5.2 看护师模块的实现
5.2.1 宠物寄养管理
看护师可以对宠物寄养信息进行添加,修改,删除以及查询操作。界面如下图所示:
基于java+springboot+vue的宠物咖啡馆平台_第6张图片

图5.3 宠物寄养信息管理界面

5.2.1 健康状况管理
看护师可以对健康状况信息进行添加修改删除操作。界面如下图所示:

基于java+springboot+vue的宠物咖啡馆平台_第7张图片

图5.4 健康状况添加界面

5.2 用户模块的实现
5.2.2 点单
用户登录之后,可以在咖啡菜品信息里面进行点单操作。界面如下图所示:
基于java+springboot+vue的宠物咖啡馆平台_第8张图片

图5.5 点单界面

5.2.3 宠物体验
用户登录后可以在首页点击宠物体验,并且提交相关信息。界面如下图所示:
基于java+springboot+vue的宠物咖啡馆平台_第9张图片

图5.6 宠物体验信息界面

核心代码

package com.controller;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;

import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;

import com.entity.KafeicaipinEntity;
import com.entity.view.KafeicaipinView;

import com.service.KafeicaipinService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;


/**
 * 咖啡菜品
 * 后端接口
 * @author 
 * @email 
 * @date 
 */
@RestController
@RequestMapping("/kafeicaipin")
public class KafeicaipinController {
    @Autowired
    private KafeicaipinService kafeicaipinService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,KafeicaipinEntity kafeicaipin,
		HttpServletRequest request){
        EntityWrapper<KafeicaipinEntity> ew = new EntityWrapper<KafeicaipinEntity>();
		PageUtils page = kafeicaipinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, kafeicaipin), params), params));

        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
	@IgnoreAuth
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,KafeicaipinEntity kafeicaipin, HttpServletRequest request){
        EntityWrapper<KafeicaipinEntity> ew = new EntityWrapper<KafeicaipinEntity>();
		PageUtils page = kafeicaipinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, kafeicaipin), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( KafeicaipinEntity kafeicaipin){
       	EntityWrapper<KafeicaipinEntity> ew = new EntityWrapper<KafeicaipinEntity>();
      	ew.allEq(MPUtil.allEQMapPre( kafeicaipin, "kafeicaipin")); 
        return R.ok().put("data", kafeicaipinService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(KafeicaipinEntity kafeicaipin){
        EntityWrapper< KafeicaipinEntity> ew = new EntityWrapper< KafeicaipinEntity>();
 		ew.allEq(MPUtil.allEQMapPre( kafeicaipin, "kafeicaipin")); 
		KafeicaipinView kafeicaipinView =  kafeicaipinService.selectView(ew);
		return R.ok("查询咖啡菜品成功").put("data", kafeicaipinView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        KafeicaipinEntity kafeicaipin = kafeicaipinService.selectById(id);
		kafeicaipin.setClicknum(kafeicaipin.getClicknum()+1);
		kafeicaipin.setClicktime(new Date());
		kafeicaipinService.updateById(kafeicaipin);
        return R.ok().put("data", kafeicaipin);
    }

    /**
     * 前端详情
     */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        KafeicaipinEntity kafeicaipin = kafeicaipinService.selectById(id);
		kafeicaipin.setClicknum(kafeicaipin.getClicknum()+1);
		kafeicaipin.setClicktime(new Date());
		kafeicaipinService.updateById(kafeicaipin);
        return R.ok().put("data", kafeicaipin);
    }
    


    /**
     * 赞或踩
     */
    @RequestMapping("/thumbsup/{id}")
    public R vote(@PathVariable("id") String id,String type){
        KafeicaipinEntity kafeicaipin = kafeicaipinService.selectById(id);
        if(type.equals("1")) {
        	kafeicaipin.setThumbsupnum(kafeicaipin.getThumbsupnum()+1);
        } else {
        	kafeicaipin.setCrazilynum(kafeicaipin.getCrazilynum()+1);
        }
        kafeicaipinService.updateById(kafeicaipin);
        return R.ok("投票成功");
    }

    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody KafeicaipinEntity kafeicaipin, HttpServletRequest request){
    	kafeicaipin.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(kafeicaipin);
        kafeicaipinService.insert(kafeicaipin);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
	@IgnoreAuth
    @RequestMapping("/add")
    public R add(@RequestBody KafeicaipinEntity kafeicaipin, HttpServletRequest request){
    	kafeicaipin.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(kafeicaipin);
        kafeicaipinService.insert(kafeicaipin);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody KafeicaipinEntity kafeicaipin, HttpServletRequest request){
        //ValidatorUtils.validateEntity(kafeicaipin);
        kafeicaipinService.updateById(kafeicaipin);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        kafeicaipinService.deleteBatchIds(Arrays.asList(ids));
        return R.ok();
    }
    
    /**
     * 提醒接口
     */
	@RequestMapping("/remind/{columnName}/{type}")
	public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, 
						 @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
		map.put("column", columnName);
		map.put("type", type);
		
		if(type.equals("2")) {
			SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
			Calendar c = Calendar.getInstance();
			Date remindStartDate = null;
			Date remindEndDate = null;
			if(map.get("remindstart")!=null) {
				Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
				c.setTime(new Date()); 
				c.add(Calendar.DAY_OF_MONTH,remindStart);
				remindStartDate = c.getTime();
				map.put("remindstart", sdf.format(remindStartDate));
			}
			if(map.get("remindend")!=null) {
				Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
				c.setTime(new Date());
				c.add(Calendar.DAY_OF_MONTH,remindEnd);
				remindEndDate = c.getTime();
				map.put("remindend", sdf.format(remindEndDate));
			}
		}
		
		Wrapper<KafeicaipinEntity> wrapper = new EntityWrapper<KafeicaipinEntity>();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}


		int count = kafeicaipinService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	
	/**
     * 前端智能排序
     */
	@IgnoreAuth
    @RequestMapping("/autoSort")
    public R autoSort(@RequestParam Map<String, Object> params,KafeicaipinEntity kafeicaipin, HttpServletRequest request,String pre){
        EntityWrapper<KafeicaipinEntity> ew = new EntityWrapper<KafeicaipinEntity>();
        Map<String, Object> newMap = new HashMap<String, Object>();
        Map<String, Object> param = new HashMap<String, Object>();
		Iterator<Map.Entry<String, Object>> it = param.entrySet().iterator();
		while (it.hasNext()) {
			Map.Entry<String, Object> entry = it.next();
			String key = entry.getKey();
			String newKey = entry.getKey();
			if (pre.endsWith(".")) {
				newMap.put(pre + newKey, entry.getValue());
			} else if (StringUtils.isEmpty(pre)) {
				newMap.put(newKey, entry.getValue());
			} else {
				newMap.put(pre + "." + newKey, entry.getValue());
			}
		}
		params.put("sort", "clicknum");
        params.put("order", "desc");
		PageUtils page = kafeicaipinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, kafeicaipin), params), params));
        return R.ok().put("data", page);
    }


}

论文参考

基于java+springboot+vue的宠物咖啡馆平台_第10张图片

目录
1系统概述 1
1.1 研究背景 1
1.2研究目的 1
1.3系统设计思想 1
2相关技术 2
2.1 MYSQL数据库 3
2.2 B/S结构 3
2.3 基于Spring Boot的宠物咖啡馆平台的设计与实现框架简介 4
3系统分析 4
3.1可行性分析 4
3.1.1技术可行性 5
3.1.2经济可行性 5
3.1.3操作可行性 5
3.2系统性能分析 5
3.2.1 系统安全性 5
3.2.2 数据完整性 6
3.3系统界面分析 6
3.4系统流程和逻辑 7
4系统概要设计 8
4.1概述 8
4.2系统结构 9
4.3.数据库设计 10
4.3.1数据库实体 10
4.3.2数据库设计表 12
5系统详细实现 19
5.1 管理员模块的实现 19
5.1.1 用户信息管理 19
5.1.2 看护师信息管理 20
5.2 看护师模块的实现 21
5.2.1 宠物寄养管理 21
5.2.1 健康状况管理 21
5.2 用户模块的实现 22
5.2.2 点单 22
5.2.3 宠物体验 23
6系统测试 24
6.1概念和意义 24
6.2特性 25
6.3重要性 25
6.4测试方法 26
6.5 功能测试 26
6.6可用性测试 27
6.7性能测试 27
6.8测试分析 27
6.9测试结果分析 28
结论 28
致谢语 29
参考文献 29

你可能感兴趣的:(java,java,spring,boot,vue,mysql)