实例介绍
自己写的javaweb旅游网站,用户登录,有自动回答机器人,访网易问答功能。可以上传图片和论坛交流等
【实例截图】
【核心代码】
Travel
└── Travel
├── db_travel.sql
├── src
│ ├── config.properties
│ ├── dao
│ │ ├── impl
│ │ │ └── SqlDAOImpl.java
│ │ └── SqlDAO.java
│ ├── entity
│ │ ├── Admin.java
│ │ ├── Message.java
│ │ ├── Problem.java
│ │ ├── Reply.java
│ │ └── User.java
│ ├── util
│ │ ├── ConfigUtil.java
│ │ ├── CookieUtil.java
│ │ ├── DAOFactory.java
│ │ ├── DateUtil.java
│ │ ├── DBUtil.java
│ │ └── Md5.java
│ └── web
│ ├── ActionServlet.java
│ ├── CheckCodeServlet.java
│ └── SearchSuggest.java
└── WebRoot
├── adminAnswer.jsp
├── adminindex.jsp
├── adminListUser.jsp
├── adminlogin.jsp
├── adminReply.jsp
├── answerModify.jsp
├── comment.jsp
├── common
│ ├── foot.jsp
│ ├── header.jsp
│ ├── MyJsp.jsp
│ ├── navigation.jsp
│ ├── registsiden.jsp
│ └── top.jsp
├── crossdomain.xml
├── css
│ ├── admin.css
│ ├── autoComplete.css
│ ├── css.css
│ ├── demo.css
│ ├── luiyan.css
│ ├── tab.css
│ ├── themes
│ │ ├── black
│ │ │ ├── accordion.css
│ │ │ ├── calendar.css
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── bootstrap
│ │ │ ├── accordion.css
│ │ │ ├── calendar.css
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── default
│ │ │ ├── accordion.css
│ │ │ ├── calendar.css
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── gray
│ │ │ ├── accordion.css
│ │ │ ├── calendar.css
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── icon.css
│ │ ├── icons
│ │ │ ├── back.png
│ │ │ ├── blank.gif
│ │ │ ├── cancel.png
│ │ │ ├── cut.png
│ │ │ ├── edit_add.png
│ │ │ ├── edit_remove.png
│ │ │ ├── filesave.png
│ │ │ ├── help.png
│ │ │ ├── mini_add.png
│ │ │ ├── mini_edit.png
│ │ │ ├── mini_refresh.png
│ │ │ ├── no.png
│ │ │ ├── ok.png
│ │ │ ├── pencil.png
│ │ │ ├── print.png
│ │ │ ├── redo.png
│ │ │ ├── reload.png
│ │ │ ├── search.png
│ │ │ ├── sum.png
│ │ │ ├── tip.png
│ │ │ └── undo.png
│ │ └── metro
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combobox.css
│ │ ├── combo.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menubutton.css
│ │ ├── menu.css
│ │ ├── messager.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ └── top.css
├── default.jpg
├── FaustCplus.swf
├── header.jsp
├── images
│ ├── 001.gif
│ ├── 002.gif
│ ├── 005.gif
│ ├── 010.gif
│ ├── 037.gif
│ ├── 083.gif
│ ├── 114.gif
│ ├── 1.png
│ ├── 311.gif
│ ├── a1.gif
│ ├── a.gif
│ ├── arrow_082.gif
│ ├── back.gif
│ ├── bgfooter.gif
│ ├── bg.gif
│ ├── bg.jpg
│ ├── bgmain.gif
│ ├── bullet_green.gif
│ ├── bullet_grey.gif
│ ├── button.gif
│ ├── button.jpg
│ ├── cancel.gif
│ ├── checked.gif
│ ├── chenke.png
│ ├── clock.gif
│ ├── clouds.jpg
│ ├── content_bg.gif
│ ├── copyright_left.gif
│ ├── copyright_mid.gif
│ ├── copyright_right.gif
│ ├── denglu.png
│ ├── error.gif
│ ├── first.gif
│ ├── footer_bg.gif
│ ├── footer.gif
│ ├── go.gif
│ ├── g_page.gif
│ ├── header.jpg
│ ├── head.png
│ ├── home2.gif
│ ├── home.gif
│ ├── last.gif
│ ├── lei.png
│ ├── li.jpg
│ ├── loading1.gif
│ ├── login_1.gif
│ ├── login_2.gif
│ ├── login_3.gif
│ ├── login_4.gif
│ ├── login_5.gif
│ ├── login_6.gif
│ ├── master.gif
│ ├── menu_bg.gif
│ ├── menu.gif
│ ├── nane.gif
│ ├── nav_active.gif
│ ├── next.gif
│ ├── password_bg.gif
│ ├── pwd.png
│ ├── serverbg.gif
│ ├── suf.gif
│ ├── tab_03.gif
│ ├── tab_05.gif
│ ├── tab_07.gif
│ ├── tab_12.gif
│ ├── tab_14.gif
│ ├── tab_16.gif
│ ├── tab_20.gif
│ ├── tab_21.gif
│ ├── tab_22.gif
│ ├── tableheader-bg.gif
│ ├── tableheader-bg-grey.gif
│ ├── tip.gif
│ ├── top.jpg
│ ├── top_left.gif
│ ├── unchecked.gif
│ ├── username_bg.gif
│ ├── username.png
│ ├── VerifyCode.png
│ ├── xian.jpg
│ ├── xian.png
│ ├── xiaohei2.gif
│ ├── xiaohei.gif
│ └── xiaoyi.gif
├── index.jsp
├── js
│ ├── admin.js
│ ├── ajax_search.js
│ ├── autoComplete.js
│ ├── jquery-1.3.2.min.js
│ ├── jquery.easyui.min.js
│ ├── jquery.min.js
│ └── regist.js
├── login.jsp
├── main.jsp
├── menu.jsp
├── META-INF
│ └── MANIFEST.MF
├── modifyInfo.jsp
├── modifyPassword.jsp
├── mygenter.jsp
├── regist.jsp
├── robothelp.jsp
├── robot.jsp
├── serch.jsp
├── style.css
├── styles.css
├── swfobject.js
├── updatetouxiang.jsp
├── upload.jsp
├── WEB-INF
│ ├── classes
│ │ ├── config.properties
│ │ ├── dao
│ │ │ ├── impl
│ │ │ │ └── SqlDAOImpl.class
│ │ │ └── SqlDAO.class
│ │ ├── entity
│ │ │ ├── Admin.class
│ │ │ ├── Message.class
│ │ │ ├── Problem.class
│ │ │ ├── Reply.class
│ │ │ └── User.class
│ │ ├── util
│ │ │ ├── ConfigUtil.class
│ │ │ ├── CookieUtil.class
│ │ │ ├── DAOFactory.class
│ │ │ ├── DateUtil.class
│ │ │ ├── DBUtil.class
│ │ │ └── Md5.class
│ │ └── web
│ │ ├── ActionServlet.class
│ │ ├── CheckCodeServlet.class
│ │ └── SearchSuggest.class
│ ├── lib
│ │ └── mysql-connector-java.jar
│ └── web.xml
└── www.jsp
33 directories, 417 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论