ImageVerifierCode 换一换
格式:DOC , 页数:57 ,大小:1.53MB ,
资源ID:1273076      下载积分:30 文钱
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,省得不是一点点
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.wenke99.com/d-1273076.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(基于框架的J2EE应用 —厦门国际银行反洗钱系统.doc)为本站会员(滴答)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

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

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个工作日内予以改正。