## 项目类型
问答社区
## 项目技术
前端:HTML/CSS/JavaScript/jQuery/Bootstrap
后端:Java/JSP/Spring/SpringMVC/MyBaits/MySQL/Redis
## 项目说明
此项目目前完成了基本的问答功能,其余功能有待后续更新。
## 项目数据库
```SQL
create database wenfou character set utf8 collate utf8_general_ci;
use wenfou;
create table user(
id int primary key auto_increment,
account varchar(20) not null comment '账号',
password varchar(64) not null comment '密码',
username varchar(20) not null comment '用户名',
avatar varchar(50) not null comment'头像',
created_time timestamp not null default current_timestamp comment '创建时间',
updated_time timestamp not null default current_timestamp comment '修改时间'
)comment '用户表';
create table question(
id int primary key auto_increment,
title varchar(100) not null comment '提问标题',
content text not null comment '提问内容',
question_type_id int not null comment '分类id',
user_id int not null comment '用户id',
created_time timestamp not null default current_timestamp comment '创建时间',
updated_time timestamp not null default current_timestamp comment '修改时间'
)comment '提问表';
create table answer(
id int primary key auto_increment,
content text not null comment '回复内容',
question_id int not null comment '分类id',
user_id int not null comment '用户id',
created_time timestamp not null default current_timestamp comment '创建时间',
updated_time timestamp not null default current_timestamp comment '修改时间'
)comment '回复表';
create table question_type(
id int primary key auto_increment,
name varchar(10) not null comment '分类名'
)comment='分类表';
```
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于SSM+Vue的软件学院互助答疑平台是一个用于管理软件学院学生之间互相帮助解答问题的在线平台。该系统采用了前后端分离的设计模式,前端使用Vue.js框架进行开发,后端使用Spring+SpringMVC框架进行开发。 系统主要包括问题管理、答案管理等功能模块。学生可以注册账号,登录后提出问题、查看答案等操作。管理员可以对问题和答案进行管理,如添加、删除、修改信息等。同时,系统还支持用户管理功能,可以对用户的个人信息进行录入、查询和统计分析。 在数据库方面,该系统使用了MySQL作为数据库存储介质,并设计了相应的数据表来存储问题信息、答案信息等数据。同时,为了保证数据的安全性和完整性,还采用了一些常见的数据库安全措施,如加密传输、防止SQL注入等。 部署方面,该系统采用了Docker容器化技术进行部署。通过Docker容器化技术可以将应用程序及其依赖项打包成一个独立的容器,从而实现快速部署和扩展。此外,还可以使用Kubernetes等容器编排工具来管理和调度容器集群,进一步提高系统的可用性和可伸缩性。 总之,基于SSM+Vue的软件学院互助答疑平台是一个功能强大、易于维护和扩展的在线平台,可以帮助学生更好地解决学习中遇到的问题,提高学习效率和管理水平。
资源推荐
资源详情
资源评论
收起资源包目录
基于ssm+Vue的软件学院互助答疑平台(源码+部署说明+系统介绍+数据库).zip (115个子文件)
UserServiceImpl.class 6KB
QuestionController.class 5KB
UserController.class 5KB
QuestionServiceImpl.class 4KB
Question.class 4KB
HomeController.class 3KB
Answer.class 3KB
AnswerServiceImpl.class 3KB
LoginController.class 3KB
User.class 2KB
AnswerController.class 2KB
Auth.class 2KB
AuthInterceptor.class 1KB
Response.class 1KB
QuestionType.class 1KB
ServerStartupListener.class 1KB
QuestionService.class 973B
QuestionTypeServiceImpl.class 868B
Pagination.class 858B
Demo.class 745B
AnswerService.class 636B
QuestionMapper.class 490B
UserService.class 485B
RedisKey.class 396B
AnswerMapper.class 377B
UserMapper.class 370B
QuestionTypeService.class 258B
QuestionTypeMapper.class 255B
.classpath 1KB
org.eclipse.wst.common.component 653B
org.eclipse.wst.jsdt.ui.superType.container 49B
style.css 4KB
reset.css 1KB
.gitignore 29B
UserServiceImpl.java 7KB
UserController.java 5KB
QuestionServiceImpl.java 4KB
QuestionController.java 4KB
Question.java 3KB
HomeController.java 3KB
Answer.java 2KB
AnswerServiceImpl.java 2KB
User.java 2KB
Auth.java 2KB
LoginController.java 1KB
QuestionService.java 1KB
AnswerController.java 1KB
UserService.java 848B
AnswerService.java 818B
AuthInterceptor.java 777B
Response.java 767B
Pagination.java 728B
ServerStartupListener.java 722B
QuestionMapper.java 633B
QuestionType.java 615B
QuestionTypeServiceImpl.java 570B
UserMapper.java 525B
AnswerMapper.java 448B
Demo.java 412B
QuestionTypeService.java 231B
QuestionTypeMapper.java 230B
RedisKey.java 161B
Cay6k3ofde_1584792549895.jpg 69KB
bg.jpg 50KB
5Z1Esirp4F_1584769634100.jpg 23KB
avatar.jpg 9KB
particles.min.js 23KB
app.js 2KB
cropbox-min.js 2KB
.jsdtscope 639B
home.jsp 19KB
show.jsp 11KB
index.jsp 10KB
login.jsp 8KB
add.jsp 7KB
navtar.jsp 3KB
global.jsp 653B
message_tip.jsp 483B
header.jsp 387B
message_tip.jsp 254B
README.md 2KB
MANIFEST.MF 114B
org.eclipse.wst.jsdt.ui.superType.name 6B
name.png 5KB
password.png 4KB
org.eclipse.jdt.core.prefs 430B
org.eclipse.core.resources.prefs 212B
org.eclipse.m2e.core.prefs 90B
org.eclipse.wst.validation.prefs 50B
.project 1KB
pom.properties 232B
db.properties 172B
db.properties 172B
db.properties 172B
redis.properties 111B
redis.properties 111B
redis.properties 111B
wenfou.sql 6KB
部署说明新版.txt 391B
pom.xml 7KB
共 115 条
- 1
- 2
资源评论
码农飞哥
- 粉丝: 15w+
- 资源: 1914
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 【岗位说明】外贸业务员岗位职责.docx
- 【岗位说明】细述贸易公司采购员职责.doc
- 【岗位说明】外贸专员工作岗位职责.doc
- opencv-python-headless-4.6.0.66-cp36-abi3-win-amd64.whl
- 【岗位说明】食品车间员工岗位职责.docx
- 【岗位说明】食品厂厂长岗位职责.doc
- 【岗位说明】食品公司各岗位职责01.doc
- 【岗位说明】食品有限公司岗位职责说明书.doc
- 【岗位说明】食品公司各岗位职责02.doc
- 【岗位说明】餐厅厨师岗位职责.doc
- 【岗位说明】餐厅接待员岗位职责.doc
- 【岗位说明】餐厅业务员岗位职责.doc
- 【岗位说明】餐厅人员的岗位职责.doc
- 【岗位说明】餐饮部岗位职责.doc
- 【岗位说明】餐饮部各岗位职责.doc
- 【岗位说明】餐饮部管理员岗位职责.doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功