站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题Oracle 和 JSP 开发的小型信息管理系统 (一) 说明文档

Oracle 和 JSP 开发的小型信息管理系统 (一) 说明文档

摘要: Oracle 和 JSP 开发的小型信息管理系统 (一) 说明文档
<textarea readonly style="border:none;font-family:Courier New;line-height:150%;width:760px;overflow-y:visible">

信息管理系统说明文档

网站结构设计

.目标设计

1.信息管理

1.1 信息添加

1.2 信息修改

1.3 信息删除

2.信息显示

2.1 显示全部信息

2.2 按类别显示信息

2.3 按关键字显示信息

.设计思路

本系统为一个简单的信息查询系统,该系统有如下特点:

1. 实用: 实现了一个完整的信息查询体统

2. 简单实用:为使用户尽快掌握使用整个系统,系统的结构简单但功能齐全,简洁的页面设计使操作更加简便

3. 代码规范:代码简洁,清晰易懂

4. 系统结构: DB服务器, web 服务器, 客户端 (修改删除添加浏览等功能)

.系统功能分析与设计

信息查询系统总共分3个模块:信息管理模块, 信息显示模块,信息查询模块,如图:

<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

</td></tr></table><table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息管理模块

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息显示模块

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息查询模块

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息修改

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息添加

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息删除

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

显示全部信息

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

按类别显示信息

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

关键字查询

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

关键字查询站内信息

</td></tr></table>


数据库结构设计

1. 数据库需求分析

信息记录包含以下内容:

信息记录编号

信息名称

信息类别

信息描述

信息大小

信息时间和浏览次数

2. 数据库逻辑设计

数据库名:learning

article_ID number(10), 信息记录编号

types varchar2(50), 信息记录类别

title varchar2(255), 信息标题

url varchar2(255), 参考url

content varchar2(1000), 内容

hits number(10), 点击次数

big varchar2(50), 大小

vote varchar2(50), 评价

from1 varchar2(50), 相关主页

form_url varchar2(255), 相关地址

date_and_time varchar2(32) 时间

信息管理模块

包含以下模块:

1. 信息管理

login.jsp

chklogin.jsp

manage.jsp

2. 信息添加

add.jsp

save.jsp

3. 信息修改

edit.jsp

saveEdit.jsp

delete.jsp

<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

管理员登录

login.jsp

</td></tr></table><table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

审核帐号

chklogin.jsp

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

管理页面

manage.jsp

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

网站页面

Index.jsp

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息添加

add.jsp

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息修改

edit.jsp

</td></tr></table>
<table cellspacing="0" cellpadding="0" width="100%"><tr><td style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent">

信息删除

delete.jsp

</td></tr></table>

</textarea>

↑返回目录
前一篇: Oracle 和 JSP 开发的小型信息管理系统 (二) 源代码1
后一篇: 复杂类型javabean(数组成员)在jsp中的运用:在jsp页面间传递数组