基于java+ssm+vue的校内信息服务发布系统

项目介绍

近年来,信息化管理行业的不断兴起,使得人们的日常生活越来越离不开计算机和互联网技术。首先,根据收集到的用户需求分析,对设计系统有一个初步的认识与了解,确定校内信息服务发布系统的总体功能模块。然后,详细设计系统的主要功能模块,通过数据库设计过程将相关的数据信息存储到数据库中,再通过使用关键的开发工具,如IDEA开发平台、AJAX技术等,编码设计相关的功能模块。接着,主要采用功能测试的方式对系统进行测试,找出系统在运行过程中存在的问题,以及解决问题的方法,不断地改进和完善系统的设计。最后,总结本文介绍的系统的设计和实现过程,并且针对于系统的开发提出未来的展望工作。本系统的研发具有重大的意义,在安全性方面,用户使用浏览器访问网站时,采用注册和密码等相关的保护措施,提高系统的可靠性,维护用户的个人信息和财产的安全。在方便性方面,促进了校内信息服务发布系统的信息化建设,极大的方便了相关的工作人员对校内信息服务发布系统信息进行管理。

4.1系统功能设计
本系统主要通过使用Java语言编码设计系统功能,MySQL数据库管理数据,AJAX技术设计简洁的、友好的网址页面,然后在IDEA开发平台中,编写相关的Java代码文件,接着通过连接语言完成与数据库的搭建工作,再通过平台提供的Tomcat插件完成信息的交互,最后在浏览器中打开系统网址便可使用本系统。本系统的使用角色可以被分为用户和管理员,用户具有注册、查看信息、留言信息等功能,管理员具有修改用户信息,发布新闻等功能,系统总体功能设计图如图4-1所示。
基于java+ssm+vue的校内信息服务发布系统_第1张图片

开发环境

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

系统实现

5.1管理员功能模块实现
5.1.1管理员登录
管理员可以选择任一浏览器打开网址,输入信息无误后,以管理员的身份行使相关的管理权限,管理员登录界面设计如图5-1所示。
基于java+ssm+vue的校内信息服务发布系统_第2张图片

图5-1管理员登录界面

5.1.2信息管理
管理员可以通过选择信息管理,管理相关的信息信息记录,比如进行查看信息信息标题,修改信息信息来源等操作,信息管理界面设计如图5-2所示。
基于java+ssm+vue的校内信息服务发布系统_第3张图片

图5-2信息管理界面

5.1.3用户管理
管理员可以通过选择用户管理,管理相关的用户记录,比如进行查看用户详情,删除错误的用户,发布用户等操作,用户管理界面如图5-3所示。
基于java+ssm+vue的校内信息服务发布系统_第4张图片

图5-3 用户管理界面

5.1.4信息类型管理
管理员可以通过选择信息类型管理,管理相关的信息类型信息,比如查看所有信息类型,删除无用信息类型,修改信息类型,添加信息类型等操作,信息类型管理界面设计如图5-4所示。
基于java+ssm+vue的校内信息服务发布系统_第5张图片

图5-4信息类型管理界面

基于java+ssm+vue的校内信息服务发布系统_第6张图片
基于java+ssm+vue的校内信息服务发布系统_第7张图片
基于java+ssm+vue的校内信息服务发布系统_第8张图片
基于java+ssm+vue的校内信息服务发布系统_第9张图片

核心代码

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

    @Autowired
    private XinxiService xinxiService;


    @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(false)
            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 = xinxiService.queryPage(params);

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

            //修改对应字典表字段
            dictionaryService.dictionaryConvert(view, request);
            return R.ok().put("data", view);
        }else {
            return R.error(511,"查不到数据");
        }

    }

    /**
    * 后端保存
    */
    @RequestMapping("ve")
    public R save(@RequestBody XinxiEntity xinxi, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,xinxi:{}",this.getClass().getName(),xinxi.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(false)
            return R.error(511,"永远不会进入");

        Wrapper<XinxiEntity> queryWrapper = new EntityWrapper<XinxiEntity>()
            .eq("xinxi_name", xinxi.getXinxiName())
            .eq("xinxi_video", xinxi.getXinxiVideo())
            .eq("xinxi_types", xinxi.getXinxiTypes())
            .eq("zan_number", xinxi.getZanNumber())
            .eq("cai_number", xinxi.getCaiNumber())
            .eq("xinxi_clicknum", xinxi.getXinxiClicknum())
            .eq("shangxia_types", xinxi.getShangxiaTypes())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        XinxiEntity xinxiEntity = xinxiService.selectOne(queryWrapper);
        if(xinxiEntity==null){
            xinxi.setXinxiClicknum(1);
            xinxi.setShangxiaTypes(1);
            xinxi.setCreateTime(new Date());
            xinxiService.insert(xinxi);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

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

        String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");
        //根据字段查询是否有相同数据
        Wrapper<XinxiEntity> queryWrapper = new EntityWrapper<XinxiEntity>()
            .notIn("id",xinxi.getId())
            .andNew()
            .eq("xinxi_name", xinxi.getXinxiName())
            .eq("xinxi_video", xinxi.getXinxiVideo())
            .eq("xinxi_types", xinxi.getXinxiTypes())
            .eq("zan_number", xinxi.getZanNumber())
            .eq("cai_number", xinxi.getCaiNumber())
            .eq("xinxi_clicknum", xinxi.getXinxiClicknum())
            .eq("shangxia_types", xinxi.getShangxiaTypes())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        XinxiEntity xinxiEntity = xinxiService.selectOne(queryWrapper);
        if("".equals(xinxi.getXinxiPhoto()) || "null".equals(xinxi.getXinxiPhoto())){
                xinxi.setXinxiPhoto(null);
        }
        if("".equals(xinxi.getXinxiVideo()) || "null".equals(xinxi.getXinxiVideo())){
                xinxi.setXinxiVideo(null);
        }
        if(xinxiEntity==null){
            xinxiService.updateById(xinxi);//根据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());
        xinxiService.deleteBatchIds(Arrays.asList(ids));
        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");
        try {
            List<XinxiEntity> xinxiList = 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("../../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){
                            //循环
                            XinxiEntity xinxiEntity = new XinxiEntity();
//                            xinxiEntity.setXinxiName(data.get(0));                    //信息名称 要改的
//                            xinxiEntity.setXinxiPhoto("");//详情和图片
//                            xinxiEntity.setXinxiVideo(data.get(0));                    //视频 要改的
//                            xinxiEntity.setXinxiTypes(Integer.valueOf(data.get(0)));   //信息类型 要改的
//                            xinxiEntity.setZanNumber(Integer.valueOf(data.get(0)));   /数量 要改的
//                            xinxiEntity.setCaiNumber(Integer.valueOf(data.get(0)));   /数量 要改的
//                            xinxiEntity.setXinxiClicknum(Integer.valueOf(data.get(0)));   //点击次数 要改的
//                            xinxiEntity.setShangxiaTypes(Integer.valueOf(data.get(0)));   //是否上架 要改的
//                            xinxiEntity.setXinxiContent("");//详情和图片
//                            xinxiEntity.setCreateTime(date);//时间
                            xinxiList.add(xinxiEntity);


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

                        //查询是否重复
                        xinxiService.insertBatch(xinxiList);
                        return R.ok();
                    }
                }
            }
        }catch (Exception e){
            e.printStackTrace();
            return R.error(511,"批量插入数据异常,请联系管理员");
        }
    }





    /**
    * 前端列表
    */
    @IgnoreAuth
    @RequestMapping("st")
    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 = xinxiService.queryPage(params);

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

                //点击数量加1
                xinxi.setXinxiClicknum(xinxi.getXinxiClicknum()+1);
                xinxiService.updateById(xinxi);

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

                //修改对应字典表字段
                dictionaryService.dictionaryConvert(view, request);
                return R.ok().put("data", view);
            }else {
                return R.error(511,"查不到数据");
            }
    }


    /**
    * 前端保存
    */
    @RequestMapping("/add")
    public R add(@RequestBody XinxiEntity xinxi, HttpServletRequest request){
        logger.debug("add方法:,,Controller:{},,xinxi:{}",this.getClass().getName(),xinxi.toString());
        Wrapper<XinxiEntity> queryWrapper = new EntityWrapper<XinxiEntity>()
            .eq("xinxi_name", xinxi.getXinxiName())
            .eq("xinxi_video", xinxi.getXinxiVideo())
            .eq("xinxi_types", xinxi.getXinxiTypes())
            .eq("zan_number", xinxi.getZanNumber())
            .eq("cai_number", xinxi.getCaiNumber())
            .eq("xinxi_clicknum", xinxi.getXinxiClicknum())
            .eq("shangxia_types", xinxi.getShangxiaTypes())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        XinxiEntity xinxiEntity = xinxiService.selectOne(queryWrapper);
        if(xinxiEntity==null){
            xinxi.setCreateTime(new Date());
        xinxiService.insert(xinxi);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }


}

论文参考

基于java+ssm+vue的校内信息服务发布系统_第10张图片

目 录
摘要 1
Abstract 1
目 录 2
1绪论 4
1.1研究背景与意义 4
1.2国内外研究现状 4
1.3研究内容 5
1.4论文结构 5
1.5本章小结 5
2理论基础 6
2.1 B/S模式 6
2.2 IDEA开发环境 6
2.3 MySQL数据库 6
2.4 Java语言 7
2.5本章小结 7
3需求分析 8
3.1功能需求分析 8
3.2技术需求分析 8
3.3数据需求分析 8
3.4安全需求分析 8
3.5可行性分析 8
3.5.1经济可行性 8
3.5.2技术可行性 9
3.5.3操作可行性 9
3.6本章小结 9
4系统设计 10
4.1系统功能设计 10
4.2数据库设计 10
4.2.1概念设计 10
4.2.2逻辑设计 11
4.3本章小结 13
5系统实现 14
5.1管理员功能模块实现 14
5.1.1管理员登录 14
5.1.2信息管理 14
5.1.3用户管理 14
5.1.4信息类型管理 15
5.3系统测试 15
5.3.1测试概述 15
5.3.2测试结果 16
5.3本章小结 16
6总结与展望 17
参考文献 18
致谢 19

你可能感兴趣的:(java项目,java,ssm,vue,mysql)