• 基于java+ssm+vue+mysql的网络教学系统


    项目介绍

    随着网络技术发展人们对学习的要求也越来越高,尤其是在这一个知识大爆炸的时代,如何能够更快的获取更多的知识,是很多人梦寐以求的事情。尤其是对一些在校的大学生来说他们现在最重要的一个事情就是学习,但是很多时候获取知识的途径比较单一,只能够通过老师在课堂上讲解的内容进行学习,这远远不能满足当代大学生对学习知识的渴望。如何能够通过网络更加快速的获取学习资源和进行在线交流,是当代大学生比较关注的一个问题。为此,我开发了在线学习系统,旨在让当代大学生能够有一个更好的学习交流平台。

    在线学习系统是一个综合性的学习和交流平台,它包括了用户在线注册,登录,查看新闻信息,在线下载资料,在线进行视频学习,以及作业功能。通过这些功能,基本上满足了当代大学生对知识的渴望,以及对学习的多样化。系统采用java语言开发,后端采用ssm框架,前端采用vue技术,数据库采用mysql进行数据存储。

    开发环境

    开发语言:Java
    数据库 :MySQL
    系统架构:B/S
    后端框架:SSM
    前端框架:Vue
    开发工具:IDEA或者Eclipse,JDK1.8,Maven
    支持定做:Java/PHP/Python/Android/小程序/Vue/爬虫/C#/Asp.net

    系统截图

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    部分代码

    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.NewsEntity;
    import com.entity.view.NewsView;
    
    import com.service.NewsService;
    import com.service.TokenService;
    import com.utils.PageUtils;
    import com.utils.R;
    import com.utils.MD5Util;
    import com.utils.MPUtil;
    import com.utils.CommonUtil;
    
    
    /**
     * 公告信息
     * 后端接口
     */
    @RestController
    @RequestMapping("/news")
    public class NewsController {
        @Autowired
        private NewsService newsService;
    
    
    
        /**
         * 后端列表
         */
        @RequestMapping("/page")
        public R page(@RequestParam Map<String, Object> params,NewsEntity news,
    		HttpServletRequest request){
            EntityWrapper<NewsEntity> ew = new EntityWrapper<NewsEntity>();
    		PageUtils page = newsService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, news), params), params));
    
            return R.ok().put("data", page);
        }
    
        /**
         * 前端列表
         */
    	@IgnoreAuth
        @RequestMapping("/list")
        public R list(@RequestParam Map<String, Object> params,NewsEntity news, HttpServletRequest request){
            EntityWrapper<NewsEntity> ew = new EntityWrapper<NewsEntity>();
    		PageUtils page = newsService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, news), params), params));
            return R.ok().put("data", page);
        }
    
    	/**
         * 列表
         */
        @RequestMapping("/lists")
        public R list( NewsEntity news){
           	EntityWrapper<NewsEntity> ew = new EntityWrapper<NewsEntity>();
          	ew.allEq(MPUtil.allEQMapPre( news, "news"));
            return R.ok().put("data", newsService.selectListView(ew));
        }
    
    	 /**
         * 查询
         */
        @RequestMapping("/query")
        public R query(NewsEntity news){
            EntityWrapper< NewsEntity> ew = new EntityWrapper< NewsEntity>();
     		ew.allEq(MPUtil.allEQMapPre( news, "news"));
    		NewsView newsView =  newsService.selectView(ew);
    		return R.ok("查询汉服资讯成功").put("data", newsView);
        }
    
        /**
         * 后端详情
         */
        @RequestMapping("/info/{id}")
        public R info(@PathVariable("id") Long id){
            NewsEntity news = newsService.selectById(id);
            return R.ok().put("data", news);
        }
    
        /**
         * 前端详情
         */
    	@IgnoreAuth
        @RequestMapping("/detail/{id}")
        public R detail(@PathVariable("id") Long id){
            NewsEntity news = newsService.selectById(id);
            return R.ok().put("data", news);
        }
    
    
    
    
        /**
         * 后端保存
         */
        @RequestMapping("/save")
        public R save(@RequestBody NewsEntity news, HttpServletRequest request){
        	news.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
        	//ValidatorUtils.validateEntity(news);
            newsService.insert(news);
            return R.ok();
        }
    
        /**
         * 前端保存
         */
        @RequestMapping("/add")
        public R add(@RequestBody NewsEntity news, HttpServletRequest request){
        	news.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
        	//ValidatorUtils.validateEntity(news);
            newsService.insert(news);
            return R.ok();
        }
    
        /**
         * 修改
         */
        @RequestMapping("/update")
        public R update(@RequestBody NewsEntity news, HttpServletRequest request){
            //ValidatorUtils.validateEntity(news);
            newsService.updateById(news);//全部更新
            return R.ok();
        }
    
    
        /**
         * 删除
         */
        @RequestMapping("/delete")
        public R delete(@RequestBody Long[] ids){
            newsService.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<NewsEntity> wrapper = new EntityWrapper<NewsEntity>();
    		if(map.get("remindstart")!=null) {
    			wrapper.ge(columnName, map.get("remindstart"));
    		}
    		if(map.get("remindend")!=null) {
    			wrapper.le(columnName, map.get("remindend"));
    		}
    
    
    		int count = newsService.selectCount(wrapper);
    		return R.ok().put("count", count);
    	}
    
    
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
  • 相关阅读:
    Qt动态链接库
    vue3中若v-model绑定的响应字段出现三级,该如何实现rules验证规则
    灰色GM(1,1)模型及其在电力负荷预测中的应用附Matlab代码
    动态链接库(扩展)--调用约定
    一盏茶的功夫帮你彻底搞懂JavaScript异步编程从回调地狱到async/await
    虚幻4学习笔记(14)界面切换、局域网联机
    配置Sublime作为Python的编辑器
    linux下离线安装JDK,GeoServer,tomcat,nginx,redis,rabbitmq,postgresql。
    Opencv——图像添加椒盐噪声、高斯滤波去除噪声原理及手写Python代码实现
    县域农牧业信息化项目建设技术解决方案(完整版本)
  • 原文地址:https://blog.csdn.net/weixin_64561342/article/details/128179035