• 基于springboot+vue的信息技术知识赛系统


    博主主页猫头鹰源码

    博主简介:Java领域优质创作者、CSDN博客专家、公司架构师、全网粉丝5万+、专注Java技术领域和毕业设计项目实战

    主要内容:毕业设计(Javaweb项目|小程序等)、简历模板、学习资料、面试题库、技术咨询

    文末联系获取

    项目介绍: 

    本系统适合选题:信息技术、知识赛、知识、前后端分离等。系统采用springboot+vue整合开发,前端框架主要使用了element-ui框架、数据层采用mybatis,功能齐全,界面美观。

    功能介绍:

    系统包含技术:

    后端:springboot,mybatis
    前端:element-ui、js、css等
    开发工具:idea/vscode
    数据库:mysql 5.7
    JDK版本:jdk1.8

    部分截图说明:

    下面是首页

    在线学习

    详情

    赛事论坛

    赛事信息

    赛事详情

    测券列表

    登录

    赛事类型管理

    赛事信息管理

    在线学习管理

    赛事论坛管理

    部分代码:

    1. /**
    2. * 后端列表
    3. */
    4. @RequestMapping("/page")
    5. @IgnoreAuth
    6. public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
    7. logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
    8. if(params.get("orderBy")==null || params.get("orderBy")==""){
    9. params.put("orderBy","id");
    10. }
    11. PageUtils page = dictionaryService.queryPage(params);
    12. //字典表数据转换
    13. List<DictionaryView> list =(List<DictionaryView>)page.getList();
    14. for(DictionaryView c:list){
    15. //修改对应字典表字段
    16. dictionaryService.dictionaryConvert(c, request);
    17. }
    18. return R.ok().put("data", page);
    19. }
    20. /**
    21. * 后端详情
    22. */
    23. @RequestMapping("/info/{id}")
    24. public R info(@PathVariable("id") Long id, HttpServletRequest request){
    25. logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
    26. DictionaryEntity dictionary = dictionaryService.selectById(id);
    27. if(dictionary !=null){
    28. //entity转view
    29. DictionaryView view = new DictionaryView();
    30. BeanUtils.copyProperties( dictionary , view );//把实体数据重构到view中
    31. //修改对应字典表字段
    32. dictionaryService.dictionaryConvert(view, request);
    33. return R.ok().put("data", view);
    34. }else {
    35. return R.error(511,"查不到数据");
    36. }
    37. }
    38. /**
    39. * 后端保存
    40. */
    41. @RequestMapping("/save")
    42. public R save(@RequestBody DictionaryEntity dictionary, HttpServletRequest request){
    43. logger.debug("save方法:,,Controller:{},,dictionary:{}",this.getClass().getName(),dictionary.toString());
    44. String role = String.valueOf(request.getSession().getAttribute("role"));
    45. if(false)
    46. return R.error(511,"永远不会进入");
    47. Wrapper<DictionaryEntity> queryWrapper = new EntityWrapper<DictionaryEntity>()
    48. .eq("dic_code", dictionary.getDicCode())
    49. .eq("index_name", dictionary.getIndexName())
    50. ;
    51. if(dictionary.getDicCode().contains("_erji_types")){
    52. queryWrapper.eq("super_id",dictionary.getSuperId());
    53. }
    54. logger.info("sql语句:"+queryWrapper.getSqlSegment());
    55. DictionaryEntity dictionaryEntity = dictionaryService.selectOne(queryWrapper);
    56. if(dictionaryEntity==null){
    57. dictionary.setCreateTime(new Date());
    58. dictionaryService.insert(dictionary);
    59. //字典表新增数据,把数据再重新查出,放入监听器中
    60. List<DictionaryEntity> dictionaryEntities = dictionaryService.selectList(new EntityWrapper<DictionaryEntity>());
    61. ServletContext servletContext = request.getServletContext();
    62. Map<String, Map<Integer,String>> map = new HashMap<>();
    63. for(DictionaryEntity d :dictionaryEntities){
    64. Map<Integer, String> m = map.get(d.getDicCode());
    65. if(m ==null || m.isEmpty()){
    66. m = new HashMap<>();
    67. }
    68. m.put(d.getCodeIndex(),d.getIndexName());
    69. map.put(d.getDicCode(),m);
    70. }
    71. servletContext.setAttribute("dictionaryMap",map);
    72. return R.ok();
    73. }else {
    74. return R.error(511,"表中有相同数据");
    75. }
    76. }
    77. /**
    78. * 后端修改
    79. */
    80. @RequestMapping("/update")
    81. public R update(@RequestBody DictionaryEntity dictionary, HttpServletRequest request){
    82. logger.debug("update方法:,,Controller:{},,dictionary:{}",this.getClass().getName(),dictionary.toString());
    83. String role = String.valueOf(request.getSession().getAttribute("role"));
    84. // if(false)
    85. // return R.error(511,"永远不会进入");
    86. //根据字段查询是否有相同数据
    87. Wrapper<DictionaryEntity> queryWrapper = new EntityWrapper<DictionaryEntity>()
    88. .notIn("id",dictionary.getId())
    89. .eq("dic_code", dictionary.getDicCode())
    90. .eq("index_name", dictionary.getIndexName())
    91. ;
    92. if(dictionary.getDicCode().contains("_erji_types")){
    93. queryWrapper.eq("super_id",dictionary.getSuperId());
    94. }
    95. logger.info("sql语句:"+queryWrapper.getSqlSegment());
    96. DictionaryEntity dictionaryEntity = dictionaryService.selectOne(queryWrapper);
    97. if(dictionaryEntity==null){
    98. dictionaryService.updateById(dictionary);//根据id更新
    99. //如果字典表修改数据的话,把数据再重新查出,放入监听器中
    100. List<DictionaryEntity> dictionaryEntities = dictionaryService.selectList(new EntityWrapper<DictionaryEntity>());
    101. ServletContext servletContext = request.getServletContext();
    102. Map<String, Map<Integer,String>> map = new HashMap<>();
    103. for(DictionaryEntity d :dictionaryEntities){
    104. Map<Integer, String> m = map.get(d.getDicCode());
    105. if(m ==null || m.isEmpty()){
    106. m = new HashMap<>();
    107. }
    108. m.put(d.getCodeIndex(),d.getIndexName());
    109. map.put(d.getDicCode(),m);
    110. }
    111. servletContext.setAttribute("dictionaryMap",map);
    112. return R.ok();
    113. }else {
    114. return R.error(511,"表中有相同数据");
    115. }
    116. }

    以上就是部分功能展示,从整体上来看,本系统功能是十分完整的,界面设计简洁大方,交互友好,数据库设计也很合理,规模适中,代码工整,清晰,适合学习使用。

    好了,今天就到这儿吧,小伙伴们点赞、收藏、评论,一键三连走起呀,下期见~~

  • 相关阅读:
    VBA技术资料MF59:从二维变体数组中删除一行数据
    计算机基础知识35
    WindTerm:新一代开源免费的终端工具,GitHub星标6.6k+,太酷了
    十三、函数式编程(1)
    关于#javascript#的问题:怎么讲age的值打印到年龄那一栏上
    Acwing 907. 区间覆盖
    Power BI 傻瓜入门 8. 制作数据模型
    jquery列表顺序倒转排序效果
    【Godot】数据响应的方式执行功能
    [ vulhub漏洞复现篇 ] Apache Flink 文件上传漏洞 (CVE-2020-17518)
  • 原文地址:https://blog.csdn.net/mtyedu/article/details/133212009