基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc

上传人:滴答 文档编号:1273076 上传时间:2019-01-26 格式:DOC 页数:57 大小:1.53MB
下载 相关 举报
基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc_第1页
第1页 / 共57页
基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc_第2页
第2页 / 共57页
基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc_第3页
第3页 / 共57页
基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc_第4页
第4页 / 共57页
基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc_第5页
第5页 / 共57页
点击查看更多>>
资源描述

1、基于框架的 J2EE 应用 厦门国际银行反洗钱系统 I 本科毕业论文 (科研训练、毕业设计 ) 题 目: 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 姓 名: 学 院:软件学院 系: 专 业:软件工程 年 级: 学 号: 指导教师 (校内 ): 职称: 指导教师 (校内 ):林凡 职称: 年 月 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 II 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 摘要 基于 JSP 的 WEB 应用程序有时会把数据库的代码、 页面设计的代码,以及控制流代码搅乱在一起。但是 ,在实际项目中,我们会发现,只有把这 些关系 分离开来,应用程序才 不会

2、 变得难以维护。 其中一种把这些关系分离开来的方法就是使用 MVC 架构。模型用来表示业务或者数据库代码,视图用来描绘页面设计,控制器用来表示导航。而 Struts 框架正是用来帮助开发者 实现基于 MVC 架构的应用程序的一个开源框架。 Hibernate 正是一个基于 JAVA 技术,强大、高性能的,轻量级对象 /关系影射工具。它和 Struts 一样都是一个专业的开源项目。 本论文介绍了一个基于 Struts 框架和 Hibernate 框架的 反洗钱系统,该系统主要用于完成对两张表的基本操作。 从本论文中,你能学到一些与 Struts 和 Hibernate 相关的技术知识。论文由以下

3、章节构成: 第一章, 引言 第二章, 介绍 Struts、 Hibernate 和 Ajax 的基础知识 第三章, 介绍 系统 的 概要设计 第四章, 介绍 系统 的 详细设计 第五章, 系统运行 第六章, 总结 关键词 反洗钱 Struts Hibernate Ajax 对 两张 大 表的操作 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 III Application based on framework The Anti-money Laundering system of Xiamen international bank Web applications based on Ja

4、vaServer Pages sometimes commingle database code, page design code, and control flow code. However, in practice, we find that unless these concerns are separated, larger applications become difficult to maintain. One way to separate concerns in a software application is to use a Model-View-Controlle

5、r (MVC) architecture. The Model represents the business or database code, the View represents the page design code, and the Controller represents the navigational code. The Struts framework is designed to help developers create web applications that utilize a MVC architecture. Hibernate is an powerf

6、ul, high performance and light object/relational mapping tool for Java,and it is a Professional Open Source project as well as Struts. This paper introduces a J2EE project of Anti-money Laundering which has the main aim to deal with the two big tables of bank. From this paper, you can learn somethin

7、g about Struts framework and Hibernate. It includes the fallowing chapters: Chapter 1, Preface of this paper. Chapter 2, Introduction to struts、 Hibernate and Ajax, which are the basic knowledge of this project. Chapter 3, Preliminary design of the system. Chapter 4, Detailed design of the system. C

8、hapter 5, Running of system. Chapter 6, Summing-up. Key words: Anti-money Laundering Struts Hibernate Ajax operation on the two big tables 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 IV 目录 第一章 引言 .1 1.1 我国反洗钱系统背景 .1 1.2 厦门国际银行反洗钱系统 .1 第二章 相关技术知识 .3 2.1 MVC 概述 .3 2.1.1 模型 .3 2.1.2 视图 .3 2.1.3 控制器 .4 2.2 Java Web 开源框架

9、.4 2.2.1 Struts 简介 .4 2.2.2 Hibernate 简介 .4 2.2.3 Spring 简介 .5 2.3 WEB 2.0 与 Ajax.6 2.4 eXtremeComponents 开源组件 .8 第三章 系统概要设计 .9 3.1 任务概述 .9 3.1.1 目标 .9 3.1.2 运行环境 .9 3.1.3 需求概述 .10 3.2 总体设计 . 11 3.2.1 处理流程 . 11 3.2.2 总体结构与模块设计 . 11 3.3 数据库设计 .12 3.4 安全设计 .20 3.4.1 用户登录安全设计 .20 3.4.2 页面访问安全设计 .21 第四章

10、 系统详细设计 .22 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 V 4.1 软件结构 .22 4.2 框架设计与应用 .23 4.2.1 Struts 框架的使用 .23 4.2.2 Hibernate 的使用 .25 4.3 Ajax 小体验 .25 4.4 模块描述 .26 4.4.1 验证模块 .26 4.4.2 表操作模块 .29 第五章 系统运行结果 .33 5.1 启动数据库服务器 .33 5.2 启动 Web 服务器 .34 5.3 使用 IE 浏览器进入该系统 .34 5.3.1 进入系统 .35 5.3.2 操作两张表 .36 第六章 总结 .41 致谢语 .42

11、 参考文献 .43 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 VI Contents Chapter 1 Preface .1 1.1 The background of Chinese system of Anti-money Laundering .1 1.2 The Anti-money Laundering system of Xiamen international bank .1 Chapter 2 Correlative technology and knowledge .3 2.1 Summary of MVC.3 2.1.1 Model .3 2.1.2 View

12、.3 2.1.3 Controller .4 2.2 Open-source framework of Java Web .4 2.2.1 Brief introduction of Struts .4 2.2.2 Brief introduction of Hibernate.4 2.2.3 Brief introduction of Spring .5 2.3 Web2.0 and Ajax.6 2.4 Open-source component of eXtremeComponents .8 Chapter 3 Preliminary design of the system .9 3.

13、1 Brief introduction of assignment .9 3.1.1 Target.9 3.1.2 Running environment.9 3.1.3 Brief introduction of request .10 3.2 Whole design. 11 3.2.1 Disposal flow . 11 3.2.2 The whole structure and design of module . 11 3.3 The design of database .12 3.4 The design of security .20 3.4.1 The design of

14、 user logon security .20 3.4.2 The design of visitorial security .21 Chapter 4 Detailed design of the system.22 4.1 4.1 Structure of software .22 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 VII 4.2 Framework design and application .23 4.2.1 Apply of Struts framework.23 4.2.2 Apply of Hibernate framework .25 4.3 Taste

15、 of Ajax .25 4.4 Description of module.26 4.4.1 Module of validation .26 4.4.2 Module of operating tables .29 Chapter 5 Running of system.33 5.1 Startup of Database server .33 5.2 Startup of Web server .34 5.3 Use IE to enter into the system .34 5.3.1 Access to the system .35 5.3.2 Operate the two tables.36 Chapter 6 Summary .41 Acknowledgement .42 References .43 基于框架的 J2EE 应用 厦门国际银行反洗钱系统 1 第一章 引言 1.1 我国 反洗 钱系统 背景 随着洗钱和相关金融犯罪在世界范围内的愈演愈烈,防范和打击洗钱活动,已经得到世界各国和国际社会的普遍赞同。 洗钱活动不仅帮助犯罪分子逃避法律制裁,而且还助长并滋生新的犯罪,扭曲正常的经济和金融秩序,损害金融机构的诚信,腐蚀公众道德。因此,构建反洗钱系统成为各国打击经济、刑事犯罪,维护国家经济金融秩序和金融安全的重要手

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 学术论文资料库 > 毕业论文

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。