项目介绍
现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本智能社区管理系统就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此智能社区管理系统利用当下成熟完善的SSM框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发。实现了安保维护管理、社区车位管理、字典管理、论坛管理、公告管理、公共场所管理、公共场所收藏管理、公共场所留言管理、公共场所预约管理、留言板管理、新闻信息管理、社区活动管理、社区活动收藏管理、社区活动留言管理、社区活动预约管理、用户管理、政务服务管理、管理员管理等功能。智能社区管理系统的开发根据操作人员需要设计的界面简洁美观,在功能模块布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。
开发环境
编程语言: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显示的就是社区活动管理页面,此页面提供给管理员的功能有:查看社区活动列表,新增社区活动,修改社区活动,删除社区活动。
图5.1 社区活动管理页面
5.1.2 公告管理
如图5.2显示的就是公告管理页面,此页面提供给管理员的功能有:新增公告,修改公告,删除公告。
图5.2 公告管理页面
5.1.3 公告类型管理
如图5.3显示的就是公告类型管理页面,此页面提供给管理员的功能有:新增公告类型,修改公告类型,删除公告类型。
图5.3 公告类型管理页面
核心代码
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("/anbaoweihu")
public class AnbaoweihuController {
private static final Logger logger = LoggerFactory.getLogger(AnbaoweihuController.class);
@Autowired
private AnbaoweihuService anbaoweihuService;
@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 = anbaoweihuService.queryPage(params);
//字典表数据转换
List<AnbaoweihuView> list =(List<AnbaoweihuView>)page.getList();
for(AnbaoweihuView 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);
AnbaoweihuEntity anbaoweihu = anbaoweihuService.selectById(id);
if(anbaoweihu !=null){
//entity转view
AnbaoweihuView view = new AnbaoweihuView();
BeanUtils.copyProperties( anbaoweihu , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("ve")
public R save(@RequestBody AnbaoweihuEntity anbaoweihu, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,anbaoweihu:{}",this.getClass().getName(),anbaoweihu.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永远不会进入");
Wrapper<AnbaoweihuEntity> queryWrapper = new EntityWrapper<AnbaoweihuEntity>()
.eq("anbaoweihu_name", anbaoweihu.getAnbaoweihuName())
.eq("shijianduan_types", anbaoweihu.getShijianduanTypes())
.eq("anbaoweihu_types", anbaoweihu.getAnbaoweihuTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
AnbaoweihuEntity anbaoweihuEntity = anbaoweihuService.selectOne(queryWrapper);
if(anbaoweihuEntity==null){
anbaoweihu.setInsertTime(new Date());
anbaoweihu.setCreateTime(new Date());
anbaoweihuService.insert(anbaoweihu);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody AnbaoweihuEntity anbaoweihu, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,anbaoweihu:{}",this.getClass().getName(),anbaoweihu.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
// if(false)
// return R.error(511,"永远不会进入");
//根据字段查询是否有相同数据
Wrapper<AnbaoweihuEntity> queryWrapper = new EntityWrapper<AnbaoweihuEntity>()
.notIn("id",anbaoweihu.getId())
.andNew()
.eq("anbaoweihu_name", anbaoweihu.getAnbaoweihuName())
.eq("shijianduan_types", anbaoweihu.getShijianduanTypes())
.eq("anbaoweihu_types", anbaoweihu.getAnbaoweihuTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
AnbaoweihuEntity anbaoweihuEntity = anbaoweihuService.selectOne(queryWrapper);
if("".equals(anbaoweihu.getAnbaoweihuPhoto()) || "null".equals(anbaoweihu.getAnbaoweihuPhoto())){
anbaoweihu.setAnbaoweihuPhoto(null);
}
if(anbaoweihuEntity==null){
anbaoweihuService.updateById(anbaoweihu);//根据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());
anbaoweihuService.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<AnbaoweihuEntity> anbaoweihuList = 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){
//循环
AnbaoweihuEntity anbaoweihuEntity = new AnbaoweihuEntity();
// anbaoweihuEntity.setAnbaoweihuName(data.get(0)); //安保维护名称 要改的
// anbaoweihuEntity.setAnbaoweihuPhoto("");//详情和图片
// anbaoweihuEntity.setShijianduanTypes(Integer.valueOf(data.get(0))); //服务时间段 要改的
// anbaoweihuEntity.setAnbaoweihuTypes(Integer.valueOf(data.get(0))); //安保维护类型 要改的
// anbaoweihuEntity.setAnbaoweihuContent("");//详情和图片
// anbaoweihuEntity.setInsertTime(date);//时间
// anbaoweihuEntity.setCreateTime(date);//时间
anbaoweihuList.add(anbaoweihuEntity);
//把要查询是否重复的字段放入map中
}
//查询是否重复
anbaoweihuService.insertBatch(anbaoweihuList);
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 = anbaoweihuService.queryPage(params);
//字典表数据转换
List<AnbaoweihuView> list =(List<AnbaoweihuView>)page.getList();
for(AnbaoweihuView 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);
AnbaoweihuEntity anbaoweihu = anbaoweihuService.selectById(id);
if(anbaoweihu !=null){
//entity转view
AnbaoweihuView view = new AnbaoweihuView();
BeanUtils.copyProperties( anbaoweihu , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody AnbaoweihuEntity anbaoweihu, HttpServletRequest request){
logger.debug("add方法:,,Controller:{},,anbaoweihu:{}",this.getClass().getName(),anbaoweihu.toString());
Wrapper<AnbaoweihuEntity> queryWrapper = new EntityWrapper<AnbaoweihuEntity>()
.eq("anbaoweihu_name", anbaoweihu.getAnbaoweihuName())
.eq("shijianduan_types", anbaoweihu.getShijianduanTypes())
.eq("anbaoweihu_types", anbaoweihu.getAnbaoweihuTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
AnbaoweihuEntity anbaoweihuEntity = anbaoweihuService.selectOne(queryWrapper);
if(anbaoweihuEntity==null){
anbaoweihu.setInsertTime(new Date());
anbaoweihu.setCreateTime(new Date());
anbaoweihuService.insert(anbaoweihu);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
}
论文参考
目 录
目 录 III
1 绪论 1
1.1 研究背景 1
1.2 目的和意义 1
1.3 论文结构安排 2
2 相关技术 3
2.1 SSM框架介绍 3
2.2 B/S结构介绍 3
2.3 Mysql数据库介绍 4
3 系统分析 6
3.1 系统可行性分析 6
3.1.1 技术可行性分析 6
3.1.2 经济可行性分析 6
3.1.3 运行可行性分析 6
3.2 系统性能分析 7
3.2.1 易用性指标 7
3.2.2 可扩展性指标 7
3.2.3 健壮性指标 7
3.2.4 安全性指标 8
3.3 系统流程分析 8
3.3.1 操作流程分析 8
3.3.2 登录流程分析 9
3.3.3 信息添加流程分析 10
3.3.4 信息删除流程分析 11
4 系统设计 12
4.1 系统概要设计 12
4.2 系统功能结构设计 12
4.3 数据库设计 13
4.3.1 数据库E-R图设计 13
4.3.2 数据库表结构设计 14
5 系统实现 20
5.1 管理员功能介绍 20
5.1.1 社区活动管理 20
5.1.2 公告管理 20
5.1.3 公告类型管理 21
6 系统测试 22
6.1 系统测试的特点 22
6.2 系统功能测试 23
6.2.1 登录功能测试 23
6.2.2 添加公告类型功能测试 23
6.3 测试结果分析 24
结 论 25
致 谢 26
参考文献 27