大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
🎀 Python毕业设计
🌎微信小程序毕业设计
开发环境
- 开发语言:Java
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/m0_46388260/89271103
论文目录
【如需全文请按文末获取联系】
一、项目简介
功能要求:可以管理首页、个人中心、用户管理、舞蹈知识管理、舞蹈发布管理、用户分享管理、舞蹈考级管理、舞蹈论坛、我的收藏管理、系统管理等功能模块。
二、系统设计
2.1软件功能模块设计
系统结构图,如图4-3所示。
2.2数据库设计
用户管理属性图如图4-5所示。
舞蹈发布管理实体属性图如图4-6所示。
用户分享管理实体属性图如图4-7所示。
舞蹈考级管理实体属性图如图4-8所示。
三、系统项目部分截图
3.1管理员功能模块
管理员登录,通过填写用户名、密码、角色等信息,输入完成后选择登录即可进入舞蹈网站,如图5-1所示。
管理员登录进入舞蹈网站可以查看首页、个人中心、用户管理、舞蹈知识管理、舞蹈发布管理、用户分享管理、舞蹈考级管理、舞蹈论坛、我的收藏管理、系统管理等内容,如图5-2所示。
舞蹈知识管理,在舞蹈知识管理页面可以查看标题、图片、发布时间、发展历史、未来发展等信息,并可根据需要对舞蹈知识管理进行详情,修改、查看评论、删除等操作,如图5-4所示。
舞蹈考级管理,在舞蹈考级管理页面可以查看考级标准、考级信息、报考时间、注意事项、代理报名、照片等信息,并可根据需要对舞蹈考级管理进行详情,修改,删除等操作,如图5-7所示。
3.2用户功能模块
用户分享管理,在用户分享管理页面可以查看账号、姓名、舞蹈标题、舞种图片、舞蹈等级、视频、舞蹈介绍、舞蹈分享、咨询等信息,并可根据需要对用户分享管理进行详情查看评论等操作,如图5-11所示。
3.3前台首页功能模块
舞蹈网站,在舞蹈网站前台首页可以查看首页、舞蹈知识、舞蹈发布、用户分享、舞蹈考级、舞蹈论坛、舞蹈咨询、个人中心、后台管理等内容,如图5-12所示。
舞蹈知识,在舞蹈知识页面可以查看标题、图片、发布时间、发展历史、未来发展、点击次数等信息进行点我收藏操作,如图5-14所示。
个人中心,在个人中心页面可以填写账号、密码、姓名、照片、性别、手机、邮箱、身份证等信息进行更新信息、退出登录操作,如图5-17所示。
四、部分核心代码
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.WudaofabuEntity;
import com.entity.view.WudaofabuView;import com.service.WudaofabuService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;/*** 舞蹈发布* 后端接口* @author * @email * @date 2021-03-31 15:31:46*/
@RestController
@RequestMapping("/wudaofabu")
public class WudaofabuController {@Autowiredprivate WudaofabuService wudaofabuService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,WudaofabuEntity wudaofabu, HttpServletRequest request){EntityWrapper<WudaofabuEntity> ew = new EntityWrapper<WudaofabuEntity>();PageUtils page = wudaofabuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, wudaofabu), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,WudaofabuEntity wudaofabu, HttpServletRequest request){EntityWrapper<WudaofabuEntity> ew = new EntityWrapper<WudaofabuEntity>();PageUtils page = wudaofabuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, wudaofabu), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( WudaofabuEntity wudaofabu){EntityWrapper<WudaofabuEntity> ew = new EntityWrapper<WudaofabuEntity>();ew.allEq(MPUtil.allEQMapPre( wudaofabu, "wudaofabu")); return R.ok().put("data", wudaofabuService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(WudaofabuEntity wudaofabu){EntityWrapper< WudaofabuEntity> ew = new EntityWrapper< WudaofabuEntity>();ew.allEq(MPUtil.allEQMapPre( wudaofabu, "wudaofabu")); WudaofabuView wudaofabuView = wudaofabuService.selectView(ew);return R.ok("查询舞蹈发布成功").put("data", wudaofabuView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){WudaofabuEntity wudaofabu = wudaofabuService.selectById(id);wudaofabu.setClicknum(wudaofabu.getClicknum()+1);wudaofabu.setClicktime(new Date());wudaofabuService.updateById(wudaofabu);return R.ok().put("data", wudaofabu);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){WudaofabuEntity wudaofabu = wudaofabuService.selectById(id);wudaofabu.setClicknum(wudaofabu.getClicknum()+1);wudaofabu.setClicktime(new Date());wudaofabuService.updateById(wudaofabu);return R.ok().put("data", wudaofabu);}/*** 赞或踩*/@RequestMapping("/thumbsup/{id}")public R thumbsup(@PathVariable("id") String id,String type){WudaofabuEntity wudaofabu = wudaofabuService.selectById(id);if(type.equals("1")) {wudaofabu.setThumbsupnum(wudaofabu.getThumbsupnum()+1);} else {wudaofabu.setCrazilynum(wudaofabu.getCrazilynum()+1);}wudaofabuService.updateById(wudaofabu);return R.ok();}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody WudaofabuEntity wudaofabu, HttpServletRequest request){wudaofabu.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(wudaofabu);wudaofabuService.insert(wudaofabu);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody WudaofabuEntity wudaofabu, HttpServletRequest request){wudaofabu.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(wudaofabu);wudaofabuService.insert(wudaofabu);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody WudaofabuEntity wudaofabu, HttpServletRequest request){//ValidatorUtils.validateEntity(wudaofabu);wudaofabuService.updateById(wudaofabu);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){wudaofabuService.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<WudaofabuEntity> wrapper = new EntityWrapper<WudaofabuEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}int count = wudaofabuService.selectCount(wrapper);return R.ok().put("count", count);}/*** 前端智能排序*/@IgnoreAuth@RequestMapping("/autoSort")public R autoSort(@RequestParam Map<String, Object> params,WudaofabuEntity wudaofabu, HttpServletRequest request,String pre){EntityWrapper<WudaofabuEntity> ew = new EntityWrapper<WudaofabuEntity>();Map<String, Object> newMap = new HashMap<String, Object>();Map<String, Object> param = new HashMap<String, Object>();Iterator<Map.Entry<String, Object>> it = param.entrySet().iterator();while (it.hasNext()) {Map.Entry<String, Object> entry = it.next();String key = entry.getKey();String newKey = entry.getKey();if (pre.endsWith(".")) {newMap.put(pre + newKey, entry.getValue());} else if (StringUtils.isEmpty(pre)) {newMap.put(newKey, entry.getValue());} else {newMap.put(pre + "." + newKey, entry.getValue());}}params.put("sort", "clicknum");params.put("order", "desc");PageUtils page = wudaofabuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, wudaofabu), params), params));return R.ok().put("data", page);}}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。