• 【毕业设计】基于SSM的新闻管理系统


    1 前言

    Hi,大家好,这里是丹成学长,今天向大家介绍 一个java web项目

    基于SSM的新闻管理系统

    大家可用于 毕业设计

    适合专业:计算机科学与工程、软件工程、物联网、信管、数媒、大数据、等


    计算机毕设选题大全及项目分享:

    https://blog.csdn.net/WEB_DC/article/details/125563252


    2 简介

    想了解一下各端项目的同志可以看看,空余时间写了个类似新闻发布系统的小项目,本项目包含前端、后端、移动端三端应用,这里和大家交流交流,有兴趣的可以看看,欢迎讨论。

    2.1 JaveWeb新闻管理系统

    本项目基于SSM架构,包含新闻发布系统常规功能,同时,本项目包含前端、后端、移动端三端应用,
    相当于一套简陋而全面的各端项目集合。

    2.2 功能介绍

    2.2.1 移动端app(Android)

    基于MVP架构,技术栈:MVP+Material+retrofit2+Rx…

    主要模块:

    • a.登录/注册
    • b. 发帖
    • c. 回复/点赞
    • d. 搜索功能
    • e.个人中心
    • f. 版本更新
    • g.收藏
    • h. 其他

    预览:

    在这里插入图片描述

    2.2.2 web前端项目

    基于vue.js,技术栈:vue+vuex+vue Router+scss

    主要模块:

    • a. 登录/注册
    • b. 发帖
    • c. 回复/点赞
    • d.搜索
    • e.公告面板
    • f. 发一条说说
    • g. 个人中心 h.其他 预览:

    在这里插入图片描述

    2.2.3 管理后台

    基于vue.js,技术栈:vue+vuex+vue Router+element

    主要模块:

    • a. 用户管理
    • b. 帖子管理
    • c. 评论管理
    • d. 公告面板/说说管理
    • e. banner管理
    • f 禁言功能
    • g. 图片管理
    • h. 用户权限
    • i. 管理员权限
    • j. 其他

    预览:

    在这里插入图片描述

    3. 项目部署

    版本
    IED IntelliJ IDEA
    tomcat 7.0.91
    maven 3.5.4
    jdk 1.8.0
    mysql 5.7.19
    spring 4.1.3
    mybatis 3.2.8
    os CentOs 6.5
    nginx 1.12.2

    4. 说明

    1.mysql数据库,见项目根目录wcdog.sql,需手动导入,可自行添加数据

    2.注意tomcat端口,管理系统和H5前端baseUrl均为8081端口,也可以自行修改。

    3.使用管理后台(wcdog-manager)新增joke的时候,注意使用的是y_user表中的user_id,所以需要在y_user表中有一个和y_admin相同user_id的用户,当然,也可以在adminMapper中新增addJoke方法;

    5 数据库配置

    ## User表
    create table y_user(
    id int(11) unsigned not null auto_increment,
    user_id varchar(18) not null,
    name varchar(20) not null unique,
    password varchar(20) not null,
    nickname varchar(20) not null,
    user_icon varchar(255) DEFAULT NULL,
    talk varchar(300),
    address varchar(100),
    token varchar(100),
    regist_time datetime,
    last_login_time datetime,
    banned tinyint(1)DEFAULT 0,
    primary key(id)
    ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## joke表
    create table y_joke(
    id int(11) unsigned not null auto_increment,
    joke_id varchar(18) not null,
    joke_user_id varchar(18) not null,
    title varchar(255) not null,
    content mediumtext,
    contentHtml mediumtext,
    cover_img varchar(255) DEFAULT NULL,
    post_time datetime DEFAULT NULL,
    art_like_count int(5) DEFAULT '0',
    art_comment_count int(5) DEFAULT '0',
    category varchar(4) DEFAULT NULL,
    tags varchar(100) DEFAULT NULL,
    primary key (id)
    )ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## joke点赞表
    create table y_joke_like(
    id int(11) unsigned not null auto_increment,
    joke_id varchar(18) not null,
    joke_user_id varchar(18),
    approval_time datetime DEFAULT NULL,
    primary key (id)
    )ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## joke评论表
    create table y_joke_comment(
    id int(11) unsigned not null auto_increment,
    comment_id varchar(18) not null,
    joke_id varchar(18),
    comment_user_id varchar(18),
    comment_details mediumtext,
    comment_date datetime DEFAULT NULL,
    primary key (id)
    )ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## 图片
    create table y_image(
    id int(11) unsigned not null auto_increment,
    user_id varchar(18) not null,
    imgId varchar(18),
    imgUrl varchar(255),
    pageViews int(6),
    size_type int(1),
    upTime datetime DEFAULT NULL,
    primary key (id)
    )ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## 首页轮播
    create table y_banner(
    id int(11) unsigned not null auto_increment,
    user_id varchar(18) not null,
    articel_id varchar(18) not null,
    title varchar(255),
    img_url varchar(255),
    article_url varchar(255),
    pageViews int(6),
    up_time datetime DEFAULT NULL,
    primary key (id)
    )ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## 流量统计表
    create table y_wcdog_flow(
    id int(11) unsigned not null auto_increment,
    classic_count int(5) DEFAULT '0',
    yellow_count int(5) DEFAULT '0',
    mind_count int(5) DEFAULT '0',
    shite_count int(5) DEFAULT '0',
    cold_count int(5) DEFAULT '0',
    all_user_count int(5) DEFAULT '0',
    all_admin_count int(5) DEFAULT '0',
    all_joke_count int(5) DEFAULT '0',
    all_comment_count int(5) DEFAULT '0',
    all_thumb_count int(5) DEFAULT '0',
    post_time datetime DEFAULT NULL,
    primary key (id)
    )ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## Admin表
    create table y_admin(
    id int(11) unsigned not null auto_increment,
    name varchar(20) not null unique,
    password varchar(20) not null,
    nickname varchar(20) not null,
    admin_id varchar(18) not null,
    admin_icon varchar(255) DEFAULT NULL,
    permisson varchar(255) DEFAULT NULL,
    token varchar(100),
    regist_time datetime,
    last_login_time datetime,
    primary key(id)
    ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## 说说列表
    create table y_talk_list(
    id int(11) unsigned not null auto_increment,
    talk_id varchar(18) not null,
    user_id varchar(18) DEFAULT NULL,
    talk varchar(100),
    send_time datetime,
    primary key(id)
    ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## 公告栏表
    create table y_plank(
    id int(11) unsigned not null auto_increment,
    plank_id varchar(18) not null,
    content varchar(300) DEFAULT NULL,
    send_time datetime,
    primary key(id)
    ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    ## apk版本
    create table y_apk(
    id int(11) unsigned not null auto_increment,
    apk_id varchar(18) not null,
    apk_version varchar(20)not null,
    apk_url varchar(255)not null,
    apk_code int(5)not null,
    content varchar(300) not null,
    send_time datetime,
    primary key(id)
    ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143

    计算机毕设选题大全及项目分享:

    https://blog.csdn.net/WEB_DC/article/details/125563252


    6 最后

  • 相关阅读:
    Python中的函数
    几种混合模式移动应用开发框架的对比
    ceph版本和Ceph的CSI驱动程序
    npm-install 命令报错 -4048
    使用TS进行Vue-Router的Meta类型扩展
    22-07-29 西安 分布式事务、Seata
    Softmax 回归 + 损失函数 + 图片分类数据集
    Redis配置和优化
    OptiSystem应用:100 Gbps DP QPSK
    Windows与网络基础-18-注册表基础
  • 原文地址:https://blog.csdn.net/WEB_DC/article/details/125595606