实例介绍
该项目采用SSH框架进行开发,在功能上划分为三个角色:管理员、教师和学生。每个角色的功能权限都不尽相同。管理员用户拥有最高权限,教师可以对学生进行管理,学生可以进行课程查询和请假等操作。
【实例截图】
【核心代码】
会员管理
└── 会员管理
├── AttendanceManager
│ ├── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── jsp
│ │ │ │ ├── 404.jsp
│ │ │ │ ├── Member
│ │ │ │ │ └── w_button.jsp
│ │ │ │ ├── banji
│ │ │ │ │ ├── banjiadd.jsp
│ │ │ │ │ ├── banjilist.jsp
│ │ │ │ │ └── banjiupdate.jsp
│ │ │ │ ├── error.jsp
│ │ │ │ ├── index.jsp
│ │ │ │ ├── kaoqinlog
│ │ │ │ │ ├── kaoqinlogadd.jsp
│ │ │ │ │ ├── kaoqinloglist.jsp
│ │ │ │ │ ├── kaoqinloglist2.jsp
│ │ │ │ │ └── kaoqinlogupdate.jsp
│ │ │ │ ├── kecheng
│ │ │ │ │ ├── kechengadd.jsp
│ │ │ │ │ ├── kechenglist.jsp
│ │ │ │ │ ├── kechenglist2.jsp
│ │ │ │ │ └── kechengupdate.jsp
│ │ │ │ ├── login.jsp
│ │ │ │ ├── login_dialog.jsp
│ │ │ │ ├── manage
│ │ │ │ │ ├── pwd.jsp
│ │ │ │ │ ├── useradd.jsp
│ │ │ │ │ ├── userlist.jsp
│ │ │ │ │ ├── userlist2.jsp
│ │ │ │ │ ├── usershow.jsp
│ │ │ │ │ ├── userupdate.jsp
│ │ │ │ │ └── w_button.jsp
│ │ │ │ ├── qingjiadan
│ │ │ │ │ ├── qingjiadanadd.jsp
│ │ │ │ │ ├── qingjiadanlist.jsp
│ │ │ │ │ ├── qingjiadanupdate.jsp
│ │ │ │ │ └── qingjiadanupdate_sh.jsp
│ │ │ │ └── subject
│ │ │ │ ├── subjectadd.jsp
│ │ │ │ ├── subjectlist.jsp
│ │ │ │ └── subjectupdate.jsp
│ │ │ ├── lib
│ │ │ │ ├── antlr-2.7.6.jar
│ │ │ │ ├── aopalliance.jar
│ │ │ │ ├── aspectjrt.jar
│ │ │ │ ├── aspectjweaver.jar
│ │ │ │ ├── commons-collections-3.1.jar
│ │ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ │ ├── commons-io-1.3.2.jar
│ │ │ │ ├── commons-logging-1.1.1.jar
│ │ │ │ ├── dom4j-1.6.1.jar
│ │ │ │ ├── editor.jar
│ │ │ │ ├── freemarker-2.3.16.jar
│ │ │ │ ├── hibernate-jpa-2.0-api-1.0.0.Final.jar
│ │ │ │ ├── hibernate3.jar
│ │ │ │ ├── javassist-3.9.0.GA.jar
│ │ │ │ ├── jsf-api.jar
│ │ │ │ ├── jsf-impl.jar
│ │ │ │ ├── jstl-1.2.jar
│ │ │ │ ├── jta-1.1.jar
│ │ │ │ ├── jtds-1.2.jar
│ │ │ │ ├── jxl.jar
│ │ │ │ ├── log4j-1.2.14.jar
│ │ │ │ ├── mysql-connector-java-5.0.8-bin.jar
│ │ │ │ ├── ognl-3.0.jar
│ │ │ │ ├── ojdbc6.jar
│ │ │ │ ├── org.springframework.aop-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.asm-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.aspects-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.beans-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.context-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.context.support-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.core-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.expression-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.instrument-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.instrument.tomcat-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.jdbc-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.jms-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.orm-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.oxm-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.test-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.transaction-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.web-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.web.portlet-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.web.servlet-3.0.4.RELEASE.jar
│ │ │ │ ├── org.springframework.web.struts-3.0.4.RELEASE.jar
│ │ │ │ ├── proxool-0.9.1.jar
│ │ │ │ ├── proxool-cglib.jar
│ │ │ │ ├── slf4j-api-1.5.8.jar
│ │ │ │ ├── slf4j-log4j12-1.5.8.jar
│ │ │ │ ├── struts2-core-2.2.1.jar
│ │ │ │ ├── struts2-spring-plugin-2.2.1.jar
│ │ │ │ └── xwork-core-2.2.1.jar
│ │ │ └── web.xml
│ │ ├── css
│ │ │ ├── login.css
│ │ │ └── styles.css
│ │ ├── images
│ │ │ ├── 404
│ │ │ │ ├── bg.gif
│ │ │ │ ├── emessage.gif
│ │ │ │ ├── error.gif
│ │ │ │ ├── left.gif
│ │ │ │ └── right.gif
│ │ │ └── image004.png
│ │ ├── index.html
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── dfd.js
│ │ │ └── jquery-1.4.2.min.js
│ │ └── ui
│ │ ├── dwz.frag.xml
│ │ ├── js
│ │ │ ├── dwz.accordion.js
│ │ │ ├── dwz.ajax.js
│ │ │ ├── dwz.alertMsg.js
│ │ │ ├── dwz.barDrag.js
│ │ │ ├── dwz.checkbox.js
│ │ │ ├── dwz.combox.js
│ │ │ ├── dwz.contextmenu.js
│ │ │ ├── dwz.core.js
│ │ │ ├── dwz.cssTable.js
│ │ │ ├── dwz.database.js
│ │ │ ├── dwz.datepicker.js
│ │ │ ├── dwz.dialog.js
│ │ │ ├── dwz.dialogDrag.js
│ │ │ ├── dwz.drag.js
│ │ │ ├── dwz.effects.js
│ │ │ ├── dwz.history.js
│ │ │ ├── dwz.min.js
│ │ │ ├── dwz.navTab.js
│ │ │ ├── dwz.pagination.js
│ │ │ ├── dwz.panel.js
│ │ │ ├── dwz.regional.zh.js
│ │ │ ├── dwz.resize.js
│ │ │ ├── dwz.scrollCenter.js
│ │ │ ├── dwz.stable.js
│ │ │ ├── dwz.switchEnv.js
│ │ │ ├── dwz.tab.js
│ │ │ ├── dwz.taskBar.js
│ │ │ ├── dwz.theme.js
│ │ │ ├── dwz.tree.js
│ │ │ ├── dwz.ui.js
│ │ │ ├── dwz.util.date.js
│ │ │ ├── dwz.validate.method.js
│ │ │ ├── jquery-1.4.4.js
│ │ │ ├── jquery-1.4.4.min.js
│ │ │ ├── jquery.bgiframe.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── jquery.validate.js
│ │ │ └── speedup.js
│ │ ├── themes
│ │ │ ├── azure
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion
│ │ │ │ │ │ └── accordion.png
│ │ │ │ │ ├── account_info_bg.png
│ │ │ │ │ ├── alert
│ │ │ │ │ │ ├── alertpanel.png
│ │ │ │ │ │ └── alertpanel_icon.png
│ │ │ │ │ ├── button
│ │ │ │ │ │ ├── button_s.png
│ │ │ │ │ │ ├── imgX.gif
│ │ │ │ │ │ └── imgX.png
│ │ │ │ │ ├── dialog
│ │ │ │ │ │ ├── dialogpanel.png
│ │ │ │ │ │ └── dialogpanel_icon.png
│ │ │ │ │ ├── form
│ │ │ │ │ │ ├── input_bg.png
│ │ │ │ │ │ └── input_bt.png
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── grid.png
│ │ │ │ │ │ ├── resizeCol.png
│ │ │ │ │ │ └── tableth.png
│ │ │ │ │ ├── header_bg.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── taskbar.png
│ │ │ │ │ │ ├── taskbar_control.png
│ │ │ │ │ │ ├── taskbar_icon.png
│ │ │ │ │ │ └── toggleSidebar.png
│ │ │ │ │ ├── listLine.png
│ │ │ │ │ ├── menu
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ └── menu.png
│ │ │ │ │ ├── order_down.gif
│ │ │ │ │ ├── order_up.gif
│ │ │ │ │ ├── pageHeader_bg.png
│ │ │ │ │ ├── panel
│ │ │ │ │ │ ├── panel.png
│ │ │ │ │ │ └── panel_icon.png
│ │ │ │ │ ├── preview.png
│ │ │ │ │ ├── progressBar
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── progressBar_l.gif
│ │ │ │ │ │ ├── progressBar_m.gif
│ │ │ │ │ │ └── progressBar_s.gif
│ │ │ │ │ ├── search-bg.gif
│ │ │ │ │ ├── search-bt.gif
│ │ │ │ │ ├── shadow
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── shadow_c_c.png
│ │ │ │ │ │ ├── shadow_c_l.png
│ │ │ │ │ │ ├── shadow_c_r.png
│ │ │ │ │ │ ├── shadow_f_c.png
│ │ │ │ │ │ ├── shadow_f_l.png
│ │ │ │ │ │ ├── shadow_f_r.png
│ │ │ │ │ │ ├── shadow_h_c.png
│ │ │ │ │ │ ├── shadow_h_l.png
│ │ │ │ │ │ └── shadow_h_r.png
│ │ │ │ │ ├── tabs
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── tabscontrol.png
│ │ │ │ │ │ ├── tabspage.png
│ │ │ │ │ │ ├── tabspage_icon.png
│ │ │ │ │ │ └── tabspanel.png
│ │ │ │ │ └── tree
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── check.png
│ │ │ │ │ ├── folder.png
│ │ │ │ │ └── tree.png
│ │ │ │ └── style.css
│ │ │ ├── css
│ │ │ │ ├── core.css
│ │ │ │ ├── ieHack.css
│ │ │ │ └── login.css
│ │ │ ├── default
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion
│ │ │ │ │ │ └── accordion.png
│ │ │ │ │ ├── account_info_bg.png
│ │ │ │ │ ├── alert
│ │ │ │ │ │ ├── alertpanel.png
│ │ │ │ │ │ └── alertpanel_icon.png
│ │ │ │ │ ├── button
│ │ │ │ │ │ ├── button_s.png
│ │ │ │ │ │ └── imgX.gif
│ │ │ │ │ ├── dialog
│ │ │ │ │ │ ├── dialogpanel.png
│ │ │ │ │ │ └── dialogpanel_icon.png
│ │ │ │ │ ├── form
│ │ │ │ │ │ ├── input_bg.png
│ │ │ │ │ │ └── input_bt.png
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── grid.png
│ │ │ │ │ │ ├── resizeCol.png
│ │ │ │ │ │ └── tableth.png
│ │ │ │ │ ├── header_bg.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── taskbar.png
│ │ │ │ │ │ ├── taskbar_control.png
│ │ │ │ │ │ ├── taskbar_icon.png
│ │ │ │ │ │ └── toggleSidebar.png
│ │ │ │ │ ├── listLine.png
│ │ │ │ │ ├── login_banner.jpg
│ │ │ │ │ ├── login_bg.png
│ │ │ │ │ ├── login_content_bg.png
│ │ │ │ │ ├── login_header_bg.png
│ │ │ │ │ ├── login_list.png
│ │ │ │ │ ├── login_logo.gif
│ │ │ │ │ ├── login_sub.png
│ │ │ │ │ ├── login_title.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── menu
│ │ │ │ │ │ └── menu.png
│ │ │ │ │ ├── order_down.gif
│ │ │ │ │ ├── order_up.gif
│ │ │ │ │ ├── pageHeader_bg.png
│ │ │ │ │ ├── panel
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── panel.png
│ │ │ │ │ │ └── panel_icon.png
│ │ │ │ │ ├── progressBar
│ │ │ │ │ │ ├── progressBar_l.gif
│ │ │ │ │ │ ├── progressBar_m.gif
│ │ │ │ │ │ └── progressBar_s.gif
│ │ │ │ │ ├── search-bg.gif
│ │ │ │ │ ├── search-bt.gif
│ │ │ │ │ ├── shadow
│ │ │ │ │ │ ├── shadow_c_c.png
│ │ │ │ │ │ ├── shadow_c_l.png
│ │ │ │ │ │ ├── shadow_c_r.png
│ │ │ │ │ │ ├── shadow_f_c.png
│ │ │ │ │ │ ├── shadow_f_l.png
│ │ │ │ │ │ ├── shadow_f_r.png
│ │ │ │ │ │ ├── shadow_h_c.png
│ │ │ │ │ │ ├── shadow_h_l.png
│ │ │ │ │ │ └── shadow_h_r.png
│ │ │ │ │ ├── tabs
│ │ │ │ │ │ ├── tabscontrol.png
│ │ │ │ │ │ ├── tabspage.png
│ │ │ │ │ │ ├── tabspage_icon.png
│ │ │ │ │ │ └── tabspanel.png
│ │ │ │ │ ├── themeButton.png
│ │ │ │ │ └── tree
│ │ │ │ │ ├── check.png
│ │ │ │ │ ├── folder.png
│ │ │ │ │ └── tree.png
│ │ │ │ └── style.css
│ │ │ ├── green
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion
│ │ │ │ │ │ └── accordion.png
│ │ │ │ │ ├── account_info_bg.png
│ │ │ │ │ ├── alert
│ │ │ │ │ │ ├── alertpanel.png
│ │ │ │ │ │ └── alertpanel_icon.png
│ │ │ │ │ ├── button
│ │ │ │ │ │ └── button_s.png
│ │ │ │ │ ├── dialog
│ │ │ │ │ │ ├── dialogpanel.png
│ │ │ │ │ │ └── dialogpanel_icon.png
│ │ │ │ │ ├── form
│ │ │ │ │ │ ├── input_bg.png
│ │ │ │ │ │ └── input_bt.png
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── grid.png
│ │ │ │ │ │ ├── resizeCol.png
│ │ │ │ │ │ └── tableth.png
│ │ │ │ │ ├── header_bg.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ └── toggleSidebar.png
│ │ │ │ │ ├── listLine.png
│ │ │ │ │ ├── pageHeader_bg.png
│ │ │ │ │ ├── panel
│ │ │ │ │ │ ├── panel.png
│ │ │ │ │ │ └── panel_icon.png
│ │ │ │ │ ├── tabs
│ │ │ │ │ │ ├── tabscontrol.png
│ │ │ │ │ │ ├── tabspage.png
│ │ │ │ │ │ ├── tabspage_icon.png
│ │ │ │ │ │ └── tabspanel.png
│ │ │ │ │ └── tree
│ │ │ │ │ └── tree.png
│ │ │ │ └── style.css
│ │ │ ├── purple
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion
│ │ │ │ │ │ └── accordion.png
│ │ │ │ │ ├── account_info_bg.png
│ │ │ │ │ ├── alert
│ │ │ │ │ │ ├── alertpanel.png
│ │ │ │ │ │ └── alertpanel_icon.png
│ │ │ │ │ ├── button
│ │ │ │ │ │ └── button_s.png
│ │ │ │ │ ├── dialog
│ │ │ │ │ │ ├── dialogpanel.png
│ │ │ │ │ │ └── dialogpanel_icon.png
│ │ │ │ │ ├── form
│ │ │ │ │ │ ├── input_bg.png
│ │ │ │ │ │ └── input_bt.png
│ │ │ │ │ ├── grid
│ │ │ │ │ │ ├── grid.png
│ │ │ │ │ │ ├── resizeCol.png
│ │ │ │ │ │ └── tableth.png
│ │ │ │ │ ├── header_bg.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── taskbar.png
│ │ │ │ │ │ ├── taskbar_control.png
│ │ │ │ │ │ ├── taskbar_icon.png
│ │ │ │ │ │ └── toggleSidebar.png
│ │ │ │ │ ├── login_bg.png
│ │ │ │ │ ├── login_content_bg.png
│ │ │ │ │ ├── login_header_bg.png
│ │ │ │ │ ├── login_list.png
│ │ │ │ │ ├── menu
│ │ │ │ │ │ └── menu.png
│ │ │ │ │ ├── pageHeader_bg.png
│ │ │ │ │ ├── panel
│ │ │ │ │ │ ├── panel.png
│ │ │ │ │ │ └── panel_icon.png
│ │ │ │ │ ├── progressBar
│ │ │ │ │ │ ├── progressBar_l.gif
│ │ │ │ │ │ ├── progressBar_m.gif
│ │ │ │ │ │ └── progressBar_s.gif
│ │ │ │ │ ├── shadow
│ │ │ │ │ │ ├── shadow_c_c.png
│ │ │ │ │ │ ├── shadow_c_l.png
│ │ │ │ │ │ ├── shadow_c_r.png
│ │ │ │ │ │ ├── shadow_f_c.png
│ │ │ │ │ │ ├── shadow_f_l.png
│ │ │ │ │ │ ├── shadow_f_r.png
│ │ │ │ │ │ ├── shadow_h_c.png
│ │ │ │ │ │ ├── shadow_h_l.png
│ │ │ │ │ │ └── shadow_h_r.png
│ │ │ │ │ ├── tabs
│ │ │ │ │ │ ├── tabscontrol.png
│ │ │ │ │ │ ├── tabspage.png
│ │ │ │ │ │ ├── tabspage_icon.png
│ │ │ │ │ │ └── tabspanel.png
│ │ │ │ │ └── tree
│ │ │ │ │ ├── check.png
│ │ │ │ │ ├── folder.png
│ │ │ │ │ └── tree.png
│ │ │ │ └── style.css
│ │ │ └── silver
│ │ │ ├── images
│ │ │ │ ├── accordion
│ │ │ │ │ └── accordion.png
│ │ │ │ ├── account_info_bg.png
│ │ │ │ ├── alert
│ │ │ │ │ ├── alertpanel.png
│ │ │ │ │ └── alertpanel_icon.png
│ │ │ │ ├── button
│ │ │ │ │ └── button_s.png
│ │ │ │ ├── dialog
│ │ │ │ │ ├── dialogpanel.png
│ │ │ │ │ └── dialogpanel_icon.png
│ │ │ │ ├── form
│ │ │ │ │ ├── input_bg.png
│ │ │ │ │ └── input_bt.png
│ │ │ │ ├── grid
│ │ │ │ │ ├── grid.png
│ │ │ │ │ ├── resizeCol.png
│ │ │ │ │ └── tableth.png
│ │ │ │ ├── header_bg.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── taskbar.png
│ │ │ │ │ ├── taskbar_control.png
│ │ │ │ │ ├── taskbar_icon.png
│ │ │ │ │ └── toggleSidebar.png
│ │ │ │ ├── listLine.png
│ │ │ │ ├── menu
│ │ │ │ │ └── menu.png
│ │ │ │ ├── pageHeader_bg.png
│ │ │ │ ├── panel
│ │ │ │ │ ├── panel.png
│ │ │ │ │ └── panel_icon.png
│ │ │ │ ├── progressBar
│ │ │ │ │ ├── progressBar_l.gif
│ │ │ │ │ ├── progressBar_m.gif
│ │ │ │ │ └── progressBar_s.gif
│ │ │ │ ├── shadow
│ │ │ │ │ ├── shadow_c_c.png
│ │ │ │ │ ├── shadow_c_l.png
│ │ │ │ │ ├── shadow_c_r.png
│ │ │ │ │ ├── shadow_f_c.png
│ │ │ │ │ ├── shadow_f_l.png
│ │ │ │ │ ├── shadow_f_r.png
│ │ │ │ │ ├── shadow_h_c.png
│ │ │ │ │ ├── shadow_h_l.png
│ │ │ │ │ └── shadow_h_r.png
│ │ │ │ ├── tabs
│ │ │ │ │ ├── tabscontrol.png
│ │ │ │ │ ├── tabspage.png
│ │ │ │ │ ├── tabspage_icon.png
│ │ │ │ │ └── tabspanel.png
│ │ │ │ └── tree
│ │ │ │ ├── check.png
│ │ │ │ ├── folder.png
│ │ │ │ └── tree.png
│ │ │ └── style.css
│ │ ├── uploadify
│ │ │ ├── cancel.png
│ │ │ ├── css
│ │ │ │ └── uploadify.css
│ │ │ └── scripts
│ │ │ ├── expressInstall.swf
│ │ │ ├── jquery.uploadify.v2.1.0.js
│ │ │ ├── swfobject.js
│ │ │ └── uploadify.swf
│ │ └── xheditor
│ │ ├── xheditor-1.1.9-en.min.js
│ │ ├── xheditor-1.1.9-zh-cn.min.js
│ │ ├── xheditor-1.1.9-zh-tw.min.js
│ │ ├── xheditor_emot
│ │ │ ├── default
│ │ │ │ ├── angry.gif
│ │ │ │ ├── awkward.gif
│ │ │ │ ├── bye.gif
│ │ │ │ ├── config.txt
│ │ │ │ ├── crazy.gif
│ │ │ │ ├── cry.gif
│ │ │ │ ├── curse.gif
│ │ │ │ ├── cute.gif
│ │ │ │ ├── despise.gif
│ │ │ │ ├── doubt.gif
│ │ │ │ ├── envy.gif
│ │ │ │ ├── fastcry.gif
│ │ │ │ ├── knock.gif
│ │ │ │ ├── laugh.gif
│ │ │ │ ├── mad.gif
│ │ │ │ ├── ohmy.gif
│ │ │ │ ├── panic.gif
│ │ │ │ ├── proud.gif
│ │ │ │ ├── quiet.gif
│ │ │ │ ├── sad.gif
│ │ │ │ ├── shutup.gif
│ │ │ │ ├── shy.gif
│ │ │ │ ├── sleep.gif
│ │ │ │ ├── smile.gif
│ │ │ │ ├── struggle.gif
│ │ │ │ ├── titter.gif
│ │ │ │ ├── tongue.gif
│ │ │ │ ├── wail.gif
│ │ │ │ └── wronged.gif
│ │ │ ├── ipb
│ │ │ │ ├── alien.gif
│ │ │ │ ├── angel.gif
│ │ │ │ ├── angry.gif
│ │ │ │ ├── bandit.gif
│ │ │ │ ├── biglaugh.gif
│ │ │ │ ├── blink.gif
│ │ │ │ ├── blush.gif
│ │ │ │ ├── config.txt
│ │ │ │ ├── cool.gif
│ │ │ │ ├── cry.gif
│ │ │ │ ├── depres.gif
│ │ │ │ ├── devil.gif
│ │ │ │ ├── glare.gif
│ │ │ │ ├── heart.gif
│ │ │ │ ├── joyful.gif
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── laugh.gif
│ │ │ │ ├── magician.gif
│ │ │ │ ├── ninja.gif
│ │ │ │ ├── pinch.gif
│ │ │ │ ├── police.gif
│ │ │ │ ├── sad.gif
│ │ │ │ ├── sick.gif
│ │ │ │ ├── sideways.gif
│ │ │ │ ├── sleep.gif
│ │ │ │ ├── smile.gif
│ │ │ │ ├── surprised.gif
│ │ │ │ ├── tongue.gif
│ │ │ │ ├── unsure.gif
│ │ │ │ ├── w00t.gif
│ │ │ │ ├── whistling.gif
│ │ │ │ ├── wondering.gif
│ │ │ │ └── wub.gif
│ │ │ ├── msn
│ │ │ │ ├── 1.gif
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 11.gif
│ │ │ │ ├── 12.gif
│ │ │ │ ├── 13.gif
│ │ │ │ ├── 14.gif
│ │ │ │ ├── 15.gif
│ │ │ │ ├── 16.gif
│ │ │ │ ├── 17.gif
│ │ │ │ ├── 18.gif
│ │ │ │ ├── 19.gif
│ │ │ │ ├── 2.gif
│ │ │ │ ├── 20.gif
│ │ │ │ ├── 21.gif
│ │ │ │ ├── 22.gif
│ │ │ │ ├── 23.gif
│ │ │ │ ├── 24.gif
│ │ │ │ ├── 25.gif
│ │ │ │ ├── 26.gif
│ │ │ │ ├── 27.gif
│ │ │ │ ├── 28.gif
│ │ │ │ ├── 29.gif
│ │ │ │ ├── 3.gif
│ │ │ │ ├── 30.gif
│ │ │ │ ├── 31.gif
│ │ │ │ ├── 32.gif
│ │ │ │ ├── 33.gif
│ │ │ │ ├── 34.gif
│ │ │ │ ├── 35.gif
│ │ │ │ ├── 36.gif
│ │ │ │ ├── 37.gif
│ │ │ │ ├── 38.gif
│ │ │ │ ├── 39.gif
│ │ │ │ ├── 4.gif
│ │ │ │ ├── 40.gif
│ │ │ │ ├── 5.gif
│ │ │ │ ├── 6.gif
│ │ │ │ ├── 7.gif
│ │ │ │ ├── 8.gif
│ │ │ │ └── 9.gif
│ │ │ └── pidgin
│ │ │ ├── angry.gif
│ │ │ ├── bad.gif
│ │ │ ├── blush.gif
│ │ │ ├── brokenheart.gif
│ │ │ ├── bye.gif
│ │ │ ├── coffee.gif
│ │ │ ├── config.txt
│ │ │ ├── cool.gif
│ │ │ ├── cry.gif
│ │ │ ├── curse.gif
│ │ │ ├── cute.gif
│ │ │ ├── devil.gif
│ │ │ ├── envy.gif
│ │ │ ├── gift.gif
│ │ │ ├── good.gif
│ │ │ ├── kiss.gif
│ │ │ ├── laugh.gif
│ │ │ ├── love.gif
│ │ │ ├── music.gif
│ │ │ ├── question.gif
│ │ │ ├── rose.gif
│ │ │ ├── sad.gif
│ │ │ ├── shocked.gif
│ │ │ ├── shout.gif
│ │ │ ├── sick.gif
│ │ │ ├── sleepy.gif
│ │ │ ├── smile.gif
│ │ │ ├── soccer.gif
│ │ │ ├── sweat.gif
│ │ │ ├── tired.gif
│ │ │ ├── tongue.gif
│ │ │ ├── victory.gif
│ │ │ └── wink.gif
│ │ ├── xheditor_plugins
│ │ │ ├── multiupload
│ │ │ │ ├── img
│ │ │ │ │ ├── add.gif
│ │ │ │ │ ├── bg1.gif
│ │ │ │ │ ├── bg2.gif
│ │ │ │ │ ├── btnbg.gif
│ │ │ │ │ ├── btnbgr.gif
│ │ │ │ │ ├── clear.gif
│ │ │ │ │ ├── progressbg.gif
│ │ │ │ │ └── start.gif
│ │ │ │ ├── multiupload.css
│ │ │ │ ├── multiupload.html
│ │ │ │ ├── multiupload.js
│ │ │ │ └── swfupload
│ │ │ │ ├── swfupload.js
│ │ │ │ └── swfupload.swf
│ │ │ └── ubb.min.js
│ │ └── xheditor_skin
│ │ ├── default
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── progress.gif
│ │ │ │ ├── progressbg.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── nostyle
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── progress.gif
│ │ │ │ ├── progressbg.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── o2007blue
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── buttonbg.gif
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── progress.gif
│ │ │ │ ├── progressbg.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── o2007silver
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── buttonbg.gif
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── progress.gif
│ │ │ │ ├── progressbg.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ └── vista
│ │ ├── iframe.css
│ │ ├── img
│ │ │ ├── anchor.gif
│ │ │ ├── buttonbg.gif
│ │ │ ├── close.gif
│ │ │ ├── flash.gif
│ │ │ ├── icons.gif
│ │ │ ├── loading.gif
│ │ │ ├── progress.gif
│ │ │ ├── progressbg.gif
│ │ │ ├── tag-address.gif
│ │ │ ├── tag-div.gif
│ │ │ ├── tag-h1.gif
│ │ │ ├── tag-h2.gif
│ │ │ ├── tag-h3.gif
│ │ │ ├── tag-h4.gif
│ │ │ ├── tag-h5.gif
│ │ │ ├── tag-h6.gif
│ │ │ ├── tag-p.gif
│ │ │ ├── tag-pre.gif
│ │ │ ├── titlebg.gif
│ │ │ ├── waiting.gif
│ │ │ └── wmp.gif
│ │ └── ui.css
│ ├── build
│ │ └── classes
│ │ ├── hibernate.cfg.xml
│ │ ├── log4j.properties
│ │ ├── manage
│ │ │ ├── action
│ │ │ │ ├── BanJiAction.class
│ │ │ │ ├── KaoQinLogAction.class
│ │ │ │ ├── KechengAction.class
│ │ │ │ ├── ManageAction.class
│ │ │ │ ├── QingJiaDanAction.class
│ │ │ │ └── SubjectAction.class
│ │ │ ├── dao
│ │ │ │ ├── BanJiDao.class
│ │ │ │ ├── KaoQinLogDao.class
│ │ │ │ ├── KechengDao.class
│ │ │ │ ├── QingJiaDanDao.class
│ │ │ │ ├── SubjectDao.class
│ │ │ │ ├── UserDao.class
│ │ │ │ └── impl
│ │ │ │ ├── BanJiDaoImpl$1.class
│ │ │ │ ├── BanJiDaoImpl$2.class
│ │ │ │ ├── BanJiDaoImpl.class
│ │ │ │ ├── KaoQinLogDaoImpl$1.class
│ │ │ │ ├── KaoQinLogDaoImpl$2.class
│ │ │ │ ├── KaoQinLogDaoImpl.class
│ │ │ │ ├── KechengDaoImpl$1.class
│ │ │ │ ├── KechengDaoImpl$2.class
│ │ │ │ ├── KechengDaoImpl.class
│ │ │ │ ├── QingJiaDanDaoImpl$1.class
│ │ │ │ ├── QingJiaDanDaoImpl$2.class
│ │ │ │ ├── QingJiaDanDaoImpl.class
│ │ │ │ ├── SubjectDaoImpl$1.class
│ │ │ │ ├── SubjectDaoImpl$2.class
│ │ │ │ ├── SubjectDaoImpl.class
│ │ │ │ ├── UserDaoImpl$1.class
│ │ │ │ ├── UserDaoImpl$2.class
│ │ │ │ ├── UserDaoImpl$3.class
│ │ │ │ └── UserDaoImpl.class
│ │ │ ├── model
│ │ │ │ ├── BanJi.class
│ │ │ │ ├── KaoQinLog.class
│ │ │ │ ├── Kecheng.class
│ │ │ │ ├── QingJiaDan.class
│ │ │ │ ├── Subject.class
│ │ │ │ └── User.class
│ │ │ └── util
│ │ │ ├── ActionUtil$Result.class
│ │ │ ├── ActionUtil.class
│ │ │ ├── CONST.class
│ │ │ ├── Pager.class
│ │ │ ├── SessionInterceptor.class
│ │ │ └── Util.class
│ │ ├── proxool.xml
│ │ ├── spring-actions.xml
│ │ ├── spring-base.xml
│ │ ├── spring-dao.xml
│ │ ├── struts.xml
│ │ └── strutsconfig
│ │ ├── struts-banji.xml
│ │ ├── struts-kaoqinlog.xml
│ │ ├── struts-kecheng.xml
│ │ ├── struts-qingjiadan.xml
│ │ ├── struts-subject.xml
│ │ └── struts-user.xml
│ └── src
│ ├── hibernate.cfg.xml
│ ├── log4j.properties
│ ├── manage
│ │ ├── action
│ │ │ ├── BanJiAction.java
│ │ │ ├── KaoQinLogAction.java
│ │ │ ├── KechengAction.java
│ │ │ ├── ManageAction.java
│ │ │ ├── QingJiaDanAction.java
│ │ │ └── SubjectAction.java
│ │ ├── dao
│ │ │ ├── BanJiDao.java
│ │ │ ├── KaoQinLogDao.java
│ │ │ ├── KechengDao.java
│ │ │ ├── QingJiaDanDao.java
│ │ │ ├── SubjectDao.java
│ │ │ ├── UserDao.java
│ │ │ └── impl
│ │ │ ├── BanJiDaoImpl.java
│ │ │ ├── KaoQinLogDaoImpl.java
│ │ │ ├── KechengDaoImpl.java
│ │ │ ├── QingJiaDanDaoImpl.java
│ │ │ ├── SubjectDaoImpl.java
│ │ │ └── UserDaoImpl.java
│ │ ├── model
│ │ │ ├── BanJi.java
│ │ │ ├── KaoQinLog.java
│ │ │ ├── Kecheng.java
│ │ │ ├── QingJiaDan.java
│ │ │ ├── Subject.java
│ │ │ └── User.java
│ │ └── util
│ │ ├── ActionUtil.java
│ │ ├── CONST.java
│ │ ├── Pager.java
│ │ ├── SessionInterceptor.java
│ │ └── Util.java
│ ├── proxool.xml
│ ├── spring-actions.xml
│ ├── spring-base.xml
│ ├── spring-dao.xml
│ ├── struts.xml
│ └── strutsconfig
│ ├── struts-banji.xml
│ ├── struts-kaoqinlog.xml
│ ├── struts-kecheng.xml
│ ├── struts-qingjiadan.xml
│ ├── struts-subject.xml
│ └── struts-user.xml
└── manage.sql
135 directories, 731 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论