实例介绍
代码完整,包含数据库,数据库采用 mysql,基于 SSH 框架
【实例截图】
【核心代码】
基于ssh大学生社交平台mysql
├── 【256】E-基于ssh大学生社交平台mysql
│ ├── 【256】E-基于ssh大学生社交平台mysql.avi
│ ├── DB
│ │ └── sociality.sql
│ ├── 代码
│ │ ├── sociality
│ │ │ └── sociality
│ │ │ ├── build
│ │ │ │ └── classes
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── com
│ │ │ │ │ └── my
│ │ │ │ │ └── sociality
│ │ │ │ │ ├── action
│ │ │ │ │ │ ├── FriendAction.class
│ │ │ │ │ │ ├── LogAction.class
│ │ │ │ │ │ ├── LoginAction.class
│ │ │ │ │ │ ├── ManagerInfoAction.class
│ │ │ │ │ │ ├── MessageAction.class
│ │ │ │ │ │ ├── PersonalInfoAction.class
│ │ │ │ │ │ ├── PhotoAction.class
│ │ │ │ │ │ └── UserAction.class
│ │ │ │ │ ├── base
│ │ │ │ │ │ ├── dao
│ │ │ │ │ │ │ ├── BaseDao.class
│ │ │ │ │ │ │ └── impl
│ │ │ │ │ │ │ └── BaseDaoImpl.class
│ │ │ │ │ │ └── service
│ │ │ │ │ │ ├── BaseService.class
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ └── BaseServiceImpl.class
│ │ │ │ │ ├── bean
│ │ │ │ │ │ ├── Friend.class
│ │ │ │ │ │ ├── Log.class
│ │ │ │ │ │ ├── LogComment.class
│ │ │ │ │ │ ├── ManagerInfo.class
│ │ │ │ │ │ ├── Message.class
│ │ │ │ │ │ ├── PersonalInfo.class
│ │ │ │ │ │ ├── Photo.class
│ │ │ │ │ │ ├── PhotoComment.class
│ │ │ │ │ │ └── User.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── FriendDao.class
│ │ │ │ │ │ ├── impl
│ │ │ │ │ │ │ ├── FriendDaoImpl.class
│ │ │ │ │ │ │ ├── LogCommentDaoImpl.class
│ │ │ │ │ │ │ ├── LogDaoImpl.class
│ │ │ │ │ │ │ ├── ManagerInfoDaoImpl.class
│ │ │ │ │ │ │ ├── MessageDaoImpl.class
│ │ │ │ │ │ │ ├── PersonalInfoDaoImpl.class
│ │ │ │ │ │ │ ├── PhotoCommentDaoImpl.class
│ │ │ │ │ │ │ ├── PhotoDaoImpl.class
│ │ │ │ │ │ │ └── UserDaoImpl.class
│ │ │ │ │ │ ├── LogCommentDao.class
│ │ │ │ │ │ ├── LogDao.class
│ │ │ │ │ │ ├── ManagerInfoDao.class
│ │ │ │ │ │ ├── MessageDao.class
│ │ │ │ │ │ ├── PersonalInfoDao.class
│ │ │ │ │ │ ├── PhotoCommentDao.class
│ │ │ │ │ │ ├── PhotoDao.class
│ │ │ │ │ │ └── UserDao.class
│ │ │ │ │ ├── filter
│ │ │ │ │ │ ├── MyStrutsFilter.class
│ │ │ │ │ │ └── SystemContextFilter.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── FriendService.class
│ │ │ │ │ │ ├── impl
│ │ │ │ │ │ │ ├── FriendServiceImpl.class
│ │ │ │ │ │ │ ├── LogCommentServiceImpl.class
│ │ │ │ │ │ │ ├── LogServiceImpl.class
│ │ │ │ │ │ │ ├── ManagerInfoServiceImpl.class
│ │ │ │ │ │ │ ├── MessageServiceImpl.class
│ │ │ │ │ │ │ ├── PersonalInfoServiceImpl.class
│ │ │ │ │ │ │ ├── PhotoCommentServiceImpl.class
│ │ │ │ │ │ │ ├── PhotoServiceImpl.class
│ │ │ │ │ │ │ └── UserServiceImpl.class
│ │ │ │ │ │ ├── LogCommentService.class
│ │ │ │ │ │ ├── LogService.class
│ │ │ │ │ │ ├── ManagerInfoService.class
│ │ │ │ │ │ ├── MessageService.class
│ │ │ │ │ │ ├── PersonalInfoService.class
│ │ │ │ │ │ ├── PhotoCommentService.class
│ │ │ │ │ │ ├── PhotoService.class
│ │ │ │ │ │ └── UserService.class
│ │ │ │ │ └── utils
│ │ │ │ │ ├── DateJsonValueProcessor.class
│ │ │ │ │ ├── DateUtils.class
│ │ │ │ │ ├── IDUtil.class
│ │ │ │ │ ├── JsonUtil.class
│ │ │ │ │ ├── Pager.class
│ │ │ │ │ ├── SystemContext.class
│ │ │ │ │ ├── TimestampMorpher.class
│ │ │ │ │ └── UUIDUtils.class
│ │ │ │ ├── jdbc.properties
│ │ │ │ ├── log4j.properties
│ │ │ │ └── struts.xml
│ │ │ ├── config
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── jdbc.properties
│ │ │ │ ├── log4j.properties
│ │ │ │ └── struts.xml
│ │ │ ├── src
│ │ │ │ └── com
│ │ │ │ └── my
│ │ │ │ └── sociality
│ │ │ │ ├── action
│ │ │ │ │ ├── FriendAction.java
│ │ │ │ │ ├── LogAction.java
│ │ │ │ │ ├── LoginAction.java
│ │ │ │ │ ├── ManagerInfoAction.java
│ │ │ │ │ ├── MessageAction.java
│ │ │ │ │ ├── PersonalInfoAction.java
│ │ │ │ │ ├── PhotoAction.java
│ │ │ │ │ └── UserAction.java
│ │ │ │ ├── base
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BaseDao.java
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ └── BaseDaoImpl.java
│ │ │ │ │ └── service
│ │ │ │ │ ├── BaseService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── BaseServiceImpl.java
│ │ │ │ ├── bean
│ │ │ │ │ ├── Friend.java
│ │ │ │ │ ├── LogComment.java
│ │ │ │ │ ├── Log.java
│ │ │ │ │ ├── ManagerInfo.java
│ │ │ │ │ ├── Message.java
│ │ │ │ │ ├── PersonalInfo.java
│ │ │ │ │ ├── PhotoComment.java
│ │ │ │ │ ├── Photo.java
│ │ │ │ │ └── User.java
│ │ │ │ ├── dao
│ │ │ │ │ ├── FriendDao.java
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── FriendDaoImpl.java
│ │ │ │ │ │ ├── LogCommentDaoImpl.java
│ │ │ │ │ │ ├── LogDaoImpl.java
│ │ │ │ │ │ ├── ManagerInfoDaoImpl.java
│ │ │ │ │ │ ├── MessageDaoImpl.java
│ │ │ │ │ │ ├── PersonalInfoDaoImpl.java
│ │ │ │ │ │ ├── PhotoCommentDaoImpl.java
│ │ │ │ │ │ ├── PhotoDaoImpl.java
│ │ │ │ │ │ └── UserDaoImpl.java
│ │ │ │ │ ├── LogCommentDao.java
│ │ │ │ │ ├── LogDao.java
│ │ │ │ │ ├── ManagerInfoDao.java
│ │ │ │ │ ├── MessageDao.java
│ │ │ │ │ ├── PersonalInfoDao.java
│ │ │ │ │ ├── PhotoCommentDao.java
│ │ │ │ │ ├── PhotoDao.java
│ │ │ │ │ └── UserDao.java
│ │ │ │ ├── filter
│ │ │ │ │ ├── MyStrutsFilter.java
│ │ │ │ │ └── SystemContextFilter.java
│ │ │ │ ├── service
│ │ │ │ │ ├── FriendService.java
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── FriendServiceImpl.java
│ │ │ │ │ │ ├── LogCommentServiceImpl.java
│ │ │ │ │ │ ├── LogServiceImpl.java
│ │ │ │ │ │ ├── ManagerInfoServiceImpl.java
│ │ │ │ │ │ ├── MessageServiceImpl.java
│ │ │ │ │ │ ├── PersonalInfoServiceImpl.java
│ │ │ │ │ │ ├── PhotoCommentServiceImpl.java
│ │ │ │ │ │ ├── PhotoServiceImpl.java
│ │ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ │ ├── LogCommentService.java
│ │ │ │ │ ├── LogService.java
│ │ │ │ │ ├── ManagerInfoService.java
│ │ │ │ │ ├── MessageService.java
│ │ │ │ │ ├── PersonalInfoService.java
│ │ │ │ │ ├── PhotoCommentService.java
│ │ │ │ │ ├── PhotoService.java
│ │ │ │ │ └── UserService.java
│ │ │ │ └── utils
│ │ │ │ ├── DateUtils.java
│ │ │ │ ├── IDUtil.java
│ │ │ │ ├── JsonUtil.java
│ │ │ │ ├── Pager.java
│ │ │ │ ├── SystemContext.java
│ │ │ │ └── UUIDUtils.java
│ │ │ └── WebContent
│ │ │ ├── common
│ │ │ │ └── taglibs.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── resource
│ │ │ │ ├── back
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── animate.css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ │ ├── graph.css
│ │ │ │ │ │ ├── icon-font.min.css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── digital-7_italic-webfont.eot
│ │ │ │ │ │ ├── digital-7_italic-webfont.svg
│ │ │ │ │ │ ├── digital-7_italic-webfont.ttf
│ │ │ │ │ │ ├── digital-7_italic-webfont.woff
│ │ │ │ │ │ ├── digital-7_mono-webfont.eot
│ │ │ │ │ │ ├── digital-7_mono-webfont.svg
│ │ │ │ │ │ ├── digital-7_mono-webfont.ttf
│ │ │ │ │ │ ├── digital-7_mono-webfont.woff
│ │ │ │ │ │ ├── digital-7-webfont.eot
│ │ │ │ │ │ ├── digital-7-webfont.svg
│ │ │ │ │ │ ├── digital-7-webfont.ttf
│ │ │ │ │ │ ├── digital-7-webfont.woff
│ │ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ ├── WeatherIcons-Regular.otf
│ │ │ │ │ │ ├── weathericons-regular-webfont.eot
│ │ │ │ │ │ ├── weathericons-regular-webfont.svg
│ │ │ │ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ │ │ │ └── weathericons-regular-webfont.woff
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ ├── search.png
│ │ │ │ │ │ ├── tick.png
│ │ │ │ │ │ └── user.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ ├── Chart.js
│ │ │ │ │ ├── classie.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery.flexisel.js
│ │ │ │ │ ├── jquery.flot.min.js
│ │ │ │ │ ├── jquery.nicescroll.js
│ │ │ │ │ ├── scripts.js
│ │ │ │ │ ├── skycons.js
│ │ │ │ │ ├── uisearch.js
│ │ │ │ │ └── wow.min.js
│ │ │ │ ├── css
│ │ │ │ │ ├── colorbox.css
│ │ │ │ │ ├── colorpicker.css
│ │ │ │ │ ├── fullcalendar.css
│ │ │ │ │ ├── jquery.cleditor.css
│ │ │ │ │ ├── normalize.css
│ │ │ │ │ ├── style.css
│ │ │ │ │ ├── styles.css
│ │ │ │ │ └── tipsy.css
│ │ │ │ ├── Images
│ │ │ │ │ ├── Avatar
│ │ │ │ │ │ ├── avatar1.png
│ │ │ │ │ │ ├── avatar2.png
│ │ │ │ │ │ ├── avatar3.png
│ │ │ │ │ │ └── Thumbs.db
│ │ │ │ │ ├── ColorBox
│ │ │ │ │ │ ├── border.png
│ │ │ │ │ │ ├── controls.png
│ │ │ │ │ │ ├── ie6
│ │ │ │ │ │ │ ├── borderBottomCenter.png
│ │ │ │ │ │ │ ├── borderBottomLeft.png
│ │ │ │ │ │ │ ├── borderBottomRight.png
│ │ │ │ │ │ │ ├── borderMiddleLeft.png
│ │ │ │ │ │ │ ├── borderMiddleRight.png
│ │ │ │ │ │ │ ├── borderTopCenter.png
│ │ │ │ │ │ │ ├── borderTopLeft.png
│ │ │ │ │ │ │ └── borderTopRight.png
│ │ │ │ │ │ ├── loading_background.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── overlay.png
│ │ │ │ │ │ └── Thumbs.db
│ │ │ │ │ ├── ColorPicker
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── colorpicker_background.png
│ │ │ │ │ │ ├── colorpicker_hex.png
│ │ │ │ │ │ ├── colorpicker_hsb_b.png
│ │ │ │ │ │ ├── colorpicker_hsb_h.png
│ │ │ │ │ │ ├── colorpicker_hsb_s.png
│ │ │ │ │ │ ├── colorpicker_indic.gif
│ │ │ │ │ │ ├── colorpicker_overlay.png
│ │ │ │ │ │ ├── colorpicker_rgb_b.png
│ │ │ │ │ │ ├── colorpicker_rgb_g.png
│ │ │ │ │ │ ├── colorpicker_rgb_r.png
│ │ │ │ │ │ ├── colorpicker_select.gif
│ │ │ │ │ │ ├── colorpicker_submit.png
│ │ │ │ │ │ ├── custom_background.png
│ │ │ │ │ │ ├── custom_hex.png
│ │ │ │ │ │ ├── custom_hsb_b.png
│ │ │ │ │ │ ├── custom_hsb_h.png
│ │ │ │ │ │ ├── custom_hsb_s.png
│ │ │ │ │ │ ├── custom_indic.gif
│ │ │ │ │ │ ├── custom_rgb_b.png
│ │ │ │ │ │ ├── custom_rgb_g.png
│ │ │ │ │ │ ├── custom_rgb_r.png
│ │ │ │ │ │ ├── custom_submit.png
│ │ │ │ │ │ ├── select2.png
│ │ │ │ │ │ ├── select.png
│ │ │ │ │ │ ├── slider.png
│ │ │ │ │ │ └── Thumbs.db
│ │ │ │ │ ├── Icons
│ │ │ │ │ │ ├── 16
│ │ │ │ │ │ │ ├── i_16_add.png
│ │ │ │ │ │ │ ├── i_16_bars.png
│ │ │ │ │ │ │ ├── i_16_bottom_arrow.png
│ │ │ │ │ │ │ ├── i_16_calendar.png
│ │ │ │ │ │ │ ├── i_16_charts.png
│ │ │ │ │ │ │ ├── i_16_chats.png
│ │ │ │ │ │ │ ├── i_16_checked.png
│ │ │ │ │ │ │ ├── i_16_cHorizontal.png
│ │ │ │ │ │ │ ├── i_16_close.png
│ │ │ │ │ │ │ ├── i_16_dashboard.png
│ │ │ │ │ │ │ ├── i_16_data.png
│ │ │ │ │ │ │ ├── i_16_down.png
│ │ │ │ │ │ │ ├── i_16_downT.png
│ │ │ │ │ │ │ ├── i_16_files.png
│ │ │ │ │ │ │ ├── i_16_forms.png
│ │ │ │ │ │ │ ├── i_16_help.png
│ │ │ │ │ │ │ ├── i_16_icons.png
│ │ │ │ │ │ │ ├── i_16_login.png
│ │ │ │ │ │ │ ├── i_16_logout.png
│ │ │ │ │ │ │ ├── i_16_message.png
│ │ │ │ │ │ │ ├── i_16_notes.png
│ │ │ │ │ │ │ ├── i_16_options.png
│ │ │ │ │ │ │ ├── i_16_pacman.png
│ │ │ │ │ │ │ ├── i_16_pages.png
│ │ │ │ │ │ │ ├── i_16_pie.png
│ │ │ │ │ │ │ ├── i_16_profile.png
│ │ │ │ │ │ │ ├── i_16_progress.png
│ │ │ │ │ │ │ ├── i_16_radio.png
│ │ │ │ │ │ │ ├── i_16_resize.png
│ │ │ │ │ │ │ ├── i_16_selector.png
│ │ │ │ │ │ │ ├── i_16_settings.png
│ │ │ │ │ │ │ ├── i_16_settings_small.png
│ │ │ │ │ │ │ ├── i_16_sorting_asc.png
│ │ │ │ │ │ │ ├── i_16_sorting_desc.png
│ │ │ │ │ │ │ ├── i_16_sorting.png
│ │ │ │ │ │ │ ├── i_16_spinner.png
│ │ │ │ │ │ │ ├── i_16_table.png
│ │ │ │ │ │ │ ├── i_16_tables.png
│ │ │ │ │ │ │ ├── i_16_tabs.png
│ │ │ │ │ │ │ ├── i_16_tasks.png
│ │ │ │ │ │ │ ├── i_16_tooltip.png
│ │ │ │ │ │ │ ├── i_16_ui.png
│ │ │ │ │ │ │ ├── i_16_up.png
│ │ │ │ │ │ │ ├── i_16_valid.png
│ │ │ │ │ │ │ └── i_16_wysiwyg.png
│ │ │ │ │ │ ├── 18
│ │ │ │ │ │ │ └── i_18_search.png
│ │ │ │ │ │ ├── 22
│ │ │ │ │ │ │ ├── i_22_charts.png
│ │ │ │ │ │ │ ├── i_22_dashboard.png
│ │ │ │ │ │ │ ├── i_22_forms.png
│ │ │ │ │ │ │ ├── i_22_inbox.png
│ │ │ │ │ │ │ ├── i_22_pages.png
│ │ │ │ │ │ │ ├── i_22_search.png
│ │ │ │ │ │ │ ├── i_22_settings.png
│ │ │ │ │ │ │ ├── i_22_tables.png
│ │ │ │ │ │ │ ├── i_22_ui.png
│ │ │ │ │ │ │ └── i_22_upload.png
│ │ │ │ │ │ ├── 32
│ │ │ │ │ │ │ ├── i_32_charts.png
│ │ │ │ │ │ │ ├── i_32_dashboard.png
│ │ │ │ │ │ │ ├── i_32_delivery.png
│ │ │ │ │ │ │ ├── i_32_dollar.png
│ │ │ │ │ │ │ ├── i_32_forms.png
│ │ │ │ │ │ │ ├── i_32_inbox.png
│ │ │ │ │ │ │ ├── i_32_statistic.png
│ │ │ │ │ │ │ ├── i_32_support.png
│ │ │ │ │ │ │ ├── i_32_tables.png
│ │ │ │ │ │ │ └── i_32_ui.png
│ │ │ │ │ │ ├── Load
│ │ │ │ │ │ │ ├── load-10.gif
│ │ │ │ │ │ │ ├── load-11.gif
│ │ │ │ │ │ │ ├── load-12.gif
│ │ │ │ │ │ │ ├── load-13.gif
│ │ │ │ │ │ │ ├── load-14.gif
│ │ │ │ │ │ │ ├── load-1.gif
│ │ │ │ │ │ │ ├── load-2.gif
│ │ │ │ │ │ │ ├── load-3.gif
│ │ │ │ │ │ │ ├── load-4.gif
│ │ │ │ │ │ │ ├── load-5.gif
│ │ │ │ │ │ │ ├── load-6.gif
│ │ │ │ │ │ │ ├── load-7.gif
│ │ │ │ │ │ │ ├── load-8.gif
│ │ │ │ │ │ │ └── load-9.gif
│ │ │ │ │ │ └── Preview
│ │ │ │ │ │ ├── adidas_shirt.png
│ │ │ │ │ │ ├── analysis_analytics.png
│ │ │ │ │ │ ├── barcode_2.png
│ │ │ │ │ │ ├── battery_emtpy_0_percent.png
│ │ │ │ │ │ ├── beer_glass.png
│ │ │ │ │ │ ├── books_multiple.png
│ │ │ │ │ │ ├── chair_furniture.png
│ │ │ │ │ │ ├── chat_talk_speak.png
│ │ │ │ │ │ ├── clock_alarm.png
│ │ │ │ │ │ ├── clock_time_watch.png
│ │ │ │ │ │ ├── cloud_upload_arrow.png
│ │ │ │ │ │ ├── cloudy_rain_sun.png
│ │ │ │ │ │ ├── coda_leaf_nature.png
│ │ │ │ │ │ ├── contact_card_2.png
│ │ │ │ │ │ ├── cover_flow.png
│ │ │ │ │ │ ├── date_calendar.png
│ │ │ │ │ │ ├── directions_sign.png
│ │ │ │ │ │ ├── download_2.png
│ │ │ │ │ │ ├── email_envelope.png
│ │ │ │ │ │ ├── e.png
│ │ │ │ │ │ ├── excel_spreasheet_2.png
│ │ │ │ │ │ ├── expand_left.png
│ │ │ │ │ │ ├── file.png
│ │ │ │ │ │ ├── film_movie_clip_2.png
│ │ │ │ │ │ ├── film_movie_clip.png
│ │ │ │ │ │ ├── film_record.png
│ │ │ │ │ │ ├── finish_line.png
│ │ │ │ │ │ ├── folder_locked.png
│ │ │ │ │ │ ├── folder_music.png
│ │ │ │ │ │ ├── foot_steps_feet.png
│ │ │ │ │ │ ├── hd_high_definition_2.png
│ │ │ │ │ │ ├── house_home_building.png
│ │ │ │ │ │ ├── image_landscape.png
│ │ │ │ │ │ ├── inbox_4.png
│ │ │ │ │ │ ├── inbox_outbox.png
│ │ │ │ │ │ ├── ipod_classic.png
│ │ │ │ │ │ ├── key_password.png
│ │ │ │ │ │ ├── lemonade_stand_shop.png
│ │ │ │ │ │ ├── light_buld_idea.png
│ │ │ │ │ │ ├── like_thumbs_up.png
│ │ │ │ │ │ ├── link_seo.png
│ │ │ │ │ │ ├── money_coins_cash.png
│ │ │ │ │ │ ├── paper_camera_file.png
│ │ │ │ │ │ ├── paypal_2.png
│ │ │ │ │ │ ├── photography_camera.png
│ │ │ │ │ │ ├── plane.png
│ │ │ │ │ │ ├── power_chord.png
│ │ │ │ │ │ ├── price_money_tag.png
│ │ │ │ │ │ ├── screen_monitor_computer.png
│ │ │ │ │ │ ├── shopping_cart.png
│ │ │ │ │ │ ├── shopping_cart_webshop.png
│ │ │ │ │ │ └── speak_yell_blog_advertising.png
│ │ │ │ │ ├── kanrisha_logo.png
│ │ │ │ │ ├── LightBox
│ │ │ │ │ │ ├── preview_big.png
│ │ │ │ │ │ ├── preview.png
│ │ │ │ │ │ └── Thumbs.db
│ │ │ │ │ ├── Pages
│ │ │ │ │ │ ├── 403.png
│ │ │ │ │ │ ├── 404.png
│ │ │ │ │ │ └── Thumbs.db
│ │ │ │ │ ├── Patterns
│ │ │ │ │ │ ├── pattern1.png
│ │ │ │ │ │ ├── pattern2.png
│ │ │ │ │ │ ├── pattern3.png
│ │ │ │ │ │ ├── pattern4.png
│ │ │ │ │ │ ├── pattern5.png
│ │ │ │ │ │ ├── pattern6.png
│ │ │ │ │ │ └── Thumbs.db
│ │ │ │ │ ├── Textures
│ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ ├── drop_menu.png
│ │ │ │ │ │ ├── orders_stats.png
│ │ │ │ │ │ ├── pattern1.png
│ │ │ │ │ │ ├── pattern2.png
│ │ │ │ │ │ ├── pattern3.png
│ │ │ │ │ │ ├── pattern4.png
│ │ │ │ │ │ ├── pattern5.png
│ │ │ │ │ │ ├── pattern6.png
│ │ │ │ │ │ ├── separator_circle.png
│ │ │ │ │ │ ├── separator_line.png
│ │ │ │ │ │ ├── separator_long.png
│ │ │ │ │ │ ├── separator_menu.png
│ │ │ │ │ │ ├── separator_short.png
│ │ │ │ │ │ ├── small_count.png
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── tickets_stats.png
│ │ │ │ │ │ ├── toolbar.gif
│ │ │ │ │ │ ├── top_panel.png
│ │ │ │ │ │ ├── top_search_input.png
│ │ │ │ │ │ ├── top_search_submit.png
│ │ │ │ │ │ ├── top_tooltip_arrow.png
│ │ │ │ │ │ ├── top_tooltip.png
│ │ │ │ │ │ ├── users_stats.png
│ │ │ │ │ │ ├── visitor_stats.png
│ │ │ │ │ │ └── wHead.png
│ │ │ │ │ └── user_avatar.png
│ │ │ │ ├── img
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ └── we.jpg
│ │ │ │ ├── Javascript
│ │ │ │ │ ├── ClEditor
│ │ │ │ │ │ └── jquery.cleditor.js
│ │ │ │ │ ├── ColorBox
│ │ │ │ │ │ └── jquery.colorbox.js
│ │ │ │ │ ├── ColorPicker
│ │ │ │ │ │ └── colorpicker.js
│ │ │ │ │ ├── ColResizable
│ │ │ │ │ │ └── colResizable-1.3.js
│ │ │ │ │ ├── DataTables
│ │ │ │ │ │ └── jquery.dataTables.min.js
│ │ │ │ │ ├── Elastic
│ │ │ │ │ │ └── jquery.elastic.js
│ │ │ │ │ ├── Flot
│ │ │ │ │ │ ├── excanvas.js
│ │ │ │ │ │ ├── jquery.flot.js
│ │ │ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ │ │ └── jquery.flot.resize.js
│ │ │ │ │ ├── FullCalendar
│ │ │ │ │ │ └── fullcalendar.js
│ │ │ │ │ ├── jQuery
│ │ │ │ │ │ └── jquery-1.7.2.min.js
│ │ │ │ │ ├── jQueryUI
│ │ │ │ │ │ └── jquery-ui-1.8.21.min.js
│ │ │ │ │ ├── kanrisha.js
│ │ │ │ │ ├── MaskedInput
│ │ │ │ │ │ └── jquery.maskedinput-1.3.js
│ │ │ │ │ ├── SuperTextarea
│ │ │ │ │ │ └── jquery.supertextarea.min.js
│ │ │ │ │ ├── Tipsy
│ │ │ │ │ │ └── jquery.tipsy.js
│ │ │ │ │ ├── UISpinner
│ │ │ │ │ │ └── ui.spinner.js
│ │ │ │ │ └── Uniform
│ │ │ │ │ └── jquery.uniform.js
│ │ │ │ ├── js
│ │ │ │ │ ├── cookie_util.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ ├── pintuer.js
│ │ │ │ │ └── ueditor
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── anchor
│ │ │ │ │ │ │ └── anchor.html
│ │ │ │ │ │ ├── attachment
│ │ │ │ │ │ │ ├── attachment.css
│ │ │ │ │ │ │ ├── attachment.html
│ │ │ │ │ │ │ ├── attachment.js
│ │ │ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── background
│ │ │ │ │ │ │ ├── background.css
│ │ │ │ │ │ │ ├── background.html
│ │ │ │ │ │ │ ├── background.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── charts
│ │ │ │ │ │ │ ├── chart.config.js
│ │ │ │ │ │ │ ├── charts.css
│ │ │ │ │ │ │ ├── charts.html
│ │ │ │ │ │ │ ├── charts.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ │ └── charts5.png
│ │ │ │ │ │ ├── emotion
│ │ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ │ ├── emotion.html
│ │ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ │ └── yface.gif
│ │ │ │ │ │ ├── gmap
│ │ │ │ │ │ │ └── gmap.html
│ │ │ │ │ │ ├── help
│ │ │ │ │ │ │ ├── help.css
│ │ │ │ │ │ │ ├── help.html
│ │ │ │ │ │ │ └── help.js
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── insertframe
│ │ │ │ │ │ │ └── insertframe.html
│ │ │ │ │ │ ├── internal.js
│ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ └── link.html
│ │ │ │ │ │ ├── map
│ │ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ │ └── show.html
│ │ │ │ │ │ ├── music
│ │ │ │ │ │ │ ├── music.css
│ │ │ │ │ │ │ ├── music.html
│ │ │ │ │ │ │ └── music.js
│ │ │ │ │ │ ├── preview
│ │ │ │ │ │ │ └── preview.html
│ │ │ │ │ │ ├── scrawl
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ │ │ └── undo.png
│ │ │ │ │ │ │ ├── scrawl.css
│ │ │ │ │ │ │ ├── scrawl.html
│ │ │ │ │ │ │ └── scrawl.js
│ │ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ │ └── snapscreen.html
│ │ │ │ │ │ ├── spechars
│ │ │ │ │ │ │ ├── spechars.html
│ │ │ │ │ │ │ └── spechars.js
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ ├── dragicon.png
│ │ │ │ │ │ │ ├── edittable.css
│ │ │ │ │ │ │ ├── edittable.html
│ │ │ │ │ │ │ ├── edittable.js
│ │ │ │ │ │ │ ├── edittd.html
│ │ │ │ │ │ │ └── edittip.html
│ │ │ │ │ │ ├── template
│ │ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ │ │ └── pre4.png
│ │ │ │ │ │ │ ├── template.css
│ │ │ │ │ │ │ ├── template.html
│ │ │ │ │ │ │ └── template.js
│ │ │ │ │ │ ├── video
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ │ ├── video.html
│ │ │ │ │ │ │ └── video.js
│ │ │ │ │ │ ├── webapp
│ │ │ │ │ │ │ └── webapp.html
│ │ │ │ │ │ └── wordimage
│ │ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ │ ├── tangram.js
│ │ │ │ │ │ ├── wordimage.html
│ │ │ │ │ │ └── wordimage.js
│ │ │ │ │ ├── jsp
│ │ │ │ │ │ ├── config.json
│ │ │ │ │ │ └── controller.jsp
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── en
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ │ └── upload.png
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ │ └── upload.png
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── themes
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ │ └── iframe.css
│ │ │ │ │ ├── third-party
│ │ │ │ │ │ ├── codemirror
│ │ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ │ ├── highcharts
│ │ │ │ │ │ │ ├── adapters
│ │ │ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ │ │ ├── highcharts.js
│ │ │ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ │ │ ├── modules
│ │ │ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ │ │ └── themes
│ │ │ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ │ │ ├── dark-green.js
│ │ │ │ │ │ │ ├── gray.js
│ │ │ │ │ │ │ ├── grid.js
│ │ │ │ │ │ │ └── skies.js
│ │ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ │ └── shCore.js
│ │ │ │ │ │ ├── video-js
│ │ │ │ │ │ │ ├── font
│ │ │ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ │ │ ├── video.dev.js
│ │ │ │ │ │ │ ├── video.js
│ │ │ │ │ │ │ ├── video-js.css
│ │ │ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ │ │ └── video-js.swf
│ │ │ │ │ │ ├── webuploader
│ │ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ │ └── zeroclipboard
│ │ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ │ ├── ueditor.all.min.js
│ │ │ │ │ ├── ueditor.config.js
│ │ │ │ │ └── ueditor.parse.min.js
│ │ │ │ └── laydate
│ │ │ │ ├── laydate.js
│ │ │ │ ├── need
│ │ │ │ │ └── laydate.css
│ │ │ │ └── skins
│ │ │ │ ├── dahong
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── danlan
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── default
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── qianhuang
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── yahui
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ └── yalan
│ │ │ │ ├── icon.png
│ │ │ │ └── laydate.css
│ │ │ └── WEB-INF
│ │ │ ├── jsp
│ │ │ │ ├── friend
│ │ │ │ │ ├── friend.jsp
│ │ │ │ │ └── search.jsp
│ │ │ │ ├── log
│ │ │ │ │ ├── addlog.jsp
│ │ │ │ │ ├── all.jsp
│ │ │ │ │ ├── getlog.jsp
│ │ │ │ │ ├── getone.jsp
│ │ │ │ │ ├── log.jsp
│ │ │ │ │ ├── sharelog.jsp
│ │ │ │ │ └── update.jsp
│ │ │ │ ├── login
│ │ │ │ │ ├── backindex.jsp
│ │ │ │ │ ├── index.jsp
│ │ │ │ │ └── login.jsp
│ │ │ │ ├── managerInfo
│ │ │ │ │ ├── addman.jsp
│ │ │ │ │ ├── info.jsp
│ │ │ │ │ └── psw.jsp
│ │ │ │ ├── message
│ │ │ │ │ └── message.jsp
│ │ │ │ ├── personalInfo
│ │ │ │ │ └── info.jsp
│ │ │ │ ├── photo
│ │ │ │ │ ├── addphoto.jsp
│ │ │ │ │ ├── all.jsp
│ │ │ │ │ ├── getphoto.jsp
│ │ │ │ │ ├── photo.jsp
│ │ │ │ │ └── sharephoto.jsp
│ │ │ │ └── user
│ │ │ │ ├── all.jsp
│ │ │ │ ├── psw.jsp
│ │ │ │ └── update.jsp
│ │ │ ├── lib
│ │ │ │ ├── antlr-2.7.7.jar
│ │ │ │ ├── asm-3.3.jar
│ │ │ │ ├── asm-commons-3.3.jar
│ │ │ │ ├── asm-tree-3.3.jar
│ │ │ │ ├── c3p0-0.9.1.2.jar
│ │ │ │ ├── commons-collections-3.1.jar
│ │ │ │ ├── commons-dbcp.jar
│ │ │ │ ├── commons-fileupload-1.3.jar
│ │ │ │ ├── commons-io-2.0.1.jar
│ │ │ │ ├── commons-lang3-3.1.jar
│ │ │ │ ├── commons-logging-1.1.3.jar
│ │ │ │ ├── commons-pool.jar
│ │ │ │ ├── com.springsource.net.sf.cglib-2.2.0.jar
│ │ │ │ ├── com.springsource.org.aopalliance-1.0.0.jar
│ │ │ │ ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
│ │ │ │ ├── dom4j-1.6.1.jar
│ │ │ │ ├── ECharts-2.1.8.jar
│ │ │ │ ├── freemarker-2.3.19.jar
│ │ │ │ ├── gson-2.3.jar
│ │ │ │ ├── hibernate-commons-annotations-4.0.2.Final.jar
│ │ │ │ ├── hibernate-core-4.2.4.Final.jar
│ │ │ │ ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│ │ │ │ ├── javassist-3.15.0-GA.jar
│ │ │ │ ├── jboss-logging-3.1.0.GA.jar
│ │ │ │ ├── jboss-transaction-api_1.1_spec-1.0.1.Final.jar
│ │ │ │ ├── json-2.2.1.jar
│ │ │ │ ├── json.jar
│ │ │ │ ├── json-lib-2.3-jdk15.jar
│ │ │ │ ├── json-lib-2.4-jdk15.jar
│ │ │ │ ├── json-parser_fat.jar
│ │ │ │ ├── jsoup-1.8.1.jar
│ │ │ │ ├── jstl-1.2.jar
│ │ │ │ ├── log4j-1.2.17.jar
│ │ │ │ ├── mysql-connector-java-5.1.7-bin.jar
│ │ │ │ ├── ognl-3.0.6.jar
│ │ │ │ ├── ojdbc6.jar
│ │ │ │ ├── pager-taglib.jar
│ │ │ │ ├── servlet-api.jar
│ │ │ │ ├── spring-aop-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-aspects-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-beans-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-context-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-core-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-expression-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-jdbc-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-orm-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-tx-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-web-4.0.0.RELEASE.jar
│ │ │ │ ├── spring-webmvc-4.0.0.RELEASE.jar
│ │ │ │ ├── standard-1.1.2.jar
│ │ │ │ ├── struts2-core-2.3.15.3.jar
│ │ │ │ ├── struts2-spring-plugin-2.3.15.3.jar
│ │ │ │ ├── ueditor-1.1.1.1.jar
│ │ │ │ └── xwork-core-2.3.15.3.jar
│ │ │ ├── tlds
│ │ │ │ ├── c.tld
│ │ │ │ ├── fmt.tld
│ │ │ │ ├── fn.tld
│ │ │ │ └── pager-taglib.tld
│ │ │ └── web.xml
│ │ └── sociality.zip
│ └── 必读.txt
└── 【更多JSP毕业设计下载链接:www.tfssweb.com】.url
161 directories, 822 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论