基于java的邮件系统毕业设计论文 联系客服

发布时间 : 星期三 文章基于java的邮件系统毕业设计论文更新完毕开始阅读3d57dae67e192279168884868762caaedd33badd

武汉工程大学邮电与信息工程学院

毕业设计( 论 文)说明书

论文题目基于java的邮件系统

武汉工程大学邮电与信息工程学院 毕业设计(论文)

目 录

摘 要 ……………………………………………………………………………………..… II Abstract …………………………………………………………………………………... III 第一章 绪论………………………………………………………………………………....1 1.1 电子邮件系统简述… ……………………… ………………………………………... 1

1.2 电子邮件系统发展简史………………………………..………………………………1 1.3 电子邮件系统的工作过程……………………………..……………………………... 2 第二章 电子邮件系统分析…………………………………………………………………. 4 2.1 电子邮件系统的需求分析………………………………………………………….… 4 2.2 电子邮件系统的基本结构………………………………………………………….… 5 2.3 构建邮件系统的准备工作………………………………………………………….… 5 第三章 应用系统开发工具…………………………………………………………………. 7 3.1 开发语言简介……………………………………………………………………….… 7 3.2 开发工具……………………………………………………………………………..... 8 3.3 开发软件的安装……………………………………………………………………..... 9 第四章 系统的概要设计…………………………………………………………………… 12 4.1 系统平台的规划…………………………………………………………………….....12 4.2 邮件系统主要功能的设计………………………………………………………….... 12 第五章 系统的具体实现…………………………………………………………………… 14 5.1 服务器平台的实现………………………………………………………………….... 14 5.2 数据库的实现……………………………………………………………………….... 16 5.3 系统接口…………………………………………………………………………….... 22 第六章 系统安全………………………………………………………………………….... 26 第七章 设计中遇到的问题不足与体会………………………………………………….... 27 7.1 设计中遇到的问题………………………………………………………………….... 27 7.2 系统中的不足……………………………………………………………………..….. 27 7.3 总结与体会……………………………………………………………………..…...... 27 致 谢..…….……………………………………………………..…………………………... 28 参考文献..…….………………..………………………………..………………………....…29

- I -

武汉工程大学邮电与信息工程学院 毕业设计(论文)

摘 要

本论文阐述了Web 邮件系统所涉及的几个重要协议,对JavaMail API核心类进行了介绍,并给出了其中发送邮件功能的详细设计过程[1]。JavaMail结合JSP的结构化特性,易于实现灵活高效、方便移植的Web 邮件应用程序。

基于Web技术的邮件服务平台的开发主要包括服务器的安装配置,用户信息数据库的建立,用户访问接口程序的开发三个方面[2]。对于服务器需要稳定性好、安全可靠,负载能力强,对于数据库需要安全可靠、数据完整性强。而对于用户接口应该具有能全面、友好易用等特点。

经过分析,我使用Windows XP作为Web服务器,使用james作为邮件服务器,使用mysql作为后台数据库,使用JSP、Java、HTML为用户接口开发工具,使用Java Mail API为邮件处理程序的应用接口。并采用了目前流行的struts2 ,spring,hibernate,ajax等技术,保证了用户接口程序良好的可扩展性和可维护性。

关键词:HTML邮件 Java邮件 struts2 spring hibernate

- II -

武汉工程大学邮电与信息工程学院 毕业设计(论文)

Abstract

This paper describes a Web based mail system development process. Highlights from the server platform installation configuration and user interface development aspects in detail elaborated the whole message platform for the development of the whole process. For the difficulties of development are analyzed and studied, and the system structure, function module, configuration files, data dictionary, describe the image.

Web based message service platform development mainly includes the server installation and configuration, the user information database, user interface program development three aspects. The server requires good stability, safety and reliability, strong load capacity, the database needs to be safe and reliable, data integrity. And the user interface should have a comprehensive, user-friendly features such as.

After the analysis, I use the Windows XP as the Web server, use the James as a mail server, use the MySQL database as a background, using the JSP, Java, HTML for user interface development tool, using Java Mail API for mail processing application interface. And the use of the popular Struts2, spring, hibernate, Ajax and other techniques, to ensure that the user interface and good expansibility and maintainability.

Keywords: HTMLMail JavaMail struts2 spring hibernate

- III -