当前位置:网站首页>Article management system based on SSM framework
Article management system based on SSM framework
2022-07-07 00:33:00 【biyezuopinvip】
Resource download address :https://download.csdn.net/download/sheziqiong/85926871
Resource download address :https://download.csdn.net/download/sheziqiong/85926871
Simple article management system ( Add message reply function )
use editor Of Markdown The rich text editor realizes the writing of articles , Added message reply function ,
At present, it mainly realizes the function of adding, deleting, modifying and checking articles , The project background page uses layui The background template provided by the official website .
notes : At present, this project does not realize the function of uploading and downloading pictures ; use MySQL Create a table to realize the message reply function , This is not a suitable way , If you are interested ,
Please step by step to find out RabbitMQ Message component . If it is a small project of personal practice , This blog post should help you .
About the project :
Environmental Science :jdk1.8 + mysql5.7 + maven + tomcat8 + IDEA
Back end :spring + springmvc + mybatis
front end :layui + bootstrap + editor(Markdown Rich text editor )
Database name :leave_message
Get down to business
Project directory structure

1. Create a table structure
create database leave_message character set utf8;
- admin surface
create table admin(
a_id int primary key auto_increment,
a_name varchar(100),
a_password varchar(100)
)default charset = utf8;
- article surface
create table article(
r_id int primary key auto_increment,
r_author varchar(100),
r_summary varchar(100),
r_content text,
)default charset = utf8;
- guestbook
create table words(
# Leaving a message. id Number
lw_id int primary key auto_increment,
# The name of the person leaving the message
lw_name varchar(100),
# Message time
lw_date varchar(100),
# Message content
lw_content varchar(100),
# For whom to leave a message?
lw_for_name varchar(100),
# Where to leave a message
lw_for_article_id varchar(100)
)default charset = utf8;
- Reply table
create table reply(
# Reply message id Number
lr_id int primary key auto_increment,
# Name of the respondent
lr_name varchar(100),
# Reply time
lr_date varchar(100),
# Reply content
lr_content varchar(100),
# Reply to whom
lr_for_name varchar(100),
# Under which message did you reply
lr_for_words varchar(100),
# In which article did you reply
lr_for_article_id varchar(100)
)default charset = utf8;
Message reply function
As mentioned above , For the message reply function D The design and its defects , Details please see :

Screenshot of project effect
The login page ( His writing , I feel gray is often beautiful )





Resource download address :https://download.csdn.net/download/sheziqiong/85926871
Resource download address :https://download.csdn.net/download/sheziqiong/85926871
边栏推荐
- PostgreSQL highly available repmgr (1 master 2 slave +1witness) + pgpool II realizes master-slave switching + read-write separation
- Use type aliases in typescript
- DAY FIVE
- DAY FOUR
- 基于SSM框架的文章管理系统
- Huawei mate8 battery price_ Huawei mate8 charges very slowly after replacing the battery
- VTK volume rendering program design of 3D scanned volume data
- Google, Baidu and Yahoo are general search engines developed by Chinese companies_ Baidu search engine URL
- C语言输入/输出流和文件操作【二】
- Lombok 同时使⽤ @Data 和 @Builder 的坑,你中招没?
猜你喜欢

Jenkins' user credentials plug-in installation

2022/2/10 summary

一图看懂对程序员的误解:西方程序员眼中的中国程序员

Idea automatically imports and deletes package settings

Core knowledge of distributed cache

1000 words selected - interface test basis

Three application characteristics of immersive projection in offline display

What is a responsive object? How to create a responsive object?

陀螺仪的工作原理

Data analysis course notes (V) common statistical methods, data and spelling, index and composite index
随机推荐
DAY SIX
基于GO语言实现的X.509证书
TypeScript中使用类型别名
Uniapp uploads and displays avatars locally, and converts avatars into Base64 format and stores them in MySQL database
【向量检索研究系列】产品介绍
Racher integrates LDAP to realize unified account login
MIT 6.824 - raft Student Guide
2022 PMP project management examination agile knowledge points (9)
rancher集成ldap,实现统一账号登录
JWT signature does not match locally computed signature. JWT validity cannot be asserted and should
Use package FY in Oracle_ Recover_ Data. PCK to recover the table of truncate misoperation
Liuyongxin report | microbiome data analysis and science communication (7:30 p.m.)
How to set encoding in idea
The way of intelligent operation and maintenance application, bid farewell to the crisis of enterprise digital transformation
智能运维应用之道,告别企业数字化转型危机
A way of writing SQL, update when matching, or insert
[CVPR 2022] target detection sota:dino: Detr with improved detecting anchor boxes for end to end object detection
How about the order management of okcc call center
QT tutorial: creating the first QT program
VTK volume rendering program design of 3D scanned volume data