登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 计算机类 > 软件工程 > 正文

基于B/S模式的大学生创业网站的设计与实现毕业论文

 2021-11-11 08:11  

论文总字数:21521字

摘 要

随着全国范围内的大学扩招,导致了大学生数量的快速增长。随之而来的就是毕业生就业难的问题,这已经发展为突出的社会热点问题。高校毕业生创业是能够解决高校毕业生就业困难的一个有效途径,这也会成为今后社会发展的一个趋势以及市场要求。然而,在如今的大学课程体系下, 多数大学生都缺少创业知识, 甚至学校里的课程已经跟不上时代的发展。尽管大学生的创业意愿持续高涨,但是选择自主创业的大学毕业生仅仅占到毕业生总数的3%左右,而创业成功率只有2%左右。大学生创业网站系统的目标是实现以大学生创业者为主体,通过网络寻求创业商机的开放式网络创业平台,为大学生提供政策信息,创业经验等关键资源。为此,本文设计并实现了一个基于B/S模式的大学生创业网站。

在技术方面,本网站选择Layui作为前端开发框架,spring boot作为后端开发框架。在信息安全方面,使用spring security进行权限管理和密码加密。在数据管理方面,使用MySQL数据库进行数据管理。本网站包含创业新闻模块,贴吧交流模块,活动竞赛模块等功能,贴合大学生创业者的特点,可望为大学生创业者提供良好的平台,帮助实现传统大学生创业模式的转变。

通过开发大学生创业网站,本科期间学习到的知识得到了运用和巩固,对软件系统的分析、设计和实现能力得到了提高。

关键词:大学生创业网站;Spring Boot;Layui;软件开发

Abstract

With the expansion of university enrollment nationwide, the number of college students has increased rapidly. The ensuing problem is the difficulty of graduates' employment, which has developed into a prominent social hot issue. Entrepreneurship of college graduates is an effective way to solve the employment difficulties of college graduates, which will also become a trend of future social development and market requirements. However, under the current course system, most college students lack entrepreneurial knowledge, and even the college courses have not kept up with the development of the times.Although university students' willingness to start a business continues to rise, university graduates who choose to start their own businesses account for only about 3% of the total number of graduates, and the success rate for entrepreneurship is only about 2%. The goal of the college student entrepreneurship website system is to realize an open online entrepreneurial platform that takes college student entrepreneurs as the main body and seeks entrepreneurial business opportunities through the Internet, providing college students with key resources such as policy information and entrepreneurial experience.To this end, this paper designs and implements a college student entrepreneurial website based on B / S model.

In terms of technology, this website chooses Layui as the front-end development framework and spring boot as the back-end development framework. In terms of information security, spring security is used for rights management and password encryption. In terms of data management, the MySQL database is used for data management.This website contains entrepreneurship news module, post bar communication module, activity contest module and other functions, which are suitable for the characteristics of college student entrepreneurs, and is expected to provide a good platform for college student entrepreneurs to help realize the transformation of traditional college student entrepreneurship models.

By designing and implementing the college student entrepreneurial website based on the B / S model, the knowledge learned during the undergraduate period has been applied and consolidated, and the analysis, design, and implementation capabilities of the software system were improved.

Key Words: College student startup website;Spring Boot;Layui;Software development

 

目录

摘要 I

Abstract II

第1章 绪论 1

1.1. 研究的目的和意义 1

1.2. 国内外研究概况 2

1.3. 论文结构安排 2

第2章 核心技术介绍 4

2.1. 后端架构演进 4

2.1.1. MVC架构 4

2.1.2. 分库分表 水平拆分 MySQL集群 4

2.1.3. 微服务架构 5

2.2. Layui 6

2.3. Spring Boot 6

2.3.1. SpringBoot历史 6

2.3.2. SpringBoot框架的功能特点 7

2.4. Docker 7

2.5. MySQL 7

2.6. 本章小结 8

第3章 系统分析 9

3.1. 系统概述 9

3.2. 可行性分析 9

3.2.1. 操作可行性 9

3.2.2. 经济可行性 9

3.2.3. 技术可行性 9

3.2.4. 社会可行性 10

3.3. 功能需求 10

3.4. 非功能需求 10

3.4.1. 可用性 10

3.4.2. 可靠性 10

3.4.3. 安全性 11

3.5. 系统用例分析 11

3.6. 本章小结 12

第4章 系统的总体设计 13

4.1. 系统总体结构设计 13

4.2. 系统操作流程设计 14

4.3. 数据库设计 14

4.3.1. 数据库逻辑模式设计 14

4.3.2. 数据表设计 15

4.4. 本章小结 19

第5章 系统详细设计与实现 20

5.1. 管理员模块 20

5.1.1. 注册登录部分 20

5.1.2. 各模块的增删改查操作 21

5.1.3. 页面跳转 26

5.2. 用户模块 27

5.2.1. 注册登录部分 27

5.2.2. 内部新闻模块 27

5.2.3. 贴吧模块 28

5.2.4. 创业故事模块 30

5.2.5. 竞赛模块 32

5.2.6. 活动通知 32

5.3. 服务器 32

5.4. 本章小结 37

第6章 系统测试 38

6.1. 用户操作流程测试 38

6.1.1. 注册登陆、修改个人信息 38

6.1.2. 内部新闻模块 39

6.1.3. 活动通知模块 40

6.1.4. 竞赛模块 42

6.1.5. 贴吧模块 42

6.1.6. 权限测试 45

6.2. 管理员操作流程测试 45

6.2.1. 注册登录、修改个人信息 45

6.2.2. 内部新闻模块 45

6.2.3. 活动通知模块 48

6.2.4. 竞赛模块 48

6.2.5. 贴吧模块 49

6.2.6. 权限测试 49

6.3. 本章小结 50

第7章 总结与展望 51

参考文献 52

致谢 53

绪论

研究的目的和意义

长期以来我国一直在大力推动大学生创业路线,除了宣传方面经常鼓励大学生创业之外,政策也向大学生有许多的倾斜。可是实际实施状况不容乐观,真正选择去创业的大学生并不多,不到毕业生总数的4%,远远低于发达国家一般20%-30%的比例[1]。即使大学生选择了创业这条路,成功率也是非常低,以下是对大学生在创业过程中遇到的问题的分析:

(1) 创业政策很难真正执行。虽然政府已经向大学生发布了大量的业务支持政策, 但存在一些在施行中难以落实的问题。普遍被大家反映的问题有:政策支持项目的申请流程过于复杂,审批程序太多,当企业家支持的资金到位时,创业项目早已过了最佳的时机,导致筹资的资金无法得到有效的利用;政策管理部门相交叉,部门与部门间缺乏协调,导致政策可操作性不足;政府有关创业的扶持政策管理不规范,存在漏洞,导致资源浪费等。

请支付后下载全文,论文总字数:21521字

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图