当前位置:网站首页>基于SSM框架的文章管理系统
基于SSM框架的文章管理系统
2022-07-06 16:44:00 【biyezuopinvip】
资源下载地址:https://download.csdn.net/download/sheziqiong/85926871
资源下载地址:https://download.csdn.net/download/sheziqiong/85926871
简单的文章管理系统(增加留言回复功能)
采用editor
的Markdown富文本编辑器实现文章的编写,增加了留言回复功能,
目前仅主要实现了对文章的增删改查功能,项目后台页面使用了layui官网提供的后台模板。
注:本项目目前没有实现图片上传下载功能;采用MySQL建表来实现留言回复功能,这并不是一种合适的方式,如果有兴趣,
请移步去了解一下RabbitMQ消息组件
。如果是个人练习的小项目,本篇博文应该对你有所帮助。
关于项目:
环境:jdk1.8 + mysql5.7 + maven + tomcat8 + IDEA
后端:spring + springmvc + mybatis
前端:layui + bootstrap + editor(Markdown富文本编辑器)
数据库名称:leave_message
开始正题
项目目录结构
1. 创建表结构
create database leave_message character set utf8;
- admin表
create table admin(
a_id int primary key auto_increment,
a_name varchar(100),
a_password varchar(100)
)default charset = utf8;
- article表
create table article(
r_id int primary key auto_increment,
r_author varchar(100),
r_summary varchar(100),
r_content text,
)default charset = utf8;
- 留言表
create table words(
#留言id编号
lw_id int primary key auto_increment,
#留言人名字
lw_name varchar(100),
#留言时间
lw_date varchar(100),
#留言内容
lw_content varchar(100),
#给谁留言
lw_for_name varchar(100),
#在哪篇文章下留言
lw_for_article_id varchar(100)
)default charset = utf8;
- 回复表
create table reply(
#回复信息id编号
lr_id int primary key auto_increment,
#回复人名字
lr_name varchar(100),
#回复时间
lr_date varchar(100),
#回复内容
lr_content varchar(100),
#给谁回复
lr_for_name varchar(100),
#在哪个留言下的回复
lr_for_words varchar(100),
#在哪篇文章下的回复
lr_for_article_id varchar(100)
)default charset = utf8;
留言回复功能
上文已经说了,对于留言回复功能D额设计和其存在缺陷,详情请看:
项目效果截图
登录页(自己写的,感觉灰常好看了)
资源下载地址:https://download.csdn.net/download/sheziqiong/85926871
资源下载地址:https://download.csdn.net/download/sheziqiong/85926871
边栏推荐
- Google, Baidu and Yahoo are general search engines developed by Chinese companies_ Baidu search engine URL
- openresty ngx_ Lua subrequest
- Interesting wine culture
- Three sentences to briefly introduce subnet mask
- Quickly use various versions of PostgreSQL database in docker
- Huawei mate8 battery price_ Huawei mate8 charges very slowly after replacing the battery
- [vector retrieval research series] product introduction
- @TableId can‘t more than one in Class: “com.example.CloseContactSearcher.entity.Activity“.
- [2022 the finest in the whole network] how to test the interface test generally? Process and steps of interface test
- PXE server configuration
猜你喜欢
Liuyongxin report | microbiome data analysis and science communication (7:30 p.m.)
37 pages Digital Village revitalization intelligent agriculture Comprehensive Planning and Construction Scheme
Pytest multi process / multi thread execution test case
基于jsp+servlet+mysql框架的旅游管理系统【源码+数据库+报告】
app通用功能测试用例
uniapp实现从本地上传头像并显示,同时将头像转化为base64格式存储在mysql数据库中
DAY FOUR
What is AVL tree?
St table
Introduction to GPIO
随机推荐
1000 words selected - interface test basis
Automatic test tool katalon (WEB) test operation instructions
Leecode brushes questions to record interview questions 17.16 massagist
DAY FIVE
Clipboard management tool paste Chinese version
谷歌百度雅虎都是中国公司开发的通用搜索引擎_百度搜索引擎url
什么是响应式对象?响应式对象的创建过程?
How to use vector_ How to use vector pointer
Quickly use various versions of PostgreSQL database in docker
ldap创建公司组织、人员
What can the interactive slide screen demonstration bring to the enterprise exhibition hall
【向量检索研究系列】产品介绍
Google, Baidu and Yahoo are general search engines developed by Chinese companies_ Baidu search engine URL
openresty ngx_ Lua subrequest
pytest多进程/多线程执行测试用例
2022/2/11 summary
Building lease management system based on SSM framework
C语言输入/输出流和文件操作【二】
How about the order management of okcc call center
沉浸式投影在线下展示中的三大应用特点