首页 Java 038基于SSH/Java的论坛系统的设计与实现
038基于SSH/Java的论坛系统的设计与实现
作品编号:75
关注人气:1651
文件包括:设计源码+数据库+论文
设计大小:41.18 M
开发语言:Java
开发数据库:SQL Server
开发环境:Myeclipse+Tomcat+JDK
原价:900元
现价:90元
下载说明

本作品里面包括调试教程和开发工具和软件,可自行下载根据教程进行调试!

如需技术协助调试,本站收取50元作品调试费!点此申请调试

如果上面没有找到适合您需求的作品,您可联系我们为您定做,定做的作品完全按照您的功能需求来做,并且后期三包,包调试,包讲解,包修改直到通过为止。

  • 作品介绍
  • 项目目录
  • 论文目录
  • 论文预览

本系统是一套网上交流的BBS软件,根据用户的需要和实际的管理条件,应由用户功能实现,帖子功能实现和后台管理等几个模块所构成,而管理员可以对用户和帖子进行相关的管理.

鉴于本系统的性质,系统应该实现以下功能.

1.用户功能实现

(1).用户的登录

(2).用户的注册

2.帖子功能实现

(1).帖子的发表

(2).帖子的回复

(3).帖子的浏览

3.后台管理

(1).添加讨论区

(2).讨论区浏览

(3).添加模块

    
文件夹 PATH 列表
卷序列号为 362C-227F
D:\TEST\源码
│  forum_Data.MDF
│  forum_Log.LDF
│  论文.doc
│  
└─bbs
    │  .classpath
    │  .mymetadata
    │  .project
    │  
    ├─.myeclipse
    ├─src
    │  │  applicationContext.xml
    │  │  ApplicationResources.properties
    │  │  log4j.properties
    │  │  
    │  └─com
    │      └─helloweenvsfei
    │          └─forum
    │              ├─bean
    │              │      BaseBean.java
    │              │      Board.java
    │              │      Category.java
    │              │      Person.java
    │              │      Reply.java
    │              │      Thread.java
    │              │      
    │              ├─dao
    │              │  │  IDao.java
    │              │  │  
    │              │  └─impl
    │              │          DaoImpl.java
    │              │          
    │              ├─pagination
    │              │      Pagination.java
    │              │      
    │              ├─service
    │              │  │  IBoardService.java
    │              │  │  ICategoryService.java
    │              │  │  IPersonService.java
    │              │  │  IReplyService.java
    │              │  │  IService.java
    │              │  │  IThreadService.java
    │              │  │  
    │              │  └─impl
    │              │          BoardServiceImpl.java
    │              │          CategoryServiceImpl.java
    │              │          PersonServiceImpl.java
    │              │          ReplyServiceImpl.java
    │              │          ServiceImpl.java
    │              │          ThreadServiceImpl.java
    │              │          
    │              └─struts
    │                  ├─action
    │                  │      BoardAction.java
    │                  │      CategoryAction.java
    │                  │      ForumAction.java
    │                  │      PersonAction.java
    │                  │      ReplyAction.java
    │                  │      ThreadAction.java
    │                  │      
    │                  ├─exception
    │                  │      ForumExceptionHandler.java
    │                  │      
    │                  ├─form
    │                  │      BoardForm.java
    │                  │      CategoryForm.java
    │                  │      ForumForm.java
    │                  │      PersonForm.java
    │                  │      ReplyForm.java
    │                  │      ThreadForm.java
    │                  │      
    │                  ├─interceptor
    │                  │      LoginInterceptor.java
    │                  │      
    │                  └─util
    │                          MD5Util.java
    │                          PersonInfo.java
    │                          PersonUtil.java
    │                          
    └─WebRoot
        │  forum.jsp
        │  index.jsp
        │  phpwind.html
        │  phpwind_read.html
        │  phpwind_thread.html
        │  
        ├─form
        │  │  exception.jsp
        │  │  footer.jsp
        │  │  header.jsp
        │  │  
        │  ├─board
        │  │      addBoard.jsp
        │  │      listBoard.jsp
        │  │      setAdmin.jsp
        │  │      success.jsp
        │  │      
        │  ├─category
        │  │      addCategory.jsp
        │  │      listCategory.jsp
        │  │      success.jsp
        │  │      
        │  ├─person
        │  │      addPerson.jsp
        │  │      admin_cateory.jsp
        │  │      admin_login.jsp
        │  │      admin_success.jsp
        │  │      listPerson.jsp
        │  │      login.jsp
        │  │      success.jsp
        │  │      viewPerson.jsp
        │  │      
        │  ├─reply
        │  │      addReply.jsp
        │  │      success.jsp
        │  │      
        │  └─thread
        │          addThread.jsp
        │          listThread.jsp
        │          success.jsp
        │          viewThread.jsp
        │          
        ├─images
        │  │  user2.gif
        │  │  
        │  └─yellow
        │      │  banner.gif
        │      │  bg.png
        │      │  bg1.jpg
        │      │  dotB.png
        │      │  headerbg.png
        │      │  logo.gif
        │      │  logo.png
        │      │  new.gif
        │      │  post.png
        │      │  reply.png
        │      │  rss.png
        │      │  
        │      ├─file
        │      │      headtopic_1.gif
        │      │      multipage.gif
        │      │      new.gif
        │      │      
        │      ├─index
        │      │      cate_fold.gif
        │      │      home.gif
        │      │      home_menu.gif
        │      │      
        │      └─thread
        │              topichot.gif
        │              topicnew.gif
        │              
        ├─META-INF
        │      MANIFEST.MF
        │      
        ├─tiny_mce
        │  │  license.txt
        │  │  tiny_mce.js
        │  │  tiny_mce_popup.js
        │  │  tiny_mce_src.js
        │  │  
        │  ├─langs
        │  │      en.js
        │  │      
        │  ├─plugins
        │  │  ├─advhr
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  rule.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      advhr.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      rule.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─advimage
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  image.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      advimage.css
        │  │  │  │      
        │  │  │  ├─img
        │  │  │  │      sample.gif
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      image.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─advlink
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  link.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      advlink.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      advlink.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─autosave
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─bbcode
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─compat2x
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─contextmenu
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─directionality
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─emotions
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  emotions.htm
        │  │  │  │  
        │  │  │  ├─img
        │  │  │  │      smiley-cool.gif
        │  │  │  │      smiley-cry.gif
        │  │  │  │      smiley-embarassed.gif
        │  │  │  │      smiley-foot-in-mouth.gif
        │  │  │  │      smiley-frown.gif
        │  │  │  │      smiley-innocent.gif
        │  │  │  │      smiley-kiss.gif
        │  │  │  │      smiley-laughing.gif
        │  │  │  │      smiley-money-mouth.gif
        │  │  │  │      smiley-sealed.gif
        │  │  │  │      smiley-smile.gif
        │  │  │  │      smiley-surprised.gif
        │  │  │  │      smiley-tongue-out.gif
        │  │  │  │      smiley-undecided.gif
        │  │  │  │      smiley-wink.gif
        │  │  │  │      smiley-yell.gif
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      emotions.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─example
        │  │  │  │  dialog.htm
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  
        │  │  │  ├─img
        │  │  │  │      example.gif
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      dialog.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en.js
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─fullpage
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  fullpage.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      fullpage.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      fullpage.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─fullscreen
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      fullscreen.htm
        │  │  │      
        │  │  ├─iespell
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─inlinepopups
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  template.htm
        │  │  │  │  
        │  │  │  └─skins
        │  │  │      └─clearlooks2
        │  │  │          │  window.css
        │  │  │          │  
        │  │  │          └─img
        │  │  │                  alert.gif
        │  │  │                  button.gif
        │  │  │                  buttons.gif
        │  │  │                  confirm.gif
        │  │  │                  corners.gif
        │  │  │                  horizontal.gif
        │  │  │                  vertical.gif
        │  │  │                  
        │  │  ├─insertdatetime
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─layer
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─media
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  media.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      content.css
        │  │  │  │      media.css
        │  │  │  │      
        │  │  │  ├─img
        │  │  │  │      flash.gif
        │  │  │  │      flv_player.swf
        │  │  │  │      quicktime.gif
        │  │  │  │      realmedia.gif
        │  │  │  │      shockwave.gif
        │  │  │  │      trans.gif
        │  │  │  │      windowsmedia.gif
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      embed.js
        │  │  │  │      media.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─nonbreaking
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─noneditable
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─pagebreak
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      content.css
        │  │  │  │      
        │  │  │  └─img
        │  │  │          pagebreak.gif
        │  │  │          trans.gif
        │  │  │          
        │  │  ├─paste
        │  │  │  │  blank.htm
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  pastetext.htm
        │  │  │  │  pasteword.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      blank.css
        │  │  │  │      pasteword.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      pastetext.js
        │  │  │  │      pasteword.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─preview
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  example.html
        │  │  │  │  preview.html
        │  │  │  │  
        │  │  │  └─jscripts
        │  │  │          embed.js
        │  │  │          
        │  │  ├─print
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─safari
        │  │  │      blank.htm
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─save
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  ├─searchreplace
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  searchreplace.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      searchreplace.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      searchreplace.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─spellchecker
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      content.css
        │  │  │  │      
        │  │  │  └─img
        │  │  │          wline.gif
        │  │  │          
        │  │  ├─style
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  props.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      props.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      props.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─table
        │  │  │  │  cell.htm
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  merge_cells.htm
        │  │  │  │  row.htm
        │  │  │  │  table.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      cell.css
        │  │  │  │      row.css
        │  │  │  │      table.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      cell.js
        │  │  │  │      merge_cells.js
        │  │  │  │      row.js
        │  │  │  │      table.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─template
        │  │  │  │  blank.htm
        │  │  │  │  editor_plugin.js
        │  │  │  │  editor_plugin_src.js
        │  │  │  │  template.htm
        │  │  │  │  
        │  │  │  ├─css
        │  │  │  │      template.css
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      template.js
        │  │  │  │      
        │  │  │  └─langs
        │  │  │          en_dlg.js
        │  │  │          
        │  │  ├─visualchars
        │  │  │      editor_plugin.js
        │  │  │      editor_plugin_src.js
        │  │  │      
        │  │  └─xhtmlxtras
        │  │      │  abbr.htm
        │  │      │  acronym.htm
        │  │      │  attributes.htm
        │  │      │  cite.htm
        │  │      │  del.htm
        │  │      │  editor_plugin.js
        │  │      │  editor_plugin_src.js
        │  │      │  ins.htm
        │  │      │  
        │  │      ├─css
        │  │      │      attributes.css
        │  │      │      popup.css
        │  │      │      
        │  │      ├─js
        │  │      │      abbr.js
        │  │      │      acronym.js
        │  │      │      attributes.js
        │  │      │      cite.js
        │  │      │      del.js
        │  │      │      element_common.js
        │  │      │      ins.js
        │  │      │      
        │  │      └─langs
        │  │              en_dlg.js
        │  │              
        │  ├─themes
        │  │  ├─advanced
        │  │  │  │  about.htm
        │  │  │  │  anchor.htm
        │  │  │  │  charmap.htm
        │  │  │  │  color_picker.htm
        │  │  │  │  editor_template.js
        │  │  │  │  editor_template_src.js
        │  │  │  │  image.htm
        │  │  │  │  link.htm
        │  │  │  │  source_editor.htm
        │  │  │  │  
        │  │  │  ├─img
        │  │  │  │      colorpicker.jpg
        │  │  │  │      icons.gif
        │  │  │  │      
        │  │  │  ├─js
        │  │  │  │      about.js
        │  │  │  │      anchor.js
        │  │  │  │      charmap.js
        │  │  │  │      color_picker.js
        │  │  │  │      image.js
        │  │  │  │      link.js
        │  │  │  │      source_editor.js
        │  │  │  │      
        │  │  │  ├─langs
        │  │  │  │      en.js
        │  │  │  │      en_dlg.js
        │  │  │  │      
        │  │  │  └─skins
        │  │  │      ├─default
        │  │  │      │  │  content.css
        │  │  │      │  │  dialog.css
        │  │  │      │  │  ui.css
        │  │  │      │  │  
        │  │  │      │  └─img
        │  │  │      │          buttons.png
        │  │  │      │          items.gif
        │  │  │      │          menu_arrow.gif
        │  │  │      │          menu_check.gif
        │  │  │      │          progress.gif
        │  │  │      │          tabs.gif
        │  │  │      │          
        │  │  │      └─o2k7
        │  │  │          │  content.css
        │  │  │          │  dialog.css
        │  │  │          │  ui.css
        │  │  │          │  ui_black.css
        │  │  │          │  ui_silver.css
        │  │  │          │  
        │  │  │          └─img
        │  │  │                  button_bg.png
        │  │  │                  button_bg_black.png
        │  │  │                  button_bg_silver.png
        │  │  │                  
        │  │  └─simple
        │  │      │  editor_template.js
        │  │      │  editor_template_src.js
        │  │      │  
        │  │      ├─img
        │  │      │      icons.gif
        │  │      │      
        │  │      ├─langs
        │  │      │      en.js
        │  │      │      
        │  │      └─skins
        │  │          ├─default
        │  │          │      content.css
        │  │          │      ui.css
        │  │          │      
        │  │          └─o2k7
        │  │              │  content.css
        │  │              │  ui.css
        │  │              │  
        │  │              └─img
        │  │                      button_bg.png
        │  │                      
        │  └─utils
        │          editable_selects.js
        │          form_utils.js
        │          mctabs.js
        │          validate.js
        │          
        └─WEB-INF
            │  .struts-config.mex
            │  spring-form.tld
            │  spring.tld
            │  struts-bean.tld
            │  struts-config.xml
            │  struts-html.tld
            │  struts-logic.tld
            │  struts-nested.tld
            │  struts-tiles.tld
            │  validator-rules.xml
            │  web.xml
            │  
            ├─classes
            │  │  applicationContext.xml
            │  │  ApplicationResources.properties
            │  │  log4j.properties
            │  │  
            │  └─com
            │      └─helloweenvsfei
            │          └─forum
            │              ├─bean
            │              │      BaseBean.class
            │              │      Board.class
            │              │      Category.class
            │              │      Person.class
            │              │      Reply.class
            │              │      Thread.class
            │              │      
            │              ├─dao
            │              │  │  IDao.class
            │              │  │  
            │              │  └─impl
            │              │          DaoImpl.class
            │              │          
            │              ├─pagination
            │              │      Pagination.class
            │              │      
            │              ├─service
            │              │  │  IBoardService.class
            │              │  │  ICategoryService.class
            │              │  │  IPersonService.class
            │              │  │  IReplyService.class
            │              │  │  IService.class
            │              │  │  IThreadService.class
            │              │  │  
            │              │  └─impl
            │              │          BoardServiceImpl.class
            │              │          CategoryServiceImpl.class
            │              │          PersonServiceImpl.class
            │              │          ReplyServiceImpl.class
            │              │          ServiceImpl.class
            │              │          ThreadServiceImpl.class
            │              │          
            │              └─struts
            │                  ├─action
            │                  │      BoardAction.class
            │                  │      CategoryAction.class
            │                  │      ForumAction.class
            │                  │      PersonAction.class
            │                  │      ReplyAction.class
            │                  │      ThreadAction.class
            │                  │      
            │                  ├─exception
            │                  │      ForumExceptionHandler.class
            │                  │      
            │                  ├─form
            │                  │      BoardForm.class
            │                  │      CategoryForm.class
            │                  │      ForumForm.class
            │                  │      PersonForm.class
            │                  │      ReplyForm.class
            │                  │      ThreadForm.class
            │                  │      
            │                  ├─interceptor
            │                  │      LoginInterceptor.class
            │                  │      
            │                  └─util
            │                          MD5Util.class
            │                          PersonInfo.class
            │                          PersonUtil.class
            │                          
            └─lib
                    antlr-2.7.6.jar
                    antlr-2.7.6rc1.jar
                    antlr.jar
                    aopalliance.jar
                    asm-attrs.jar
                    asm-commons-2.2.3.jar
                    asm-util-2.2.3.jar
                    asm.jar
                    aspectjlib.jar
                    aspectjrt.jar
                    aspectjweaver.jar
                    bonecp-0.6.4.jar
                    bonecp-provider-0.6.4.jar
                    c3p0-0.9.1.2.jar
                    c3p0-0.9.1.jar
                    cglib-2.1.3.jar
                    cglib-nodep-2.1_3.jar
                    commons-attributes-api.jar
                    commons-attributes-compiler.jar
                    commons-beanutils-1.8.3.jar
                    commons-beanutils-bean-collections-1.8.3.jar
                    commons-beanutils-core-1.8.3.jar
                    commons-beanutils.jar
                    commons-codec.jar
                    commons-collections-2.1.1.jar
                    commons-collections-3.2.1.jar
                    commons-collections.jar
                    commons-dbcp-1.2.1.jar
                    commons-dbcp-1.2.jar
                    commons-dbcp.jar
                    commons-digester.jar
                    commons-fileupload.jar
                    commons-httpclient.jar
                    commons-io.jar
                    commons-lang-2.1.jar
                    commons-lang.jar
                    commons-logging-1.0.4.jar
                    commons-logging.jar
                    commons-pool-1.2.jar
                    commons-pool-1.5.4.jar
                    commons-validator.jar
                    concurrent-1.3.2.jar
                    connector.jar
                    cos.jar
                    dom4j-1.6.1.jar
                    ehcache-1.1.jar
                    ehcache-1.2.3.jar
                    ehcache-1.3.0.jar
                    ejb3-persistence.jar
                    freemarker.jar
                    google-collect-1.0.jar
                    hibernate-annotations.jar
                    hibernate-commons-annotations.jar
                    hibernate-entitymanager.jar
                    hibernate-validator.jar
                    hibernate3.jar
                    ibatis-2.3.0.677.jar
                    itext-1.3.jar
                    iText-2.0.7.jar
                    jaas.jar
                    jacc-1_0-fr.jar
                    jakarta-oro-2.0.8.jar
                    jakarta-oro.jar
                    jasperreports-1.3.4.jar
                    jasperreports-2.0.5.jar
                    javassist.jar
                    jaxen-1.1-beta-7.jar
                    jboss-archive-browsing.jar
                    jboss-cache.jar
                    jboss-common.jar
                    jboss-jmx.jar
                    jboss-system.jar
                    jdbc2_0-stdext.jar
                    jdo2-api.jar
                    jgroups-2.2.8.jar
                    jimi.jar
                    jotm.jar
                    jstl.jar
                    jta.jar
                    jxl.jar
                    log4j-1.2.11.jar
                    log4j-1.2.14.jar
                    log4j-1.2.15.jar
                    msbase.jar
                    mssqlserver.jar
                    msutil.jar
                    mysql-connector.jar
                    ojdbc14.jar
                    openjpa-0.9.7-incubating.jar
                    org.json.jar
                    orizone_common.jar
                    oscache-2.1.jar
                    persistence.jar
                    poi-2.5.1.jar
                    poi-3.0.1.jar
                    portlet-api.jar
                    proxool-0.8.3.jar
                    proxool-0.9.0RC3.jar
                    serp-1.12.1.jar
                    slf4j-api-1.5.11.jar
                    slf4j-log4j12-1[1].5.6.jar
                    spring-agent.jar
                    spring-aop.jar
                    spring-aspects.jar
                    spring-beans.jar
                    spring-context.jar
                    spring-core.jar
                    spring-dao.jar
                    spring-hibernate3.jar
                    spring-ibatis.jar
                    spring-jdbc.jar
                    spring-jdo.jar
                    spring-jpa.jar
                    spring-portlet.jar
                    spring-struts.jar
                    spring-tomcat-weaver.jar
                    spring-toplink.jar
                    spring-web.jar
                    spring-webmvc-portlet.jar
                    spring-webmvc-struts.jar
                    spring-webmvc.jar
                    spring.jar
                    standard.jar
                    struts.jar
                    swarmcache-1.0rc2.jar
                    toplink-api.jar
                    toplink-essentials.jar
                    velocity-1.5.jar
                    velocity-tools-view-1.3.jar
                    velocity-tools-view-1.4.jar
                    xapool.jar
                    xerces-2.6.2.jar
                    xml-apis.jar
                    

目 录
摘 要    0
Abstract    1
第1章 引言    1
1.1课题背景    1
1.2国内外研究现状    1
1.3本课题的研究意义    1
1.4 网上论坛系统特点    1
1.5本人所做的主要工作    2
第二章 可行性研究与需求分析    3
2.1 可行性研究    3
2.1.1 经济可行性    3
2.1.2 技术可行性    3
2.1.3 运行可行性    3
2.1.4 时间可行性    3
2.1.5 法律可行性    3
2.2 系统需求分析    4
2.2.1 系统开发运行环境    4
2.2.2 业务描述    4
2.2.3 系统功能概述    5
2.3.4 数据流程    5
2.3.5非功能性需求    6
2.3.6用户界面需求    6
2.3.7软硬件环境需求    6
2.3.8产品质量需求    7
2.3系统总体结构分析结论    7
第三章 相关技术分析    8
3.1 JSP技术简介    8
3.2 JSP工作原理    8
3.3 MVC 设计模式与Struts构造    8
3.3.1 MVC 设计模式    8
3.3.2 Struts框架技术    9
3.4 O/R映射与Hibernate构架    10
3.4.1 Hibernate框架    11
3.4.2 Hibernate的核心接口    11
3.6 开发平台    12
3.7 SQLSERVER 2000 数据库    13
第4章 系统总体设计    14
4.1系统分析的任务与步骤    14
4.1.1 系统分析的任务    14
4.1.2 系统分析的步骤    14
4.2论坛的功能模块图    14
4.3 数据库设计    15
4.3.1概念模型设计(E-R图)    15
4.3.2数据库表设计    16
第5章 界面设计    17
5.1 首页    18
5.2 用户注册    18
5.3 帖子浏览    19
5.4 发表帖子    19
5.5 管理中心    19
第6章 系统的调试与测试    21
6.1 测试概述    21
6.1.1软件测试的目的    21
6.1.2软件测试的任务    21
6.1.3测试环境    21
6.2 单元测试    22
6.2.1黑盒测试    22
6.2.2白盒测试    22
6.2.3模块接口测试    23
6.3 集成测试    23
6.3.1自顶向下集成    24
6.3.2确认测试标准    24
结论    25
参考文献    26
致  谢    27


标签:论坛,BBS

  • 专注毕业设计源码作品
  • 毕业设计源码论文全套
  • 每件作品均测试后上线
  • 提供所有教程和软件下载

Copyright © 2008-2024 jsjbysjw.com . All Rights Reserved. 备案号:苏ICP备2021056683号-4

  • 联系QQ:81677093
  • 微信:bysj1950