1
房屋租售信息管理系统的设计与实现
摘要
摘要:计算机技术的应用非常广泛,几乎涉及到每个行业,人们现在的生活
也无法离开互联网。传统的房屋租售管理模式主要依靠管理人员纯手工记录的相
关信息,比较繁琐,不方便查找,也非常容易出现错误。为了简化房屋租售的工
作流程,提高房屋租售的管理效率,实现房屋租售行业的现代化建设,本文设计
和实现了一款房屋租售信息管理系统。首先,根据收集到的用户需求分析,对设
计系统有一个初步的认识与了解,确定房屋租售信息管理系统的总体功能模块。
然后,详细设计系统的主要功能模块,使用 MySQL 数据库将与系统有关的数据
进行保存,再通过使用关键的开发工具,如 MyEclipse 开发平台、JSP 技术等,
编写相关的代码设计本系统。接着,进行系统测试,并且不断地查找问题,以及
想出解决问题的方法,不断地改进和完善系统的设计。最后,对系统进行总结和
展望工作,总结实现系统过程中的学习经验等内容,并且对系统未来的运维和发
展提出相关的展望。本系统的设计和实现,在安全性方面,用户使用浏览器访问
网站时,采用注册和密码等相关的保护措施,提高系统的可靠性,维护用户的个
人信息和财产的安全;在方便性方面,促进了房屋租售行业的信息化建设,极大
的方便了相关的工作人员对房屋信息进行管理。
关键词:房屋租售;Java 语言;B/S 模式;JSP 技术;系统测试
2
Design and Realization of House Rental and Sale
Information Management System
Abstract
The application of computer technology is very extensive, involving almost
every industry, and people cannot leave the Internet in their current lives. The
traditional house rental and sale management model mainly relies on the relevant
information recorded by the managers purely by hand, which is cumbersome,
inconvenient to find, and very easy to make mistakes. In order to simplify the work
process of housing rental and sales, improve the management efficiency of housing
rental and sales, and realize the modernization of housing rental and sales industry,
this paper designs and implements a housing rental and sales information
management system. First, based on the collected user demand analysis, have a
preliminary understanding and understanding of the design system, and determine the
overall functional modules of the housing rental and sales information management
system. Then, design the main functional modules of the system in detail, use the
MySQL database to save the data related to the system, and then write related codes
to design the system by using key development tools, such as the MyEclipse
development platform, JSP technology, etc. Then, carry out the system test, and
constantly find the problem, and come up with the method to solve the problem, and
continuously improve and perfect the system design. Finally, the system is
summarized and prospected, the learning experience in the process of realizing the
system is summarized, and the related prospects for the future operation and
development of the system are put forward. The design and implementation of the
system, in terms of security, users use browsers to visit the website, using registration
and password and other related protection measures to improve the reliability of the
system, maintain the security of user's personal information and property; In
3
convenience, promote the housing rental industry information construction, greatly
facilitate the relevant staff to manage housing information.
Key words: House rental and sale; B/S model; JSP technology; System testing
4
目 录
摘要 ...............................................................1
ABSTRACT ...........................................................2
目 录 .............................................................4
1 绪 论 ...........................................................6
1.1 研究背景与意义 ..............................................6
1.2 国内外研究现状 ..............................................6
1.3 研究内容 ....................................................7
1.4 论文结构 ....................................................7
2 相关技术介绍 .....................................................9
2.1 B/S 模式 ....................................................9
2.2 MyEclipse 开发环境 ..........................................9
2.3 MySQL 数据库 ................................................9
2.4 Java 语言 ..................................................10
2.5 JSP 技术 ...................................................10
2.6 Tomcat 服务器 ..............................................11
2.7 SSM 框架 ...................................................11
3 系统分析 .........................................................12
3.1 需求分析 ...................................................12
3.2 可行性分析 .................................................13
3.2.1 经济可行性 ...........................................13
3.2.2 技术可行性 ...........................................13
3.2.3 操作可行性 ...........................................14
3.3 用例建模分析...............................................14
3.4 系统流程分析 ...............................................16
3.4.1 用户操作流程 .........................................16
3.4.2 数据增加流程 .........................................16
3.4.3 数据修改流程 .........................................17
3.4.4 数据删除流程 .........................................17
4 系统设计 .........................................................19
4.1 系统功能设计 ...............................................19
4.2 数据库设计 .................................................19
4.2.1 概念设计 .............................................19
4.2.2 逻辑设计 .............................................22
5
5 系统实现 .........................................................25
5.1 管理员功能模块实现 .........................................25
5.1.1 管理员登录 ...........................................25
5.1.2 个人中心 .............................................25
5.1.3 房东管理 .............................................26
5.1.4 用户管理 .............................................26
5.1.5 房屋出售管理 .........................................27
5.1.6 房屋出租管理 .........................................28
5.1.7 轮播图管理 ...........................................28
5.1.8 公告管理 .............................................29
5.2 用户功能模块实现 ...........................................29
5.2.1 系统首页 .............................................29
5.2.2 个人中心 .............................................30
5.2.3 房屋出售管理 .........................................31
5.2.4 房屋出租管理 .........................................32
5.2.5 公告管理 .............................................32
6 系统测试 .........................................................34
6.1 测试概述 ...................................................34
6.2 功能模块测试 ...............................................34
6.2.1 管理员登录模块测试 ...................................34
6.2.2 房屋出售管理模块测试 .................................36
6.2.3 房屋出租管理模块测试 .................................37
6.3 测试结果分析 ...............................................38
7 总结与展望 .......................................................39
参考文献 ..........................................................40
致谢 ..............................................................41