在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例WEB/WAP应用开发 → javaweb 留言板 hibernate servlet

javaweb 留言板 hibernate servlet

WEB/WAP应用开发

下载此实例
  • 开发语言:Java
  • 实例大小:2.82M
  • 下载次数:5
  • 浏览次数:37
  • 发布时间:2023-04-13
  • 实例类别:WEB/WAP应用开发
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 相关标签: Hibernate servlet Javaweb java web

实例介绍

【实例简介】javaweb 留言板 hibernate servlet

【实例截图】

from clipboard

from clipboard

【核心代码】
文件清单
└── guestbookv2.0
    ├── SQL
    │   └── CREATETABLE.SQL
    ├── src
    │   ├── com
    │   │   └── v0429
    │   │       └── gusetbook
    │   │           ├── DAO
    │   │           │   ├── GuestbookDao.java
    │   │           │   └── hibernate
    │   │           │       └── GuestbookDaoHibernate.java
    │   │           ├── modal
    │   │           │   ├── Guestbook.hbm.xml
    │   │           │   └── Guestbook.java
    │   │           ├── util
    │   │           │   ├── HibernateSessionFactoryUtil.java
    │   │           │   └── StringUtil.java
    │   │           └── web
    │   │               ├── AddMessageSerlvet.java
    │   │               ├── CharacterEncodingFilter.java
    │   │               └── GetMessageServlet.java
    │   └── hibernate.cfg.xml
    └── WebRoot
        ├── addMessage.jsp
        ├── addResult.jsp
        ├── error404.htm
        ├── error500.jsp
        ├── fckeditor
        │   ├── _documentation.html
        │   ├── editor
        │   │   ├── css
        │   │   │   ├── behaviors
        │   │   │   │   ├── disablehandles.htc
        │   │   │   │   └── showtableborders.htc
        │   │   │   ├── fck_editorarea.css
        │   │   │   ├── fck_internal.css
        │   │   │   ├── fck_showtableborders_gecko.css
        │   │   │   └── images
        │   │   │       ├── block_address.png
        │   │   │       ├── block_blockquote.png
        │   │   │       ├── block_div.png
        │   │   │       ├── block_h1.png
        │   │   │       ├── block_h2.png
        │   │   │       ├── block_h3.png
        │   │   │       ├── block_h4.png
        │   │   │       ├── block_h5.png
        │   │   │       ├── block_h6.png
        │   │   │       ├── block_p.png
        │   │   │       ├── block_pre.png
        │   │   │       ├── fck_anchor.gif
        │   │   │       ├── fck_flashlogo.gif
        │   │   │       ├── fck_hiddenfield.gif
        │   │   │       ├── fck_pagebreak.gif
        │   │   │       └── fck_plugin.gif
        │   │   ├── dialog
        │   │   │   ├── common
        │   │   │   │   ├── fck_dialog_common.css
        │   │   │   │   ├── fck_dialog_common.js
        │   │   │   │   └── images
        │   │   │   │       ├── locked.gif
        │   │   │   │       ├── reset.gif
        │   │   │   │       └── unlocked.gif
        │   │   │   ├── fck_about
        │   │   │   │   ├── logo_fckeditor.gif
        │   │   │   │   ├── logo_fredck.gif
        │   │   │   │   └── sponsors
        │   │   │   │       └── spellchecker_net.gif
        │   │   │   ├── fck_about.html
        │   │   │   ├── fck_anchor.html
        │   │   │   ├── fck_button.html
        │   │   │   ├── fck_checkbox.html
        │   │   │   ├── fck_colorselector.html
        │   │   │   ├── fck_div.html
        │   │   │   ├── fck_docprops
        │   │   │   │   └── fck_document_preview.html
        │   │   │   ├── fck_docprops.html
        │   │   │   ├── fck_flash
        │   │   │   │   ├── fck_flash.js
        │   │   │   │   └── fck_flash_preview.html
        │   │   │   ├── fck_flash.html
        │   │   │   ├── fck_form.html
        │   │   │   ├── fck_hiddenfield.html
        │   │   │   ├── fck_image
        │   │   │   │   ├── fck_image.js
        │   │   │   │   └── fck_image_preview.html
        │   │   │   ├── fck_image.html
        │   │   │   ├── fck_link
        │   │   │   │   └── fck_link.js
        │   │   │   ├── fck_link.html
        │   │   │   ├── fck_listprop.html
        │   │   │   ├── fck_paste.html
        │   │   │   ├── fck_radiobutton.html
        │   │   │   ├── fck_replace.html
        │   │   │   ├── fck_select
        │   │   │   │   └── fck_select.js
        │   │   │   ├── fck_select.html
        │   │   │   ├── fck_smiley.html
        │   │   │   ├── fck_source.html
        │   │   │   ├── fck_specialchar.html
        │   │   │   ├── fck_spellerpages
        │   │   │   │   └── spellerpages
        │   │   │   │       ├── blank.html
        │   │   │   │       ├── controls.html
        │   │   │   │       ├── controlWindow.js
        │   │   │   │       ├── server-scripts
        │   │   │   │       │   ├── spellchecker.cfm
        │   │   │   │       │   ├── spellchecker.php
        │   │   │   │       │   └── spellchecker.pl
        │   │   │   │       ├── spellchecker.html
        │   │   │   │       ├── spellChecker.js
        │   │   │   │       ├── spellerStyle.css
        │   │   │   │       └── wordWindow.js
        │   │   │   ├── fck_spellerpages.html
        │   │   │   ├── fck_tablecell.html
        │   │   │   ├── fck_table.html
        │   │   │   ├── fck_template
        │   │   │   │   └── images
        │   │   │   │       ├── template1.gif
        │   │   │   │       ├── template2.gif
        │   │   │   │       └── template3.gif
        │   │   │   ├── fck_template.html
        │   │   │   ├── fck_textarea.html
        │   │   │   └── fck_textfield.html
        │   │   ├── dtd
        │   │   │   ├── fck_dtd_test.html
        │   │   │   ├── fck_xhtml10strict.js
        │   │   │   └── fck_xhtml10transitional.js
        │   │   ├── fckdebug.html
        │   │   ├── fckdialog.html
        │   │   ├── fckeditor.html
        │   │   ├── fckeditor.original.html
        │   │   ├── filemanager
        │   │   │   ├── browser
        │   │   │   │   └── default
        │   │   │   │       ├── browser.css
        │   │   │   │       ├── browser.html
        │   │   │   │       ├── frmactualfolder.html
        │   │   │   │       ├── frmcreatefolder.html
        │   │   │   │       ├── frmfolders.html
        │   │   │   │       ├── frmresourceslist.html
        │   │   │   │       ├── frmresourcetype.html
        │   │   │   │       ├── frmupload.html
        │   │   │   │       ├── images
        │   │   │   │       │   ├── ButtonArrow.gif
        │   │   │   │       │   ├── Folder32.gif
        │   │   │   │       │   ├── Folder.gif
        │   │   │   │       │   ├── FolderOpened32.gif
        │   │   │   │       │   ├── FolderOpened.gif
        │   │   │   │       │   ├── FolderUp.gif
        │   │   │   │       │   ├── icons
        │   │   │   │       │   │   ├── 32
        │   │   │   │       │   │   │   ├── ai.gif
        │   │   │   │       │   │   │   ├── avi.gif
        │   │   │   │       │   │   │   ├── bmp.gif
        │   │   │   │       │   │   │   ├── cs.gif
        │   │   │   │       │   │   │   ├── default.icon.gif
        │   │   │   │       │   │   │   ├── dll.gif
        │   │   │   │       │   │   │   ├── doc.gif
        │   │   │   │       │   │   │   ├── exe.gif
        │   │   │   │       │   │   │   ├── fla.gif
        │   │   │   │       │   │   │   ├── gif.gif
        │   │   │   │       │   │   │   ├── htm.gif
        │   │   │   │       │   │   │   ├── html.gif
        │   │   │   │       │   │   │   ├── jpg.gif
        │   │   │   │       │   │   │   ├── js.gif
        │   │   │   │       │   │   │   ├── mdb.gif
        │   │   │   │       │   │   │   ├── mp3.gif
        │   │   │   │       │   │   │   ├── pdf.gif
        │   │   │   │       │   │   │   ├── png.gif
        │   │   │   │       │   │   │   ├── ppt.gif
        │   │   │   │       │   │   │   ├── rdp.gif
        │   │   │   │       │   │   │   ├── swf.gif
        │   │   │   │       │   │   │   ├── swt.gif
        │   │   │   │       │   │   │   ├── txt.gif
        │   │   │   │       │   │   │   ├── vsd.gif
        │   │   │   │       │   │   │   ├── xls.gif
        │   │   │   │       │   │   │   ├── xml.gif
        │   │   │   │       │   │   │   └── zip.gif
        │   │   │   │       │   │   ├── ai.gif
        │   │   │   │       │   │   ├── avi.gif
        │   │   │   │       │   │   ├── bmp.gif
        │   │   │   │       │   │   ├── cs.gif
        │   │   │   │       │   │   ├── default.icon.gif
        │   │   │   │       │   │   ├── dll.gif
        │   │   │   │       │   │   ├── doc.gif
        │   │   │   │       │   │   ├── exe.gif
        │   │   │   │       │   │   ├── fla.gif
        │   │   │   │       │   │   ├── gif.gif
        │   │   │   │       │   │   ├── htm.gif
        │   │   │   │       │   │   ├── html.gif
        │   │   │   │       │   │   ├── jpg.gif
        │   │   │   │       │   │   ├── js.gif
        │   │   │   │       │   │   ├── mdb.gif
        │   │   │   │       │   │   ├── mp3.gif
        │   │   │   │       │   │   ├── pdf.gif
        │   │   │   │       │   │   ├── png.gif
        │   │   │   │       │   │   ├── ppt.gif
        │   │   │   │       │   │   ├── rdp.gif
        │   │   │   │       │   │   ├── swf.gif
        │   │   │   │       │   │   ├── swt.gif
        │   │   │   │       │   │   ├── txt.gif
        │   │   │   │       │   │   ├── vsd.gif
        │   │   │   │       │   │   ├── xls.gif
        │   │   │   │       │   │   ├── xml.gif
        │   │   │   │       │   │   └── zip.gif
        │   │   │   │       │   └── spacer.gif
        │   │   │   │       └── js
        │   │   │   │           ├── common.js
        │   │   │   │           └── fckxml.js
        │   │   │   └── connectors
        │   │   │       ├── asp
        │   │   │       │   ├── basexml.asp
        │   │   │       │   ├── class_upload.asp
        │   │   │       │   ├── commands.asp
        │   │   │       │   ├── config.asp
        │   │   │       │   ├── connector.asp
        │   │   │       │   ├── io.asp
        │   │   │       │   ├── upload.asp
        │   │   │       │   └── util.asp
        │   │   │       ├── aspx
        │   │   │       │   ├── config.ascx
        │   │   │       │   ├── connector.aspx
        │   │   │       │   └── upload.aspx
        │   │   │       ├── cfm
        │   │   │       │   ├── cf5_connector.cfm
        │   │   │       │   ├── cf5_upload.cfm
        │   │   │       │   ├── cf_basexml.cfm
        │   │   │       │   ├── cf_commands.cfm
        │   │   │       │   ├── cf_connector.cfm
        │   │   │       │   ├── cf_io.cfm
        │   │   │       │   ├── cf_upload.cfm
        │   │   │       │   ├── cf_util.cfm
        │   │   │       │   ├── config.cfm
        │   │   │       │   ├── connector.cfm
        │   │   │       │   ├── image.cfc
        │   │   │       │   ├── ImageObject.cfc
        │   │   │       │   └── upload.cfm
        │   │   │       ├── lasso
        │   │   │       │   ├── config.lasso
        │   │   │       │   ├── connector.lasso
        │   │   │       │   └── upload.lasso
        │   │   │       ├── perl
        │   │   │       │   ├── basexml.pl
        │   │   │       │   ├── commands.pl
        │   │   │       │   ├── connector.cgi
        │   │   │       │   ├── io.pl
        │   │   │       │   ├── upload.cgi
        │   │   │       │   ├── upload_fck.pl
        │   │   │       │   └── util.pl
        │   │   │       ├── php
        │   │   │       │   ├── basexml.php
        │   │   │       │   ├── commands.php
        │   │   │       │   ├── config.php
        │   │   │       │   ├── connector.php
        │   │   │       │   ├── io.php
        │   │   │       │   ├── phpcompat.php
        │   │   │       │   ├── upload.php
        │   │   │       │   └── util.php
        │   │   │       ├── py
        │   │   │       │   ├── config.py
        │   │   │       │   ├── connector.py
        │   │   │       │   ├── fckcommands.py
        │   │   │       │   ├── fckconnector.py
        │   │   │       │   ├── fckoutput.py
        │   │   │       │   ├── fckutil.py
        │   │   │       │   ├── htaccess.txt
        │   │   │       │   ├── upload.py
        │   │   │       │   ├── wsgi.py
        │   │   │       │   └── zope.py
        │   │   │       ├── test.html
        │   │   │       └── uploadtest.html
        │   │   ├── images
        │   │   │   ├── anchor.gif
        │   │   │   ├── arrow_ltr.gif
        │   │   │   ├── arrow_rtl.gif
        │   │   │   ├── smiley
        │   │   │   │   └── msn
        │   │   │   │       ├── angel_smile.gif
        │   │   │   │       ├── angry_smile.gif
        │   │   │   │       ├── broken_heart.gif
        │   │   │   │       ├── cake.gif
        │   │   │   │       ├── confused_smile.gif
        │   │   │   │       ├── cry_smile.gif
        │   │   │   │       ├── devil_smile.gif
        │   │   │   │       ├── embaressed_smile.gif
        │   │   │   │       ├── envelope.gif
        │   │   │   │       ├── heart.gif
        │   │   │   │       ├── kiss.gif
        │   │   │   │       ├── lightbulb.gif
        │   │   │   │       ├── omg_smile.gif
        │   │   │   │       ├── regular_smile.gif
        │   │   │   │       ├── sad_smile.gif
        │   │   │   │       ├── shades_smile.gif
        │   │   │   │       ├── teeth_smile.gif
        │   │   │   │       ├── thumbs_down.gif
        │   │   │   │       ├── thumbs_up.gif
        │   │   │   │       ├── tounge_smile.gif
        │   │   │   │       ├── whatchutalkingabout_smile.gif
        │   │   │   │       └── wink_smile.gif
        │   │   │   └── spacer.gif
        │   │   ├── js
        │   │   │   ├── fckadobeair.js
        │   │   │   ├── fckeditorcode_gecko.js
        │   │   │   └── fckeditorcode_ie.js
        │   │   ├── lang
        │   │   │   ├── af.js
        │   │   │   ├── ar.js
        │   │   │   ├── bg.js
        │   │   │   ├── bn.js
        │   │   │   ├── bs.js
        │   │   │   ├── ca.js
        │   │   │   ├── cs.js
        │   │   │   ├── da.js
        │   │   │   ├── de.js
        │   │   │   ├── el.js
        │   │   │   ├── en-au.js
        │   │   │   ├── en-ca.js
        │   │   │   ├── en.js
        │   │   │   ├── en-uk.js
        │   │   │   ├── eo.js
        │   │   │   ├── es.js
        │   │   │   ├── et.js
        │   │   │   ├── eu.js
        │   │   │   ├── fa.js
        │   │   │   ├── fi.js
        │   │   │   ├── fo.js
        │   │   │   ├── fr-ca.js
        │   │   │   ├── fr.js
        │   │   │   ├── gl.js
        │   │   │   ├── gu.js
        │   │   │   ├── he.js
        │   │   │   ├── hi.js
        │   │   │   ├── hr.js
        │   │   │   ├── hu.js
        │   │   │   ├── it.js
        │   │   │   ├── ja.js
        │   │   │   ├── km.js
        │   │   │   ├── ko.js
        │   │   │   ├── lt.js
        │   │   │   ├── lv.js
        │   │   │   ├── mn.js
        │   │   │   ├── ms.js
        │   │   │   ├── nb.js
        │   │   │   ├── nl.js
        │   │   │   ├── no.js
        │   │   │   ├── pl.js
        │   │   │   ├── pt-br.js
        │   │   │   ├── pt.js
        │   │   │   ├── ro.js
        │   │   │   ├── ru.js
        │   │   │   ├── sk.js
        │   │   │   ├── sl.js
        │   │   │   ├── sr.js
        │   │   │   ├── sr-latn.js
        │   │   │   ├── sv.js
        │   │   │   ├── th.js
        │   │   │   ├── _translationstatus.txt
        │   │   │   ├── tr.js
        │   │   │   ├── uk.js
        │   │   │   ├── vi.js
        │   │   │   ├── zh-cn.js
        │   │   │   └── zh.js
        │   │   ├── plugins
        │   │   │   ├── autogrow
        │   │   │   │   └── fckplugin.js
        │   │   │   ├── bbcode
        │   │   │   │   ├── fckplugin.js
        │   │   │   │   └── _sample
        │   │   │   │       ├── sample.config.js
        │   │   │   │       └── sample.html
        │   │   │   ├── dragresizetable
        │   │   │   │   └── fckplugin.js
        │   │   │   ├── placeholder
        │   │   │   │   ├── fck_placeholder.html
        │   │   │   │   ├── fckplugin.js
        │   │   │   │   ├── lang
        │   │   │   │   │   ├── de.js
        │   │   │   │   │   ├── en.js
        │   │   │   │   │   ├── es.js
        │   │   │   │   │   ├── fr.js
        │   │   │   │   │   ├── it.js
        │   │   │   │   │   └── pl.js
        │   │   │   │   └── placeholder.gif
        │   │   │   ├── simplecommands
        │   │   │   │   └── fckplugin.js
        │   │   │   └── tablecommands
        │   │   │       └── fckplugin.js
        │   │   ├── skins
        │   │   │   ├── default
        │   │   │   │   ├── fck_dialog.css
        │   │   │   │   ├── fck_dialog_ie6.js
        │   │   │   │   ├── fck_editor.css
        │   │   │   │   ├── fck_strip.gif
        │   │   │   │   └── images
        │   │   │   │       ├── dialog.sides.gif
        │   │   │   │       ├── dialog.sides.png
        │   │   │   │       ├── dialog.sides.rtl.png
        │   │   │   │       ├── sprites.gif
        │   │   │   │       ├── sprites.png
        │   │   │   │       ├── toolbar.arrowright.gif
        │   │   │   │       ├── toolbar.buttonarrow.gif
        │   │   │   │       ├── toolbar.collapse.gif
        │   │   │   │       ├── toolbar.end.gif
        │   │   │   │       ├── toolbar.expand.gif
        │   │   │   │       ├── toolbar.separator.gif
        │   │   │   │       └── toolbar.start.gif
        │   │   │   ├── _fckviewstrips.html
        │   │   │   ├── office2003
        │   │   │   │   ├── fck_dialog.css
        │   │   │   │   ├── fck_dialog_ie6.js
        │   │   │   │   ├── fck_editor.css
        │   │   │   │   ├── fck_strip.gif
        │   │   │   │   └── images
        │   │   │   │       ├── dialog.sides.gif
        │   │   │   │       ├── dialog.sides.png
        │   │   │   │       ├── dialog.sides.rtl.png
        │   │   │   │       ├── sprites.gif
        │   │   │   │       ├── sprites.png
        │   │   │   │       ├── toolbar.arrowright.gif
        │   │   │   │       ├── toolbar.bg.gif
        │   │   │   │       ├── toolbar.buttonarrow.gif
        │   │   │   │       ├── toolbar.collapse.gif
        │   │   │   │       ├── toolbar.end.gif
        │   │   │   │       ├── toolbar.expand.gif
        │   │   │   │       ├── toolbar.separator.gif
        │   │   │   │       └── toolbar.start.gif
        │   │   │   └── silver
        │   │   │       ├── fck_dialog.css
        │   │   │       ├── fck_dialog_ie6.js
        │   │   │       ├── fck_editor.css
        │   │   │       ├── fck_strip.gif
        │   │   │       └── images
        │   │   │           ├── dialog.sides.gif
        │   │   │           ├── dialog.sides.png
        │   │   │           ├── dialog.sides.rtl.png
        │   │   │           ├── sprites.gif
        │   │   │           ├── sprites.png
        │   │   │           ├── toolbar.arrowright.gif
        │   │   │           ├── toolbar.buttonarrow.gif
        │   │   │           ├── toolbar.buttonbg.gif
        │   │   │           ├── toolbar.collapse.gif
        │   │   │           ├── toolbar.end.gif
        │   │   │           ├── toolbar.expand.gif
        │   │   │           ├── toolbar.separator.gif
        │   │   │           └── toolbar.start.gif
        │   │   └── _source
        │   │       ├── classes
        │   │       │   ├── fckcontextmenu.js
        │   │       │   ├── fckdataprocessor.js
        │   │       │   ├── fckdocumentfragment_gecko.js
        │   │       │   ├── fckdocumentfragment_ie.js
        │   │       │   ├── fckdomrange_gecko.js
        │   │       │   ├── fckdomrange_ie.js
        │   │       │   ├── fckdomrangeiterator.js
        │   │       │   ├── fckdomrange.js
        │   │       │   ├── fckeditingarea.js
        │   │       │   ├── fckelementpath.js
        │   │       │   ├── fckenterkey.js
        │   │       │   ├── fckevents.js
        │   │       │   ├── fckhtmliterator.js
        │   │       │   ├── fckicon.js
        │   │       │   ├── fckiecleanup.js
        │   │       │   ├── fckimagepreloader.js
        │   │       │   ├── fckkeystrokehandler.js
        │   │       │   ├── fckmenublock.js
        │   │       │   ├── fckmenublockpanel.js
        │   │       │   ├── fckmenuitem.js
        │   │       │   ├── fckpanel.js
        │   │       │   ├── fckplugin.js
        │   │       │   ├── fckspecialcombo.js
        │   │       │   ├── fckstyle.js
        │   │       │   ├── fcktoolbarbreak_gecko.js
        │   │       │   ├── fcktoolbarbreak_ie.js
        │   │       │   ├── fcktoolbarbutton.js
        │   │       │   ├── fcktoolbarbuttonui.js
        │   │       │   ├── fcktoolbarfontformatcombo.js
        │   │       │   ├── fcktoolbarfontscombo.js
        │   │       │   ├── fcktoolbarfontsizecombo.js
        │   │       │   ├── fcktoolbar.js
        │   │       │   ├── fcktoolbarpanelbutton.js
        │   │       │   ├── fcktoolbarspecialcombo.js
        │   │       │   ├── fcktoolbarstylecombo.js
        │   │       │   ├── fckw3crange.js
        │   │       │   ├── fckxml_gecko.js
        │   │       │   ├── fckxml_ie.js
        │   │       │   └── fckxml.js
        │   │       ├── commandclasses
        │   │       │   ├── fckblockquotecommand.js
        │   │       │   ├── fckcorestylecommand.js
        │   │       │   ├── fckfitwindow.js
        │   │       │   ├── fckindentcommands.js
        │   │       │   ├── fckjustifycommands.js
        │   │       │   ├── fcklistcommands.js
        │   │       │   ├── fcknamedcommand.js
        │   │       │   ├── fck_othercommands.js
        │   │       │   ├── fckpasteplaintextcommand.js
        │   │       │   ├── fckpastewordcommand.js
        │   │       │   ├── fckremoveformatcommand.js
        │   │       │   ├── fckshowblocks.js
        │   │       │   ├── fckspellcheckcommand_gecko.js
        │   │       │   ├── fckspellcheckcommand_ie.js
        │   │       │   ├── fckstylecommand.js
        │   │       │   ├── fcktablecommand.js
        │   │       │   └── fcktextcolorcommand.js
        │   │       ├── fckconstants.js
        │   │       ├── fckeditorapi.js
        │   │       ├── fckjscoreextensions.js
        │   │       ├── fckscriptloader.js
        │   │       └── internals
        │   │           ├── fckbrowserinfo.js
        │   │           ├── fckcodeformatter.js
        │   │           ├── fckcommands.js
        │   │           ├── fckconfig.js
        │   │           ├── fck_contextmenu.js
        │   │           ├── fckdebug_empty.js
        │   │           ├── fckdebug.js
        │   │           ├── fckdialog.js
        │   │           ├── fckdocumentprocessor.js
        │   │           ├── fckdomtools.js
        │   │           ├── fck_gecko.js
        │   │           ├── fck_ie.js
        │   │           ├── fck.js
        │   │           ├── fcklanguagemanager.js
        │   │           ├── fcklisthandler.js
        │   │           ├── fcklistslib.js
        │   │           ├── fckplugins.js
        │   │           ├── fckregexlib.js
        │   │           ├── fckselection_gecko.js
        │   │           ├── fckselection_ie.js
        │   │           ├── fckselection.js
        │   │           ├── fckstyles.js
        │   │           ├── fcktablehandler_gecko.js
        │   │           ├── fcktablehandler_ie.js
        │   │           ├── fcktablehandler.js
        │   │           ├── fcktoolbaritems.js
        │   │           ├── fcktoolbarset.js
        │   │           ├── fcktools_gecko.js
        │   │           ├── fcktools_ie.js
        │   │           ├── fcktools.js
        │   │           ├── fckundo.js
        │   │           ├── fckurlparams.js
        │   │           ├── fckxhtmlentities.js
        │   │           ├── fckxhtml_gecko.js
        │   │           ├── fckxhtml_ie.js
        │   │           └── fckxhtml.js
        │   ├── fckconfig.js
        │   ├── fckeditor.afp
        │   ├── fckeditor.asp
        │   ├── fckeditor.cfc
        │   ├── fckeditor.cfm
        │   ├── fckeditor.js
        │   ├── fckeditor.lasso
        │   ├── fckeditor.php
        │   ├── fckeditor_php4.php
        │   ├── fckeditor_php5.php
        │   ├── fckeditor.pl
        │   ├── fckeditor.py
        │   ├── fckpackager.xml
        │   ├── fckstyles.xml
        │   ├── fcktemplates.xml
        │   ├── fckutils.cfm
        │   ├── license.txt
        │   ├── _samples
        │   │   ├── adobeair
        │   │   │   ├── application.xml
        │   │   │   ├── icons
        │   │   │   │   ├── 128.png
        │   │   │   │   ├── 16.png
        │   │   │   │   ├── 32.png
        │   │   │   │   └── 48.png
        │   │   │   ├── package.bat
        │   │   │   ├── run.bat
        │   │   │   ├── sample01_cert.pfx
        │   │   │   └── sample01.html
        │   │   ├── afp
        │   │   │   ├── fck.afpa
        │   │   │   ├── fck.afpa.code
        │   │   │   ├── sample01.afp
        │   │   │   ├── sample02.afp
        │   │   │   ├── sample03.afp
        │   │   │   ├── sample04.afp
        │   │   │   └── sampleposteddata.afp
        │   │   ├── asp
        │   │   │   ├── sample01.asp
        │   │   │   ├── sample02.asp
        │   │   │   ├── sample03.asp
        │   │   │   ├── sample04.asp
        │   │   │   └── sampleposteddata.asp
        │   │   ├── cfm
        │   │   │   ├── sample01.cfm
        │   │   │   ├── sample01_mx.cfm
        │   │   │   ├── sample02.cfm
        │   │   │   ├── sample02_mx.cfm
        │   │   │   ├── sample03.cfm
        │   │   │   ├── sample03_mx.cfm
        │   │   │   ├── sample04.cfm
        │   │   │   ├── sample04_mx.cfm
        │   │   │   └── sampleposteddata.cfm
        │   │   ├── default.html
        │   │   ├── html
        │   │   │   ├── assets
        │   │   │   │   ├── sample06.config.js
        │   │   │   │   ├── sample11_frame.html
        │   │   │   │   ├── sample14.config.js
        │   │   │   │   ├── sample14.styles.css
        │   │   │   │   ├── sample15.config.js
        │   │   │   │   ├── sample16.config.js
        │   │   │   │   ├── sample16.fla
        │   │   │   │   ├── sample16.swf
        │   │   │   │   └── swfobject.js
        │   │   │   ├── sample01.html
        │   │   │   ├── sample02.html
        │   │   │   ├── sample03.html
        │   │   │   ├── sample04.html
        │   │   │   ├── sample05.html
        │   │   │   ├── sample06.html
        │   │   │   ├── sample07.html
        │   │   │   ├── sample08.html
        │   │   │   ├── sample09.html
        │   │   │   ├── sample10.html
        │   │   │   ├── sample11.html
        │   │   │   ├── sample12.html
        │   │   │   ├── sample13.html
        │   │   │   ├── sample14.html
        │   │   │   ├── sample15.html
        │   │   │   └── sample16.html
        │   │   ├── lasso
        │   │   │   ├── sample01.lasso
        │   │   │   ├── sample02.lasso
        │   │   │   ├── sample03.lasso
        │   │   │   ├── sample04.lasso
        │   │   │   └── sampleposteddata.lasso
        │   │   ├── perl
        │   │   │   ├── sample01.cgi
        │   │   │   ├── sample02.cgi
        │   │   │   ├── sample03.cgi
        │   │   │   ├── sample04.cgi
        │   │   │   └── sampleposteddata.cgi
        │   │   ├── php
        │   │   │   ├── sample01.php
        │   │   │   ├── sample02.php
        │   │   │   ├── sample03.php
        │   │   │   ├── sample04.php
        │   │   │   └── sampleposteddata.php
        │   │   ├── _plugins
        │   │   │   ├── findreplace
        │   │   │   │   ├── fckplugin.js
        │   │   │   │   ├── find.gif
        │   │   │   │   ├── find.html
        │   │   │   │   ├── lang
        │   │   │   │   │   ├── en.js
        │   │   │   │   │   ├── fr.js
        │   │   │   │   │   └── it.js
        │   │   │   │   ├── replace.gif
        │   │   │   │   └── replace.html
        │   │   │   └── samples
        │   │   │       └── fckplugin.js
        │   │   ├── py
        │   │   │   ├── sample01.py
        │   │   │   └── sampleposteddata.py
        │   │   ├── sample.css
        │   │   └── sampleslist.html
        │   ├── _upgrade.html
        │   ├── _whatsnew_history.html
        │   └── _whatsnew.html
        ├── footer.htm
        ├── getMessage.jsp
        ├── header.jsp
        ├── index.jsp
        ├── js
        │   ├── validation-config.dtd
        │   ├── validation-config.xml
        │   └── validation-framework.js
        ├── META-INF
        │   └── MANIFEST.MF
        └── WEB-INF
            ├── classes
            │   ├── com
            │   │   └── v0429
            │   │       └── gusetbook
            │   │           ├── DAO
            │   │           │   ├── GuestbookDao.class
            │   │           │   └── hibernate
            │   │           │       └── GuestbookDaoHibernate.class
            │   │           ├── modal
            │   │           │   ├── Guestbook.class
            │   │           │   └── Guestbook.hbm.xml
            │   │           ├── util
            │   │           │   ├── HibernateSessionFactoryUtil.class
            │   │           │   └── StringUtil.class
            │   │           └── web
            │   │               ├── AddMessageSerlvet.class
            │   │               ├── CharacterEncodingFilter.class
            │   │               └── GetMessageServlet.class
            │   └── hibernate.cfg.xml
            ├── lib
            │   └── classes12.jar
            └── web.xml

102 directories, 596 files

实例下载地址

javaweb 留言板 hibernate servlet

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警