CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 JSP源码/Java

文件名称:forum

  • 所属分类:
  • 标签属性:
  • 上传时间:
    2015-04-24
  • 文件大小:
    3.04mb
  • 已下载:
    0次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
    别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容来自于网络,使用问题请自行百度

本系统使用SSH轻量级框架,使用Tomcat服务器,使用MySQL数据库。Struts 1.x与Hibernate都由Spring负责管理。实体类使用Hibernate注解的方式配置。数据库表结构由实体类决定,DDL语句由Hibernate自动生成。实现一个具有基本功能的论坛。本系统包括5个模块:用户模块、版面类别模块、版块、帖子模块、回帖模块等。

用户模块:包括用户的注册、登录、注销,以及查看用户资料等功能。发表帖子、发表回帖、设置版主等都需要用到用户信息。注册时将记录用户的注册时间等,登录时将记录用户的登录时间等。版面类别模块:本系统为二级结构,即先创建版面类别,然后才能创建版面。本模块包括创建版面类别、列出所有的类别、首页等。首页上将列出所有的版面类别下对应的版面、帖子总数、回帖总数、最后发表的帖子或者回复、版主等。

版面模块:包括创建版面,设置版主,列出所有本版的帖子等。帖子列表包括帖子标题,作者,发表时间,回帖数,人气,最后回复人,最后回复时间等。帖子模块:包括发表帖子,浏览帖子等。浏览帖子时分页列出所有的回帖,并更新帖子的人气(浏览次数)。

回帖模块:包括发表回帖等。-

The system uses SSH lightweight framework, using Tomcat server, using a MySQL . By Hibernate Spring Struts 1.x and responsible management. Annotated entity classes using Hibernate mode configuration. Database table structure is determined by the entity class, DDL statements generated automatically by Hibernate. Realization of a forum with basic functions. The system consists of five modules: user module, the module layout categories, pages, posts module, Replies module.

User modules: including user registration, login, logout, and view user profile functions. Published articles, published Replies, moderators and so will need to set user information. The record registration Registered users will record the user s login time login. Layout category module: This system is the secondary structure, which is to create a forum category, then you can create a layout. This module includes creating the layout category, list all the categories, home and so on.
(系统自动生成,下载前可以参看下载内容)

下载文件列表

forum/
forum/.classpath
forum/.myeclipse/
forum/.myhibernatedata
forum/.mymetadata
forum/.mystrutsdata
forum/.project
forum/.settings/
forum/.settings/com.genuitec.eclipse.j2eedt.core.prefs
forum/.settings/org.eclipse.core.resources.prefs
forum/.settings/org.eclipse.jst.jsp.core.prefs
forum/.springBeans
forum/model/
forum/model/Blank Model.emx
forum/model/classdiagram.dnx
forum/src/
forum/src/applicationContext.xml
forum/src/ApplicationResources.properties
forum/src/com/
forum/src/com/helloweenvsfei/
forum/src/com/helloweenvsfei/forum/
forum/src/com/helloweenvsfei/forum/bean/
forum/src/com/helloweenvsfei/forum/bean/BaseBean.java
forum/src/com/helloweenvsfei/forum/bean/Board.java
forum/src/com/helloweenvsfei/forum/bean/Category.java
forum/src/com/helloweenvsfei/forum/bean/Person.java
forum/src/com/helloweenvsfei/forum/bean/Reply.java
forum/src/com/helloweenvsfei/forum/bean/Thread.java
forum/src/com/helloweenvsfei/forum/dao/
forum/src/com/helloweenvsfei/forum/dao/IDao.java
forum/src/com/helloweenvsfei/forum/dao/impl/
forum/src/com/helloweenvsfei/forum/dao/impl/DaoImpl.java
forum/src/com/helloweenvsfei/forum/pagination/
forum/src/com/helloweenvsfei/forum/pagination/Pagination.java
forum/src/com/helloweenvsfei/forum/service/
forum/src/com/helloweenvsfei/forum/service/IBoardService.java
forum/src/com/helloweenvsfei/forum/service/ICategoryService.java
forum/src/com/helloweenvsfei/forum/service/impl/
forum/src/com/helloweenvsfei/forum/service/impl/BoardServiceImpl.java
forum/src/com/helloweenvsfei/forum/service/impl/CategoryServiceImpl.java
forum/src/com/helloweenvsfei/forum/service/impl/PersonServiceImpl.java
forum/src/com/helloweenvsfei/forum/service/impl/ReplyServiceImpl.java
forum/src/com/helloweenvsfei/forum/service/impl/ServiceImpl.java
forum/src/com/helloweenvsfei/forum/service/impl/ThreadServiceImpl.java
forum/src/com/helloweenvsfei/forum/service/IPersonService.java
forum/src/com/helloweenvsfei/forum/service/IReplyService.java
forum/src/com/helloweenvsfei/forum/service/IService.java
forum/src/com/helloweenvsfei/forum/service/IThreadService.java
forum/src/com/helloweenvsfei/forum/struts/
forum/src/com/helloweenvsfei/forum/struts/action/
forum/src/com/helloweenvsfei/forum/struts/action/BoardAction.java
forum/src/com/helloweenvsfei/forum/struts/action/CategoryAction.java
forum/src/com/helloweenvsfei/forum/struts/action/ForumAction.java
forum/src/com/helloweenvsfei/forum/struts/action/PersonAction.java
forum/src/com/helloweenvsfei/forum/struts/action/ReplyAction.java
forum/src/com/helloweenvsfei/forum/struts/action/ThreadAction.java
forum/src/com/helloweenvsfei/forum/struts/exception/
forum/src/com/helloweenvsfei/forum/struts/exception/ForumExceptionHandler.java
forum/src/com/helloweenvsfei/forum/struts/form/
forum/src/com/helloweenvsfei/forum/struts/form/BoardForm.java
forum/src/com/helloweenvsfei/forum/struts/form/CategoryForm.java
forum/src/com/helloweenvsfei/forum/struts/form/ForumForm.java
forum/src/com/helloweenvsfei/forum/struts/form/PersonForm.java
forum/src/com/helloweenvsfei/forum/struts/form/ReplyForm.java
forum/src/com/helloweenvsfei/forum/struts/form/ThreadForm.java
forum/src/com/helloweenvsfei/forum/struts/interceptor/
forum/src/com/helloweenvsfei/forum/struts/interceptor/LoginInterceptor.java
forum/src/com/helloweenvsfei/forum/struts/util/
forum/src/com/helloweenvsfei/forum/struts/util/MD5Util.java
forum/src/com/helloweenvsfei/forum/struts/util/PersonInfo.java
forum/src/com/helloweenvsfei/forum/struts/util/PersonUtil.java
forum/src/log4j.properties
forum/WebRoot/
forum/WebRoot/form/
forum/WebRoot/form/board/
forum/WebRoot/form/board/addBoard.jsp
forum/WebRoot/form/board/listBoard.jsp
forum/WebRoot/form/board/setAdmin.jsp
forum/WebRoot/form/board/success.jsp
forum/WebRoot/form/category/
forum/WebRoot/form/category/addCategory.jsp
forum/WebRoot/form/category/listCategory.jsp
forum/WebRoot/form/category/success.jsp
forum/WebRoot/form/exception.jsp
forum/WebRoot/form/footer.jsp
forum/WebRoot/form/header.jsp
forum/WebRoot/form/person/
forum/WebRoot/form/person/addPerson.jsp
forum/WebRoot/form/person/listPerson.jsp
forum/WebRoot/form/person/login.jsp
forum/WebRoot/form/person/success.jsp
forum/WebRoot/form/person/viewPerson.jsp
forum/WebRoot/form/reply/
forum/WebRoot/form/reply/addReply.jsp
forum/WebRoot/form/reply/success.jsp
forum/WebRoot/form/thread/
forum/WebRoot/form/thread/addThread.jsp
forum/WebRoot/form/thread/listThread.jsp
forum/WebRoot/form/thread/success.jsp
forum/WebRoot/form/thread/viewThread.jsp
forum/WebRoot/forum.jsp
forum/WebRoot/images/
forum/WebRoot/images/yellow/
forum/WebRoot/images/yellow/banner.gif
forum/WebRoot/images/yellow/bg.png
forum/WebRoot/images/yellow/bg1.jpg
forum/WebRoot/images/yellow/dotB.png
forum/WebRoot/images/yellow/file/
forum/WebRoot/images/yellow/file/headtopic_1.gif
forum/WebRoot/images/yellow/file/multipage.gif
forum/WebRoot/images/yellow/file/new.gif
forum/WebRoot/images/yellow/headerbg.png
forum/WebRoot/images/yellow/index/
forum/WebRoot/images/yellow/index/cate_fold.gif
forum/WebRoot/images/yellow/index/home.gif
forum/WebRoot/images/yellow/index/home_menu.gif
forum/WebRoo

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 搜珍网是交换下载平台,只提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。更多...
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或换浏览器;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*快速评论: 推荐 一般 有密码 和说明不符 不是源码或资料 文件不全 不能解压 纯粹是垃圾
*内  容:
*验 证 码:
搜珍网 www.dssz.com