中小企业web邮件系统的设计与实现

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

工程硕士专业学位论文(设计)题目中小企业web邮件系统的设计与实现作者完成日期培养单位四川大学指导教师指导教师工程领域软件工程授予学位日期2011年10月日中小企业web邮件系统的设计与实现软件工程领域研究生关冀指导老师随着网络技术的快速发展,电子邮件已经被广泛应用在人们的日常生活中。据统计,全球总的网页访问量中,其中与电子邮件相关的就有66%以上。电子邮件系统在应用的初期只能通过Outlook,Foxmail等客户端软件来收发自己的邮件,但随着经济的发展与用户需求的不断提高,单纯使用邮件客户端程序进行邮件的收发已经不能满足用户移动办公的需要。Web邮件技术因其快捷、方便的优点吸引了众多的网络用户。该技术的出现,较好解决了用户办公的需要。运用该技术,用户无须安装任何E-mail客户端软件,只需要使用浏览器打开存放在服务器上的特定网页就可以进行E-mail收发及相关操作。对于应用开发来说,选择一条适合开发的技术路线,才能够开发出灵活的、低耦合的、可扩展的、易于维护的系统。正是基于目前Web邮件系统的优势和切实需求,开发新一代的高性价比Web邮件系统对于某些行业有重要的意义。本文正是在这样的背景下,对Web邮件系统实施中的关键要素进行讨论,在系统的架构方面基于MVC模式,实现了由表现层、业务层到持久层的三层架构,采用的技术是Spring+Struts+Hibernate,在此基础上设计和实现一个基本的邮件系统。系统基于J2EE平台,MVC开源框架,使用JavaBean,Sevlet等标准技术实现了MVC模式。论文首先阐述了电子邮件基本原理、相关协议,分析了MVC模式及J2EE架构。进而根据中小企业的需求分析介绍了中小企业web邮件系统的总体架构及Webserver构架,对构成该邮件系统的结构进行了分别介绍。本邮件系统设计了用户注册、身份认证、邮件发送、邮件接收、通讯录管理、邮件夹管理、邮件过滤等应用功能。系统的功能实现采用了socket编程,多线程、线程池技术,oscache缓存技术等组件技术,运用Mysql数据库服务器管理用户信息、邮件信息以及系统配置参数等数据。本文对系统安全性、邮件收发及垃圾邮件过滤进行测试,自建的邮件服务器测试表明,该邮件系统的功能满足了设计的要求,性能方面达到了中小型企业邮件服务器的需求。本文的最后,说明了本课题的当前状况,并且指出了该系统的特点以及不足之处,对该系统的后续需要解决的问题作了说明。关键词:电子邮件邮件过滤电子邮件协议MVC架构模式EnglishtitleSoftwareEngineeringGraduateStudent:Adviser:WiththedevelopmentofInternetandnetworkingoffice,emailisbecomingapopularcommunicationway.Accordingtothestatistics,66%ofwebaccessingisemailservice.Inthepast,emailclientsoftware,suchasOutlookandFoxmail,istheonlywaytosendandreceiveemail.Butthiswayisnotenoughformobileoffice.WebMailtechnologycanmeettheneedofmobileoffice,becauseithasthebenefitsofquicknessandeasiness.Usersdonotneedtoinstallanyclientsoftware,byusingthewebbrowser,userscansendandreceiveemailordoingotheroperations.Forapplicationdevelopment,choosingatechnicalroutewhichsuitsfouthedevelopmenttoaachievethisgoalanddevelopaflexible,low-coupled,extensible,easy-to-maintainsystemisverynecessary.SincetheWebMailsystemhassuchbenefits,itisimportanttodevelopanewgenerationWebMailsystemwithhighperformance/costrate.Insuchbackground,thispaperdiscussesthekeyaspectsofdesigningaWebMailsystem.BasedontheMVCmodel,wedesignathreelayerarchitecturewhichincludespresentationlayer,businesslayerandpersistencelayer.TheimplementationtoolsweusedincludeSpring,StrutsandHibernate.TheE-mailsystembasesontheJ2EEpaltform,MVCopensourceframework,technicalstandardsJavaBean,ServletandachievesMVCdesignmode.Theauthorfirstdescribesthebasicprinciplesofe-mailandtherelatedagreementsandanalysestheMVCmodelandJ2EEarchitectureinthepaper.Meanwhile,accordingtothedemandsofsmallandmediumenterprises,theauthorhasalsointroducedthegeneralframeworkofwebmailsystem、webserverarchitectureandthestructureofformingthemailsystemrespectively.Thise-mailsystemisdesignedincludingtheuserregistration、authentication、messagesending、e-mailreceiving、contactsmanagement、mailfoldermanagement、mailfilteringandotherapplications.Thefunctionsofthesystemisaccomplishedbyusingsocketprogrammingaswellassomecomponenttechnologysuchasmultithreading、threadpoolandoscachecachetechnologyandbyusingMysqlserverdatabasetomanageuserinformation、mailinformationandsystemconfigurationparametersdata.Forthesakeofsecurity,mailsendingandreceivingandspamfiltersystemhavealsobeentested.TestingtheprototypeWebMailsystem.Theresultshowsthatthesystemimplementsthebasicfunctionofamailsystem,anditsperformancemeettheneedofamiddlelevelmailserver.Inthelastpartofthepaper,theauthorexplainsthecurrentstatusofthestudyandpointsoutthecharacteristicsofthesystemanditslimitations.Thefollow-upproblemsofthesystemhasalsobeendescribed.Keywords:EmailEmailFilteringEmailProtocolMVC四川大学工程硕士学位论文中小企业web邮件系统的设计与实现目录1绪论.................................................11.1课题背景......................................................11.2电子邮件系统的研究现状........................................11.3电子邮件系统发展趋势..........................................31.4Web邮件系统的研究内容及意义...................................42Web电子邮件的相关技术................................62.1基本原理......................................................62.2相关协议......................................................82.3Web应用J2EE架构.............................................112.4小结.........................................................123Web邮件系统的设计...................................133.1中小企业对邮箱的需求分析.....................................133.2系统总体架构.................................................143.3Webserver构架设计...........................................153.4Web应用功能设计..............................................163.5小结.........................................................174电子邮件系统的实现..................................184.1系统实现技术背景.............................................184.1.1开发环境..........................................................184.1.2相关组件技术......................................................184.1.3收发邮件的基础API.................................................204.2系统架构实现机制.............................................204.3Web邮件系统功能实现..........................................244.3.1.用户注册和身份认证的实现.........................................244.3.2邮件发送的实现....................................................284.3.3.邮件接收的实现.............................................

1 / 60
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功