当前位置:   article > 正文

基于SpringBoot的在线文档管理系统源码和论文_文档源码

文档源码

论文题目

基于Spring Boot的在线文档管理系统的设计与实现

1.选题背景、研究目的及意义(含国内外的研究现状分析)(不少于1000字)

1.1 选题背景

网络的快速发展从根本上更改了人们的生活方式,伴随着网络的发展,互联网逐渐影响、改变着人们的生活。互联网的应用,实现了信息共享化,丰富多彩的网上信息,供人们浏览,同时互联网的发展,打破了地域的限制,通过计算机,我们可以信息共享。

我们经过对文档管理进行调查,发现随着文档的不断增加,文档管理工作也越来越繁重和琐碎,手工管理文档信息已经不能满足当前社会发展需要,容易出错,数据繁多,因此需要对文档管理体系进行及时改善,来提高文档管理效率,从而也可避免因系统的不完善而导致管理漏洞,使得文档管理系统的运行和管理就显得尤为重要,通过文档管理系统用户可高效的进行文档共享、文档管理操作,提高文档共享、管理效率。

1.2研究目的及意义

随着信息技术的发展,为了提高文档管理效率,开发了本基于Spring Boot的在线文档管理系统,本在线文档管理系统的开发具有很大的现实意义和实用意义。首先,在操作流程上,管理员和用户都只需要访问网页,便可进行文档信息的管理。不需要像手工记录,快速便捷,提高了文档管理的准确度;其次,在系统的投放使用方面,系统的应用可提高文档管理效率;然后,在系统效益上,用户注册登录后均可进行文档信息的浏览、下载、打印,可实现文档的共享,管理员进行系统后台,就可以自行管理文档信息以及用户信息。

1.3研究现状分析

目前在商业化的文档管理系统中,国外技术比较成熟,远远领先于我国,在发达国家,对于文档管理系统的研究状况及发展趋势,已经逐步走向分布式管理道路,分布式管理系统的主要特点包括跨平台性、分布式计算、分布式存储和可扩展性的特点。Web Service的技术标准和规范已经成为IT业界公认的分布式开发标准并得到了广泛的采用。WebService技术把企业行政文档管理系统带入了一个新的阶段,大大提高了系统的运行性能、安全性和稳定性,开发者可以利用这些软件实现文档管理的自动化管理。

改革开放以后,我国的企事业单位行政管理工作由原来的手工管理逐渐走向信息化管理方式。早期的文档管理系统主要用来处理特定领域的复杂办公业务。我国的企业计算机管理信息系统建设在20世纪80年代就已经开始起步,但发展极不平衡,也就是说大部分企业日前仍处于低水平开发和应用阶段。随着行政管理工作越来越复杂,行政文档管理工作逐渐成为大家关注的重点,怎样科学合理地进行行政文档的管理也逐渐成为各企事业单位研究的热点。

从文档的手工管理到信息化、自动化和智能化管理,无论是从管理方式、内容和系统的体系架构等都取得了很大的进步。

首先,在文档管理方式方面,行政文档管理理念得到了质的飞跃。市场上出现了各种各样的文档管理系统,涉及的领域也非常的广泛,包括工程项日、政府行政、教育机关等等。

其次,在管理的内容方面,从最初的静态化管理到动态化管理再到现在的设计文档管理,设计文档管理阶段,静态化管理和动态化管理就消失了,它们其实是-一个相辅相成的关系,各白都有其不同的特点。设计文档管理方式是对静态化管理和动态化管理方式的权衡,摒弃它们的缺点,整个文档的管理方式可以进行人工配置,这种方式具有白由和人性化的特点。

从文档管理系统的功能上来看,快捷的检索、实时的存储和方便的操作是文档管理系统最主要的功能。文档管理系统的体系架构发展来看,由最初的C/S结构文档管理系统升级到基于Web技术的B/S结构的分布式体系结构。随着经济体制的改革和市场经济的发展,企业的运行机制有了很大变化。在当前形势下,信息化是企业发展的必由之路。

基于SpringBoot的在线文档管理系统源码和论文springboot026

演示视频:

基于SpringBoot的在线文档管理系统源码和论文

 

 

  1. package com.controller;
  2. import java.text.SimpleDateFormat;
  3. import java.util.ArrayList;
  4. import java.util.Arrays;
  5. import java.util.Calendar;
  6. import java.util.Map;
  7. import java.util.HashMap;
  8. import java.util.Iterator;
  9. import java.util.Date;
  10. import java.util.List;
  11. import javax.servlet.http.HttpServletRequest;
  12. import com.utils.ValidatorUtils;
  13. import org.apache.commons.lang3.StringUtils;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.format.annotation.DateTimeFormat;
  16. import org.springframework.web.bind.annotation.PathVariable;
  17. import org.springframework.web.bind.annotation.RequestBody;
  18. import org.springframework.web.bind.annotation.RequestMapping;
  19. import org.springframework.web.bind.annotation.RequestParam;
  20. import org.springframework.web.bind.annotation.RestController;
  21. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  22. import com.baomidou.mybatisplus.mapper.Wrapper;
  23. import com.annotation.IgnoreAuth;
  24. import com.entity.YuangongEntity;
  25. import com.entity.view.YuangongView;
  26. import com.service.YuangongService;
  27. import com.service.TokenService;
  28. import com.utils.PageUtils;
  29. import com.utils.R;
  30. import com.utils.MD5Util;
  31. import com.utils.MPUtil;
  32. import com.utils.CommonUtil;
  33. /**
  34. * 员工
  35. * 后端接口
  36. * @author
  37. * @email
  38. * @date 2021-04-02 14:39:25
  39. */
  40. @RestController
  41. @RequestMapping("/yuangong")
  42. public class YuangongController {
  43. @Autowired
  44. private YuangongService yuangongService;
  45. @Autowired
  46. private TokenService tokenService;
  47. /**
  48. * 登录
  49. */
  50. @IgnoreAuth
  51. @RequestMapping(value = "/login")
  52. public R login(String username, String password, String captcha, HttpServletRequest request) {
  53. YuangongEntity user = yuangongService.selectOne(new EntityWrapper<YuangongEntity>().eq("yuangonggonghao", username));
  54. if(user==null || !user.getMima().equals(password)) {
  55. return R.error("账号或密码不正确");
  56. }
  57. String token = tokenService.generateToken(user.getId(), username,"yuangong", "员工" );
  58. return R.ok().put("token", token);
  59. }
  60. /**
  61. * 注册
  62. */
  63. @IgnoreAuth
  64. @RequestMapping("/register")
  65. public R register(@RequestBody YuangongEntity yuangong){
  66. //ValidatorUtils.validateEntity(yuangong);
  67. YuangongEntity user = yuangongService.selectOne(new EntityWrapper<YuangongEntity>().eq("yuangonggonghao", yuangong.getYuangonggonghao()));
  68. if(user!=null) {
  69. return R.error("注册用户已存在");
  70. }
  71. Long uId = new Date().getTime();
  72. yuangong.setId(uId);
  73. yuangongService.insert(yuangong);
  74. return R.ok();
  75. }
  76. /**
  77. * 退出
  78. */
  79. @RequestMapping("/logout")
  80. public R logout(HttpServletRequest request) {
  81. request.getSession().invalidate();
  82. return R.ok("退出成功");
  83. }
  84. /**
  85. * 获取用户的session用户信息
  86. */
  87. @RequestMapping("/session")
  88. public R getCurrUser(HttpServletRequest request){
  89. Long id = (Long)request.getSession().getAttribute("userId");
  90. YuangongEntity user = yuangongService.selectById(id);
  91. return R.ok().put("data", user);
  92. }
  93. /**
  94. * 密码重置
  95. */
  96. @IgnoreAuth
  97. @RequestMapping(value = "/resetPass")
  98. public R resetPass(String username, HttpServletRequest request){
  99. YuangongEntity user = yuangongService.selectOne(new EntityWrapper<YuangongEntity>().eq("yuangonggonghao", username));
  100. if(user==null) {
  101. return R.error("账号不存在");
  102. }
  103. user.setMima("123456");
  104. yuangongService.updateById(user);
  105. return R.ok("密码已重置为:123456");
  106. }
  107. /**
  108. * 后端列表
  109. */
  110. @RequestMapping("/page")
  111. public R page(@RequestParam Map<String, Object> params,YuangongEntity yuangong,
  112. HttpServletRequest request){
  113. EntityWrapper<YuangongEntity> ew = new EntityWrapper<YuangongEntity>();
  114. PageUtils page = yuangongService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yuangong), params), params));
  115. return R.ok().put("data", page);
  116. }
  117. /**
  118. * 前端列表
  119. */
  120. @RequestMapping("/list")
  121. public R list(@RequestParam Map<String, Object> params,YuangongEntity yuangong, HttpServletRequest request){
  122. EntityWrapper<YuangongEntity> ew = new EntityWrapper<YuangongEntity>();
  123. PageUtils page = yuangongService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yuangong), params), params));
  124. return R.ok().put("data", page);
  125. }
  126. /**
  127. * 列表
  128. */
  129. @RequestMapping("/lists")
  130. public R list( YuangongEntity yuangong){
  131. EntityWrapper<YuangongEntity> ew = new EntityWrapper<YuangongEntity>();
  132. ew.allEq(MPUtil.allEQMapPre( yuangong, "yuangong"));
  133. return R.ok().put("data", yuangongService.selectListView(ew));
  134. }
  135. /**
  136. * 查询
  137. */
  138. @RequestMapping("/query")
  139. public R query(YuangongEntity yuangong){
  140. EntityWrapper< YuangongEntity> ew = new EntityWrapper< YuangongEntity>();
  141. ew.allEq(MPUtil.allEQMapPre( yuangong, "yuangong"));
  142. YuangongView yuangongView = yuangongService.selectView(ew);
  143. return R.ok("查询员工成功").put("data", yuangongView);
  144. }
  145. /**
  146. * 后端详情
  147. */
  148. @RequestMapping("/info/{id}")
  149. public R info(@PathVariable("id") Long id){
  150. YuangongEntity yuangong = yuangongService.selectById(id);
  151. return R.ok().put("data", yuangong);
  152. }
  153. /**
  154. * 前端详情
  155. */
  156. @RequestMapping("/detail/{id}")
  157. public R detail(@PathVariable("id") Long id){
  158. YuangongEntity yuangong = yuangongService.selectById(id);
  159. return R.ok().put("data", yuangong);
  160. }
  161. /**
  162. * 后端保存
  163. */
  164. @RequestMapping("/save")
  165. public R save(@RequestBody YuangongEntity yuangong, HttpServletRequest request){
  166. yuangong.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
  167. //ValidatorUtils.validateEntity(yuangong);
  168. YuangongEntity user = yuangongService.selectOne(new EntityWrapper<YuangongEntity>().eq("yuangonggonghao", yuangong.getYuangonggonghao()));
  169. if(user!=null) {
  170. return R.error("用户已存在");
  171. }
  172. yuangong.setId(new Date().getTime());
  173. yuangongService.insert(yuangong);
  174. return R.ok();
  175. }
  176. /**
  177. * 前端保存
  178. */
  179. @RequestMapping("/add")
  180. public R add(@RequestBody YuangongEntity yuangong, HttpServletRequest request){
  181. yuangong.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
  182. //ValidatorUtils.validateEntity(yuangong);
  183. YuangongEntity user = yuangongService.selectOne(new EntityWrapper<YuangongEntity>().eq("yuangonggonghao", yuangong.getYuangonggonghao()));
  184. if(user!=null) {
  185. return R.error("用户已存在");
  186. }
  187. yuangong.setId(new Date().getTime());
  188. yuangongService.insert(yuangong);
  189. return R.ok();
  190. }
  191. /**
  192. * 修改
  193. */
  194. @RequestMapping("/update")
  195. public R update(@RequestBody YuangongEntity yuangong, HttpServletRequest request){
  196. //ValidatorUtils.validateEntity(yuangong);
  197. yuangongService.updateById(yuangong);//全部更新
  198. return R.ok();
  199. }
  200. /**
  201. * 删除
  202. */
  203. @RequestMapping("/delete")
  204. public R delete(@RequestBody Long[] ids){
  205. yuangongService.deleteBatchIds(Arrays.asList(ids));
  206. return R.ok();
  207. }
  208. /**
  209. * 提醒接口
  210. */
  211. @RequestMapping("/remind/{columnName}/{type}")
  212. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
  213. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
  214. map.put("column", columnName);
  215. map.put("type", type);
  216. if(type.equals("2")) {
  217. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  218. Calendar c = Calendar.getInstance();
  219. Date remindStartDate = null;
  220. Date remindEndDate = null;
  221. if(map.get("remindstart")!=null) {
  222. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
  223. c.setTime(new Date());
  224. c.add(Calendar.DAY_OF_MONTH,remindStart);
  225. remindStartDate = c.getTime();
  226. map.put("remindstart", sdf.format(remindStartDate));
  227. }
  228. if(map.get("remindend")!=null) {
  229. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
  230. c.setTime(new Date());
  231. c.add(Calendar.DAY_OF_MONTH,remindEnd);
  232. remindEndDate = c.getTime();
  233. map.put("remindend", sdf.format(remindEndDate));
  234. }
  235. }
  236. Wrapper<YuangongEntity> wrapper = new EntityWrapper<YuangongEntity>();
  237. if(map.get("remindstart")!=null) {
  238. wrapper.ge(columnName, map.get("remindstart"));
  239. }
  240. if(map.get("remindend")!=null) {
  241. wrapper.le(columnName, map.get("remindend"));
  242. }
  243. int count = yuangongService.selectCount(wrapper);
  244. return R.ok().put("count", count);
  245. }
  246. }
  1. package com.controller;
  2. import java.text.SimpleDateFormat;
  3. import java.util.ArrayList;
  4. import java.util.Arrays;
  5. import java.util.Calendar;
  6. import java.util.Map;
  7. import java.util.HashMap;
  8. import java.util.Iterator;
  9. import java.util.Date;
  10. import java.util.List;
  11. import javax.servlet.http.HttpServletRequest;
  12. import com.utils.ValidatorUtils;
  13. import org.apache.commons.lang3.StringUtils;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.format.annotation.DateTimeFormat;
  16. import org.springframework.web.bind.annotation.PathVariable;
  17. import org.springframework.web.bind.annotation.RequestBody;
  18. import org.springframework.web.bind.annotation.RequestMapping;
  19. import org.springframework.web.bind.annotation.RequestParam;
  20. import org.springframework.web.bind.annotation.RestController;
  21. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  22. import com.baomidou.mybatisplus.mapper.Wrapper;
  23. import com.annotation.IgnoreAuth;
  24. import com.entity.GonggaoxinxiEntity;
  25. import com.entity.view.GonggaoxinxiView;
  26. import com.service.GonggaoxinxiService;
  27. import com.service.TokenService;
  28. import com.utils.PageUtils;
  29. import com.utils.R;
  30. import com.utils.MD5Util;
  31. import com.utils.MPUtil;
  32. import com.utils.CommonUtil;
  33. /**
  34. * 公告信息
  35. * 后端接口
  36. * @author
  37. * @email
  38. * @date 2021-04-02 14:39:25
  39. */
  40. @RestController
  41. @RequestMapping("/gonggaoxinxi")
  42. public class GonggaoxinxiController {
  43. @Autowired
  44. private GonggaoxinxiService gonggaoxinxiService;
  45. /**
  46. * 后端列表
  47. */
  48. @RequestMapping("/page")
  49. public R page(@RequestParam Map<String, Object> params,GonggaoxinxiEntity gonggaoxinxi,
  50. HttpServletRequest request){
  51. EntityWrapper<GonggaoxinxiEntity> ew = new EntityWrapper<GonggaoxinxiEntity>();
  52. PageUtils page = gonggaoxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gonggaoxinxi), params), params));
  53. return R.ok().put("data", page);
  54. }
  55. /**
  56. * 前端列表
  57. */
  58. @RequestMapping("/list")
  59. public R list(@RequestParam Map<String, Object> params,GonggaoxinxiEntity gonggaoxinxi, HttpServletRequest request){
  60. EntityWrapper<GonggaoxinxiEntity> ew = new EntityWrapper<GonggaoxinxiEntity>();
  61. PageUtils page = gonggaoxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gonggaoxinxi), params), params));
  62. return R.ok().put("data", page);
  63. }
  64. /**
  65. * 列表
  66. */
  67. @RequestMapping("/lists")
  68. public R list( GonggaoxinxiEntity gonggaoxinxi){
  69. EntityWrapper<GonggaoxinxiEntity> ew = new EntityWrapper<GonggaoxinxiEntity>();
  70. ew.allEq(MPUtil.allEQMapPre( gonggaoxinxi, "gonggaoxinxi"));
  71. return R.ok().put("data", gonggaoxinxiService.selectListView(ew));
  72. }
  73. /**
  74. * 查询
  75. */
  76. @RequestMapping("/query")
  77. public R query(GonggaoxinxiEntity gonggaoxinxi){
  78. EntityWrapper< GonggaoxinxiEntity> ew = new EntityWrapper< GonggaoxinxiEntity>();
  79. ew.allEq(MPUtil.allEQMapPre( gonggaoxinxi, "gonggaoxinxi"));
  80. GonggaoxinxiView gonggaoxinxiView = gonggaoxinxiService.selectView(ew);
  81. return R.ok("查询公告信息成功").put("data", gonggaoxinxiView);
  82. }
  83. /**
  84. * 后端详情
  85. */
  86. @RequestMapping("/info/{id}")
  87. public R info(@PathVariable("id") Long id){
  88. GonggaoxinxiEntity gonggaoxinxi = gonggaoxinxiService.selectById(id);
  89. return R.ok().put("data", gonggaoxinxi);
  90. }
  91. /**
  92. * 前端详情
  93. */
  94. @RequestMapping("/detail/{id}")
  95. public R detail(@PathVariable("id") Long id){
  96. GonggaoxinxiEntity gonggaoxinxi = gonggaoxinxiService.selectById(id);
  97. return R.ok().put("data", gonggaoxinxi);
  98. }
  99. /**
  100. * 后端保存
  101. */
  102. @RequestMapping("/save")
  103. public R save(@RequestBody GonggaoxinxiEntity gonggaoxinxi, HttpServletRequest request){
  104. gonggaoxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
  105. //ValidatorUtils.validateEntity(gonggaoxinxi);
  106. gonggaoxinxiService.insert(gonggaoxinxi);
  107. return R.ok();
  108. }
  109. /**
  110. * 前端保存
  111. */
  112. @RequestMapping("/add")
  113. public R add(@RequestBody GonggaoxinxiEntity gonggaoxinxi, HttpServletRequest request){
  114. gonggaoxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
  115. //ValidatorUtils.validateEntity(gonggaoxinxi);
  116. gonggaoxinxiService.insert(gonggaoxinxi);
  117. return R.ok();
  118. }
  119. /**
  120. * 修改
  121. */
  122. @RequestMapping("/update")
  123. public R update(@RequestBody GonggaoxinxiEntity gonggaoxinxi, HttpServletRequest request){
  124. //ValidatorUtils.validateEntity(gonggaoxinxi);
  125. gonggaoxinxiService.updateById(gonggaoxinxi);//全部更新
  126. return R.ok();
  127. }
  128. /**
  129. * 删除
  130. */
  131. @RequestMapping("/delete")
  132. public R delete(@RequestBody Long[] ids){
  133. gonggaoxinxiService.deleteBatchIds(Arrays.asList(ids));
  134. return R.ok();
  135. }
  136. /**
  137. * 提醒接口
  138. */
  139. @RequestMapping("/remind/{columnName}/{type}")
  140. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
  141. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
  142. map.put("column", columnName);
  143. map.put("type", type);
  144. if(type.equals("2")) {
  145. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  146. Calendar c = Calendar.getInstance();
  147. Date remindStartDate = null;
  148. Date remindEndDate = null;
  149. if(map.get("remindstart")!=null) {
  150. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
  151. c.setTime(new Date());
  152. c.add(Calendar.DAY_OF_MONTH,remindStart);
  153. remindStartDate = c.getTime();
  154. map.put("remindstart", sdf.format(remindStartDate));
  155. }
  156. if(map.get("remindend")!=null) {
  157. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
  158. c.setTime(new Date());
  159. c.add(Calendar.DAY_OF_MONTH,remindEnd);
  160. remindEndDate = c.getTime();
  161. map.put("remindend", sdf.format(remindEndDate));
  162. }
  163. }
  164. Wrapper<GonggaoxinxiEntity> wrapper = new EntityWrapper<GonggaoxinxiEntity>();
  165. if(map.get("remindstart")!=null) {
  166. wrapper.ge(columnName, map.get("remindstart"));
  167. }
  168. if(map.get("remindend")!=null) {
  169. wrapper.le(columnName, map.get("remindend"));
  170. }
  171. int count = gonggaoxinxiService.selectCount(wrapper);
  172. return R.ok().put("count", count);
  173. }
  174. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/845286
推荐阅读
相关标签
  

闽ICP备14008679号