QQ泡沫乐园 · 免费提供游戏辅助,破解软件,活动资讯,喜欢记得收藏哦!
综合软件_线报活动_游戏辅助_最新电影_最优质的的辅助分享平台

用Java开发的个人博客系统,写了这个PersonalBlog系统

网络 2022-12-25 05:06

1、写在上面

其实现今可以写博客的在线网站好多,有CSDN,有简书,甚至连GitHub都能写博客,而且还有Wordpress可以轻松打造个人博客网站,不过还是想弄个自己的个人博客网站,从头到尾自己搞的那个,就当是熟练下写项目的技能吧。于是就写了这个PersonalBlog系统。

2、项目简介 2.1 功能列举

PersonalBlog是用Java开发的个人博客系统,我开发这个项目最初的准备是先出一个原型,然后再不断改进,而原型的功能就参考了B站教程-SpringBoot博客,在教程中,作者以管理员和用户两个角色的需求列举了系统所必须的功能,在这种功能上添加了点个人思索,做了下边这个功能的思维导图:

后端管理包含三大块内容:博客的增删改查、分类的增删改查以及标签的增删改查。

前端展示主要负责博客的各类展示:所有博客展示、最新博客展示、按照分类展示以及根据标签展示等。

我相信好的博客用户看了肯定会想要说点哪些,因此评论功能是必不可少的,这点教程作者跟大多数个人博客的作者一样,我称之为非注册式评论,就是用户无需注册,只须要提供爱称和邮箱,即可对博客进行评论,但是我认为这对后续回复评论不是很友好,所以这儿我采用注册式评论,用户须要先注册登入一个帐号就能进行评论,同时这也是我的一点期望,打算之后能在个人博客上添加站内短信的功能,或者即时通信。

2.2 技术框架

开发PersonalBlog所采用的技术框架如下:

其实俺们这个博客系统是个小项目,用不着SpringSecurity,不过我想着平时下班用不到这个框架,就加起来练练手,说实话,要不是一边百度一边写项目,我还真搞不定这玩意。

2.3 开发工具 3、启动教程 3.1 源码导出

我的源码地址:

工具安装我就不多说了,这里默认你们早已会用上述开发工具了,首先你们先把源码下载出来,因为我是用IDEA开发的,大家可以直接用IDEA打开,然后自行更改Maven地址为大家本地的Maven地址:

如果JDK对不上,也自行更改:

3.2 环境安装

项目启动须要联接MySQL,如果你们笔记本上没有安装MySQL,可以参考这篇博客——使用Docker搭建MySQL服务,安装的时侯请安装MySQL8.0以上的版本。

安装完MySQL8.0后,在如下目录,修改文件application-dev.properties中MySQL联接地址。

有了MySQL后,运行下述SQL脚本,生成对应数据库、表结构以及数据:

create database personal_blog;

php个人博客_优秀个人博客_个人博客系统有哪些

use personal_blog; drop table if exists `user`; create table `user`( `id` int auto_increment not null primary key comment "唯一索引", `account` varchar(60) not null comment "账号", `password` varchar(255) not null comment "密码", `nickname` varchar(60) not null comment "昵称", `email` varchar(100) not null comment "邮箱", `picture` varchar(500) not null default("https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3317240047,2073069235&fm=11&gp=0.jpg") comment "头像", `enabled` tinyint(1) not null default(1) comment "用户状态", `create_time` datetime not null comment "创建时间", `update_time` datetime not null comment "更新时间" ); drop table if exists `role`; create table `role`( `id` int auto_increment not null primary key comment "唯一索引", `name` varchar(20) not null comment "英文角色名", `name_zh` varchar(20) not null comment "中文角色名" ); drop table if exists `user_role_relationship`; create table `user_role_relationship`( `id` int auto_increment not null primary key comment "唯一索引", `user_id` int not null comment "用户id", `role_id` int not null comment "角色id" ); insert into user(`username`,`password`,`nickname`,`email`,`create_time`,`update_time`) values ("admin","$2a$10$PbVanJ6b5WCJT.d5s9ztS.AZBLp8exY.bhQMDUVd7ql4/GOaS8G1a","管理员","2425235803@qq.com",now(),now()); insert into user(`username`,`password`,`nickname`,`email`,`create_time`,`update_time`) values ("user","$2a$10$mZedJKMamVUuTK5ODtbXF.UusRQanWUBHSpHdZbrmsCWn9VYs2tFW","用户","2395830314@qq.com",now(),now()); insert into role(`name`,`name_zh`) values ("ROLE_ADMIN","管理员"); insert into role(`name`,`name_zh`) values ("ROLE_READER","读者"); insert into user_role_relationship(`user_id`,`role_id`) values (1,1); insert into user_role_relationship(`user_id`,`role_id`) values (2,2); drop table if exists `post`; create table `post`( `id` int auto_increment not null primary key comment "唯一索引", `title` text not null comment "标题", `user_id` int not null comment "用户id", `first_picture` varchar(500) not null default("https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3317240047,2073069235&fm=11&gp=0.jpg") comment "首图", `summary` text not null comment "概述", `mark` int not null default(0) comment "标记", `content` longtext comment "正文", `recommend_status` tinyint(1) not null default(0) comment "推荐状态", `reward_status` tinyint(1) not null default(0) comment "打赏状态", `copyright_status` tinyint(1) not null default(0) comment "版权状态", `comment_status` tinyint(1) not null default(0) comment "评论状态", `publish_status` tinyint(1) not null default(0) comment "发布状态", `read_count` int not null default(0) comment "阅读量", `create_time` datetime not null comment "创建时间", `update_time` datetime not null comment "更新时间" ); drop table if exists `comment`; create table `comment`( `id` int auto_increment not null primary key comment "唯一索引", `user_id` int not null comment "用户id", `post_id` int not null comment "文章id", `content` text not null comment "评论内容", `state` int not null default(1) comment "审核状态", `upvote_count` int not null default(0) comment "点赞数", `create_time` datetime not null comment "创建时间" ); drop table if exists `comment_reply`; create table `comment_reply`( `id` int auto_increment not null primary key comment "唯一索引", `comment_id` int not null comment "被回复评论id", `user_id` int not null comment "用户id", `reply_user_id` int not null comment "被回复用户id", `content` text not null comment "评论内容", `state` int not null default(1) comment "审核状态", `upvote_count` int not null default(0) comment "点赞数", `create_time` datetime not null comment "创建时间" ); drop table if exists `label`; create table `label`( `id` int auto_increment not null primary key comment "唯一索引", `label_name` varchar(20) not null comment "标签名" ); drop table if exists `post_label_relationship`; create table `post_label_relationship`( `id` int auto_increment not null primary key comment "唯一索引", `post_id` int not null comment "文章id", `label_id` int not null comment "标签id" );

个人博客系统有哪些_优秀个人博客_php个人博客

drop table if exists `clazz`; create table `clazz`( `id` int auto_increment not null primary key comment "唯一索引", `clazz_name` varchar(20) not null comment "分类名" ); drop table if exists `post_clazz_relationship`; create table `post_clazz_relationship`( `id` int auto_increment not null primary key comment "唯一索引", `post_id` int not null comment "文章id", `clazz_id` int not null comment "分类id" );

3.3 启动项目

直接点击IDEA中启动按键,如下:

然后在浏览器中输入:8080/,即可访问到如下页面:

给的SQL句子中没有插入博客数据,所以看见的页面会跟我的截图不太一样,大家可以访问:8080/admin/blog/list这个页面,点击图中红框里的按键新增博客【登录帐户:admin;登录密码:admin】:

4、博客跳转

个人博客系统之框架搭建

5、写在前面

PersonalBlog还只是个原型,大家有哪些问题还请指下来,有哪些优化建议也请提下来。