校友录的设计与实现

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:


摘  要
计算机技术的快速发展,特别是计算机网络的发展,它影响了人们生活的方方面面。各种在线服务系统,更是深刻的影响了人们的联系方式,使得人们可以在远隔千里之遥随时通讯。过去的种种陈旧的联系方式,已经不能满足现代生活的需要。校友录作为一种方便校友之间联系的实用系统便应运而生。校友录为校友之间进行交流和联系提供了一个平台。通过提供完善的校友录服务和规范校友录的管理,可以达到增进校友之间、校友与母校之间的感情,方便校友联系的目的。本文主要介绍了数据库管理网站的方案论证、结构特性设计及行为特性设计的实现过程,详细论述了总体设计思想、数据库设计和功能模块设计。实现了班级留言、班级相册、班级共享、纸条传情、个人信息管理、管理员信息管理等功能。整个系统的设计过程中,充分考虑了数据库的安全性、一致性、稳定性和可靠性的问题,并具有较强的实用作用,使用户在友好的操作界面下完成强大的功能。

关键词: 校友录,信息,管理

Abstract
With the rapid development of computer technique, especially the development of the computer network, each aspects of people’s life have been affected. Every kind of on-line service system which make people contact with each other from a long distance affected communication method deeply .The old contact method can't meet the requirement of modern living style any more, so the alumni association come into being as a practical system to be convenient for schoolmate's contact .The alumni association  provides a platform for the communication and exchange of schoolmate. Through the perfect alumni association offering  service and the norm management , it can attain the purpose of increasing the affection with other schoolmates and  mother school and the convenience for the contact of schoolmate. This paper mainly introduce the project argument of database management website, construction characteristic design and the implement process of behavior characteristics .It describes the general design idea ,database design and functional module design in detail. It realizes the function of class message, class album, class shares, the note spreads the feeling, personal information management, managing person information management etc. The design process of whole system considered the safety, consistency, stability of the database well with the dependable and sexual problem, and it have the stronger practical function, make user complete the mighty function in friendly operation interface.

Keywords:the alumni association, information, management

一个校友录所应具备的基本功能,主要包括学校搜索、班级搜索、校友/同学搜索、班级留言、成员地址列表、班级相册、班级共享、成员来访记录、个人信息、班级管理等功能。我采用JSP技术,封装数据库操作,所有的数据通过Bean来处理,JSP实现页面的表现,这样就把页面的表现和页面的逻辑相分离。

项目的内容主要包括:
1) 班级留言:普通文本留言 多彩HTML留言 留言修改
2) 班级:相片上传 相片评论 自动缩略图
3) 班级共享:共享文件上传
4) 纸条传情:给具体某人的小纸条
5) 班级管理和班级参数的设置更加方便
6) 成员地址簿和班级留言的导出
7) 个人信息管理、管理员信息管理
1.3  系统设计目标
1) 操作界面友好、功能多、操作简单,查询功能强大
2) 数据库设计合理,减少冗余数据,提高系统效率
3) 应用JSP技术,前台采用Jbuilder作为编译环境,后台数据库使用SQL  Server  2000。

本系统主要涉及到的数据库中的表有:
省份信息表:用于记录省份的名称和id号。
城市信息表:用于记录城市名称,城市和省份的id号。省份信息表和城市信息表的关系是一对多的关系。
安全信息表:用于记录与安全信息相关的内容,安全码是除有效证件之外最高级别的帐号保护措施。利用安全码不仅可以修复登录密码,还可以修改密码提示问题及答案、重新设置保密邮箱等。
用户注册信息表:用于记录用户名,密码等内容。
用户个人信息表:用于记录用户的个人详细资料。
纸条信息表:用于记录用户与用户之间所传递的站内短消息内容,包括消息发送时间,内容及传递双方的用户名等。
班级信息表:包括班级的创始人,创办日期,班级宣言等班级相关信息。
班级留言信息表:用于记录班级的留言信息。
成员信息表:包括成员名称,所属班级等相关信息。
学校信息表:包括学校名称,级别等相关信息。