117jsp 通讯录sshluxiang

点击上面课题下载设计演示录像(建议用电脑用爱奇艺万能播放器看录像)

摘  要

随着科技的发展,互联网和移动通讯技术的融合愈来愈完美,基于这种技术的网络产品已经成为人们生活中不可或缺的一部分。与此同时,21世纪是一个信息爆炸的时代,信息量不断增多,沟通日益现代化,因此人们需要一个方便快捷的方式来存储大量的通讯信息。

通过对人们想要通讯录实现具体功能的深入调查与分析以及对其他通讯录系统的学习,为用户量身定制了一个实用的个人通讯录,使用户可以通过Web,WAP等方式随时随地进行访问。个人通讯录系统是一个专门针对储存用户联系方式多以及一些个人信息的实用信息系统,它实现了用户对朋友、同事等个人信息的分类储存和快速查阅的功能,大大减少了查找过程的时间。该系统是使用Java作为开发语言,以MySql作为后台数据库,Tomcat作为服务器,基于B/S模式开发的个人通讯录的设计与实现。

本文简述了国内外通讯录发展现状,并对通讯录发展现状进行了深度剖析,并根据需求提出了在MyEclipse中整合SSH的平台上开发个人通讯录系统的项目计划。SSH即Struts,Spring,Hibernate。其中Struts是一个实现了MVC模式的经典的框架,在系统中主要承担由前台页面向后台传输数据的任务;Hibernate是轻量级JAVA EE应用的持久层解决方案,以面向对象的方式提供了持久化类到数据表之间的映射,是优秀的ORM框架,主要负责与底层数据库进行交互;Spring为企业应用提供了轻量级的解决方案:它的IOC容器,AOP思想,以它为核心整合持久层框架和Web MVC框架,主要作用是实现业务逻辑的处理,实现系统功能。通过三个框架的整合,可以构建可扩展、可复用、可移植、可维护的软件系统。

本文主要阐述了个人通讯录系统的可行性分析、系统设计、需求分析、功能模块划分、数据库模式分析、系统测试与性能分析,并据此设计了基于B/S模式的数据库结构和JAVA程序。本系统主要分为前台和后台,最终形成个人通讯录系统。

关键字:个人通讯录系统, Struts2,Hibernate,Spring,B/S模式

 

Abstract

With the development of science and technology, Internet and mobile communication technology has become more and more perfect fusion, based on the technology of network product already becomes the people to live an indispensable part. At the same time, twenty-first Century is an age of information explosion, the amount of information increasing, more and more modern communication, so people need a convenient and efficient way to store large amounts of information communication.

The people want to mail list realize the specific function of the thorough investigation and analysis as well as to other mail list learning system, tailored for users of a practical personal mail list, the user may through the Web, WAP, whenever and wherever possible to consult. Personal mail list system is specially designed to store user contact way and some personal information of practical information system, it enables the user to many friends, colleagues and other personal information storage and fast access function, greatly reduces the searching time. The system is to use Java as a development language, adopts MySql as background database, Tomcat as the server, based on B / S mode development of the design and implementation of personal mail list.

This paper briefly introduces the development status of domestic and foreign mail list, and the mail list development present situation has carried on deep analysis, and according to the requirements put forward in the MyEclipse integration of SSH developed on the platform of personal mail list system project plan. SSH, hibernate, spring, where Struts is a realization of the MVC model of the classic framework, in the system is mainly responsible for data from the front page to background transmission task; Hibernate is a lightweight JAVA EE application persistence solution, by using object oriented approach provides a persistent class to table data mapping between, is an excellent ORM framework, mainly responsible for the underlying database interaction; Spring for enterprise applications to provide a lightweight solution: its IOC container, AOP thought, take it as the core integration persistence layer framework and Web MVC framework, the main role is to realize business logic processing, realize the function of the system. Through the three framework integration, can build scalable, reusable, portable, and maintainable software system.

This article mainly elaborated personal mail list system feasibility analysis, system design, needs analysis, functional module division, database model analysis, system testing and performance analysis, and thus designed based on B / S mode of the database structure and JAVA program. This system is divided into front and back, eventually forming personal mail list system.

KeywordsPersonal mail list system, Java, MySQL, B / S mode

 

目  录

摘  要

Abstract

1  绪论

1.1项目研究背景

1.2目的和意义

1.3国内外通讯录发展现状

1.3.1国内通讯录发展现状

1.3.2国外通讯录发展现状

1.4系统设计思想

1.5本文结构

2 系统开发环境及技术介绍

2.1系统运行平台设置

2.2运行环境

2.3开发工具及技术简介

2.3.1开发工具简介

2.3.2开发技术简介

3  可行性分析

3.1经济可行性

3.2 技术可行性

3.3应用可行性

3.4运行可行性

4  需求分析

4.1通讯录系统的需求分析

4.1.1 面向管理员用户的功能需求

4.1.2 面向普通用户的功能需求

4.2数据流图

5 总体设计

5.1系统模块总体设计

5.1.1普通系统功能模块

5.1.2管理员功能模块

5.2数据库设计

5.2.1数据库选择

5.2.2数据分析

5.2.2数据库的详细设计

6 详细设计与实现

6.1系统流程分析

6.2普通用户基本功能设计与实现

6.2.1用户登录模块设计与实现

6.2.2新用户注册设计与实现

6.2.3个人资料修改模块的设计与实现

6.2.4联系人管理模块的设计与实现

6.2.5留言管理模块的设计与实现

6.3系统后台基本功能设计与实现

6.3.1管理员登录模块的设计与实现

6.3.2修改个人密码模块的设计与实现

6.3.3用户管理模块的设计与实现

6.3.4联系人类别模块的设计与实现

6.3.5留言管理模块的设计与实现

6.3.6系统公告模块的设计与实现

7  系统测试与性能分析

7.1软件测试

7.1.1软件测试概述

7.1.2系统整体测试步骤

7.2个人通讯录系统测试

7.2.1普通用户模块的测试

7.2.2用户注册模块的测试

7.2.3联系人类别管理模块的测试

  

参考文献

  

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。

最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。 若排除这种情况,可在对应资源底部留言,或联络我们。

对于会员专享、整站源码、程序插件、网站模板、网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。

如果您已经成功付款但是网站没有弹出成功提示,请联系站长提供付款信息为您处理

源码素材属于虚拟商品,具有可复制性,可传播性,一旦授予,不接受任何形式的退款、换货要求。请您在购买获取之前确认好 是您所需要的资源