资源描述:
《基于j2ee的blog的设计实现》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、.摘要随着网络的普及和生活条件的提高,人们越来越多的依赖于互联网,工作之余也希望通过网络做更多的事情。个人博客(Blog)可以为他们在网络上搭建一个展示自己和相互交流的平台,在这里,人们可以通过写日志,心情,留言,上传照片,发布消息、广告,让朋友分享自己的点滴生活。开发一个博客系统,通过丰富的博客活动和不断增加的博客功能,让博客成为广大网民生活的一部分。JAVA作为目前最为流行的技术之一,其企业版本(J2EE)在设计与实现Web应用方面非常适合。并且,目前基于J2EE的开源框架也已经非常成熟。可以利用现
2、有的优秀框架进行系统的设计与构建。使用J2EE技术来设计实现Blog正是本文的目的所在。本文将设计并实现一个基于J2EE的Blog系统。该系统采用了MVC(ModelViewController)设计模式,表示层用JSP实现,Servlet承担控制层的事务,业务逻辑封装在JavaBean中并通过DAO层访问数据库。在利用以上技术的同时,通过分析Blog的特点,最终完成系统结构的设计与实现。本系统主要完成了用户的登录、注册以及用户日志和公告的发表与管理,照片的上传,个人信息的编辑修改和添加好友等功能。关键
3、词:Blog;J2EE;Servlet;JavaBean;JSP页.AbstractWiththepopularityofthenetworkandtheimprovementoflivingconditions,peoplemoreandmoredependentontheInternet,fromworktotheInternettodomore.Personalblogforthemtobuildanetworkshowandcommunicationplatform,wherepeoplecan
4、writelog,mood,message,uploadphotos,postnews,makefriends,sharetheirbitsoflife.Developmentofablogsystem,throughtheactivitiesoftherichandgrowingblogfeature,soblogandbecomingapartoflife.JAVAtechnologyasoneofthemostpopularcurrent,versionofitsenterprise(J2EE)W
5、ebapplicationsinthedesignandimplementationisverysuitable.Moreover,thecurrentopensourceJ2EE-basedframeworkhasalsobeenverymature.Canbeanexcellentframeworkfortheuseofexistingsystemdesignandconstruction.DesignedandimplementedusingJ2EEtechnologytoBlogisthepur
6、poseofthisarticlelies.ThisarticlewilldesignandimplementaJ2EE-basedBlogsystem.ThesystemusestheMVC(ModelViewController)designpattern,saidlayertoachievewithJSP,Servlettakecontrollayeroftheaffairs,businesslogicencapsulatedintheJavaBeaninandthroughtheDAOlayer
7、toaccessthedatabase.Whiletheuseofthesetechnologies,Blogbyanalyzingthecharacteristicsofthefinalcompletionofsystemarchitecturedesignandimplementation.Thesystemismainlytocompletetheuserlogin,registrationanduserlogandannouncementsonthepublicationandmanagemen
8、t,uploadphotos,personalinformation,editorialchangesandaddfriendsandsoon.Keywords:Blog;J2EE;Servlet;JavaBean;JSP页.目录第1章概述11.1Blog系统的背景及发展现状11.1.1系统开发背景11.1.2发展现状11.2课题的来源及功能目标21.2.1课题的来源21.2.2功能目标21.3论文的主要内容及工作2第2章系统的总体设计框架