博主介绍:
大家好,我是一名在Java圈混迹十余年的程序员,精通Java编程语言,同时也熟练掌握微信小程序、Python和Android等技术,能够为大家提供全方位的技术支持和交流。
我擅长在JavaWeb、SSH、SSM、SpringBoot等框架下进行项目开发,具有丰富的项目经验和开发技能。我的代码风格规范、优美、易读性强,同时也注重性能优化、代码重构等方面的实践和经验总结。
我有丰富的成品Java毕设项目经验,能够为学生提供各类个性化的开题框架和实际运作方案。同时我也提供相关的学习资料、程序开发、技术解答、代码讲解、文档报告等专业服务。🍅文末获取源码联系🍅
👇🏻 精彩专栏推荐订阅👇🏻 不然下次找不到哟
Java项目精品实战案例(300套)
在线BLOG网源码下载地址:
https://download.csdn.net/download/weixin_54828627/87720539
一、效果演示
基于springboot+vue的在线blog博客演示视频
二、前言介绍
社会的发展和科学技术的进步,互联网技术越来越受欢迎。网络计算机的生活方式逐渐受到广大人民群众的喜爱,也逐渐进入了每个用户的使用。互联网具有便利性,速度快,效率高,成本低等优点。 因此,构建符合自己要求的操作系统是非常有意义的。
三、主要技术
技术名 | 作用 |
---|---|
SpringBoot | 后端框架 |
Vue | 前端框架 |
MySQL | 数据库 |
四、系统设计(部分)
4.1、主要功能模块设计
五、功能截图
5.1、管理员功能模块
管理员通过点击后台管理,进入页面可以进行个人中心、个人信息、用户管理、博客标签管理、博客分类管理、博客管理、图库相册管理、论坛管理、系统管理等功能模块,进行相对应操作,如图5-1所示。
图5-1管理员登录功能界面
用户管理
图5-2用户信息界面
博客分类管理
图5-3博客分类管理界面
博客管理
图5-4博客信息界面
图库相册管理
图5-5图库相册管理管理界面
系统管理
图5-6新闻资讯管理管理界面
5.2、用户前后功能模块
用户通过点击前台管理,进入页面可以进行注册、登录、能模块,进行相对应操作,用户并可以对个人信息进行添加、删除、修改以及查看,如图5-7所示。
图5-7用户注册登录功能界面
用户经过登录前台首页查看通过博客标签、博客分类管理、博客信息、图库相册、个人中心、我的收藏进行查看,如图5-8所示。
图5-8前台首页管理界面
博客标签
图5-9博客标签管理界面
博客管理
图5-10博客信息管理界面
论坛管理
图5-11论坛管理界面
个人中心
图5-12个人中心理界面
博客管理
图5-13博客管理界面
图库相册管理
图5-14图库相册管理界面图
我的收藏
图5-15我的收藏界面图
六、数据库设计(部分)
数据库概念模型设计可以通过E-R图描述现实世界的概念模型。系统的E-R图显示了系统中实体之间的链接。而且Mysql数据库是自我保护能力比较强的数据库,下图主要是对数据库实体的E-R图:
管理员信息实体属性图如图6-2所示。
图6-2管理员信息实体属性图
用户信息实体属性图如图6-3所示。
图6-3用户信息实体属性图
博客信息实体属性图如图6-4所示。
图6-4博客信息实体属性图
图库相册管理实体属性图如图6-5所示。
图6-5图库相册管理实体属性图
七、代码参考
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.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.BokeEntity;
import com.entity.view.BokeView;
import com.service.BokeService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MPUtil;
import com.utils.CommonUtil;
/**
* 博客
* 后端接口
* @author
* @email
* @date 2020-11-09 16:15:06
*/
@RestController
@RequestMapping("/boke")
public class BokeController {
@Autowired
private BokeService bokeService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,BokeEntity boke, HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yonghu")) {
boke.setYonghuming((String)request.getSession().getAttribute("username"));
}
EntityWrapper<BokeEntity> ew = new EntityWrapper<BokeEntity>();
PageUtils page = bokeService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, boke), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,BokeEntity boke, HttpServletRequest request){
EntityWrapper<BokeEntity> ew = new EntityWrapper<BokeEntity>();
PageUtils page = bokeService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, boke), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( BokeEntity boke){
EntityWrapper<BokeEntity> ew = new EntityWrapper<BokeEntity>();
ew.allEq(MPUtil.allEQMapPre( boke, "boke"));
return R.ok().put("data", bokeService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(BokeEntity boke){
EntityWrapper< BokeEntity> ew = new EntityWrapper< BokeEntity>();
ew.allEq(MPUtil.allEQMapPre( boke, "boke"));
BokeView bokeView = bokeService.selectView(ew);
return R.ok("查询博客成功").put("data", bokeView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") String id){
BokeEntity boke = bokeService.selectById(id);
return R.ok().put("data", boke);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") String id){
BokeEntity boke = bokeService.selectById(id);
return R.ok().put("data", boke);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody BokeEntity boke, HttpServletRequest request){
boke.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(boke);
bokeService.insert(boke);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody BokeEntity boke, HttpServletRequest request){
boke.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(boke);
bokeService.insert(boke);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody BokeEntity boke, HttpServletRequest request){
//ValidatorUtils.validateEntity(boke);
bokeService.updateById(boke);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
bokeService.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<BokeEntity> wrapper = new EntityWrapper<BokeEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yonghu")) {
wrapper.eq("yonghuming", (String)request.getSession().getAttribute("username"));
}
int count = bokeService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
八、技术交流
大家点赞、收藏、关注、评论啦 、查看文章结尾👇🏻获取联系方式👇🏻
精彩专栏推荐订阅:在下方专栏👇🏻👇🏻👇🏻👇🏻
Java项目精品实战案例(300套)