首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

javaweb项目学生宿舍管理系统struts+spring+hibernate+mysql-java课程设计毕业设计

后端 35.1MB 1 需要积分: 1
立即下载

资源介绍:

学生宿舍管理系统的完整源码,采用了主流的Struts、Spring、Hibernate和MySQL技术。本项目旨在为在校大学生的Java课程设计和毕业设计提供有价值的学习参考,帮助他们深入理解现代Java开发的关键概念和技术。 学生宿舍管理系统涵盖了宿舍管理、学生管理等功能模块,旨在简化宿舍管理流程,提高管理效率。通过这个项目,学习者将掌握MVC架构设计、数据库管理以及前后端交互等核心技能。无论您是刚入门的Java开发者,还是希望提升编程能力的技术爱好者,这个项目源码都将是您学习和实践的理想资源。
/* */ package com.bjpowernode.common.util; /* */ /* */ import java.beans.PropertyDescriptor; /* */ import java.lang.reflect.InvocationTargetException; /* */ import java.sql.Timestamp; /* */ import java.util.Date; /* */ import java.util.Iterator; /* */ import java.util.Map; /* */ import java.util.Set; /* */ import org.apache.commons.beanutils.BeanUtils; /* */ import org.apache.commons.beanutils.DynaBean; /* */ import org.apache.commons.beanutils.DynaClass; /* */ import org.apache.commons.beanutils.DynaProperty; /* */ import org.apache.commons.beanutils.PropertyUtils; /* */ /* */ public class MyBeanUtils extends BeanUtils /* */ { /* */ private static void convert(Object dest, Object orig) /* */ throws IllegalAccessException, InvocationTargetException /* */ { /* 19 */ if (dest == null) { /* 20 */ throw new IllegalArgumentException( /* 21 */ "No destination bean specified"); /* */ } /* 23 */ if (orig == null) { /* 24 */ throw new IllegalArgumentException("No origin bean specified"); /* */ } /* */ /* 28 */ if ((orig instanceof DynaBean)) { /* 29 */ DynaProperty[] origDescriptors = /* 30 */ ((DynaBean)orig).getDynaClass().getDynaProperties(); /* 31 */ for (int i = 0; i < origDescriptors.length; i++) { /* 32 */ String name = origDescriptors[i].getName(); /* 33 */ if (PropertyUtils.isWriteable(dest, name)) { /* 34 */ Object value = ((DynaBean)orig).get(name); /* */ try { /* 36 */ copyProperty(dest, name, value); /* */ } /* */ catch (Exception localException) /* */ { /* */ } /* */ } /* */ } /* */ /* */ } /* 45 */ else if ((orig instanceof Map)) { /* 46 */ Iterator names = ((Map)orig).keySet().iterator(); /* 47 */ while (names.hasNext()) { /* 48 */ String name = (String)names.next(); /* 49 */ if (PropertyUtils.isWriteable(dest, name)) { /* 50 */ Object value = ((Map)orig).get(name); /* */ try { /* 52 */ copyProperty(dest, name, value); /* */ } /* */ catch (Exception localException1) /* */ { /* */ } /* */ } /* */ /* */ } /* */ /* */ } /* */ else /* */ { /* 64 */ PropertyDescriptor[] origDescriptors = /* 65 */ PropertyUtils.getPropertyDescriptors(orig); /* 66 */ for (int i = 0; i < origDescriptors.length; i++) { /* 67 */ String name = origDescriptors[i].getName(); /* */ /* 69 */ if ("class".equals(name)) { /* */ continue; /* */ } /* 72 */ if ((!PropertyUtils.isReadable(orig, name)) || /* 73 */ (!PropertyUtils.isWriteable(dest, name))) continue; /* */ try { /* 75 */ Object value = PropertyUtils.getSimpleProperty(orig, name); /* 76 */ copyProperty(dest, name, value); /* */ } /* */ catch (IllegalArgumentException localIllegalArgumentException) /* */ { /* */ } /* */ catch (Exception localException2) /* */ { /* */ } /* */ } /* */ } /* */ } /* */ /* */ public static void copyBeanNotNull2Bean(Object databean, Object tobean) /* */ throws Exception /* */ { /* 103 */ PropertyDescriptor[] origDescriptors = /* 104 */ PropertyUtils.getPropertyDescriptors(databean); /* 105 */ for (int i = 0; i < origDescriptors.length; i++) { /* 106 */ String name = origDescriptors[i].getName(); /* */ /* 108 */ if ("class".equals(name)) { /* */ continue; /* */ } /* 111 */ if ((!PropertyUtils.isReadable(databean, name)) || /* 112 */ (!PropertyUtils.isWriteable(tobean, name))) continue; /* */ try { /* 114 */ Object value = PropertyUtils.getSimpleProperty(databean, name); /* 115 */ if (value != null) /* 116 */ copyProperty(tobean, name, value); /* */ } /* */ catch (IllegalArgumentException localIllegalArgumentException) /* */ { /* */ } /* */ catch (Exception localException) /* */ { /* */ } /* */ } /* */ } /* */ /* */ public static void copyBean2Bean(Object dest, Object orig) /* */ throws Exception /* */ { /* 139 */ convert(dest, orig); /* */ } /* */ /* */ public static void copyBean2Map(Map map, Object bean) { /* 143 */ PropertyDescriptor[] pds = PropertyUtils.getPropertyDescriptors(bean); /* 144 */ for (int i = 0; i < pds.length; i++) /* */ { /* 146 */ PropertyDescriptor pd = pds[i]; /* 147 */ String propname = pd.getName(); /* */ try { /* 149 */ Object propvalue = PropertyUtils.getSimpleProperty(bean, propname); /* 150 */ map.put(propname, propvalue); /* */ } /* */ catch (IllegalAccessException localIllegalAccessException) /* */ { /* */ } /* */ catch (InvocationTargetException localInvocationTargetException) /* */ { /* */ } /* */ catch (NoSuchMethodException localNoSuchMethodException) /* */ { /* */ } /* */ } /* */ } /* */ /* */ public static void copyMap2Bean(Object bean, Map properties) /* */ throws IllegalAccessException, InvocationTargetException /* */ { /* 171 */ if ((bean == null) || (properties == null)) { /* 172 */ return; /* */ } /* */ /* 175 */ Iterator names = properties.keySet().iterator(); /* 176 */ while (names.hasNext()) { /* 177 */ String name = (String)names.next(); /* */ /* 179 */ if (name == null) { /* */ continue; /* */ } /* 182 */ Object value = properties.get(name); /* */ try { /* 184 */ Class clazz = PropertyUtils.getPropertyType(bean, name); /* 185 */ if (clazz == null) { /* */ continue; /* */ } /* 188 */ String className = clazz.getName(); /* 189 */ if ((className.equalsIgnoreCase("java.sql.Timestamp")) && ( /* 190 */ (value == null) || (value.equals("")))) /* */ { /* */ continue; /* */ } /* 194 */ setProperty(bean, name, value); /* */ } /* */ catch (NoSuchMethodException localNoSuchMethodException) /* */ { /* */ } /* */ } /* */ } /* */ /* */ public static void copyMap2Bean_Nobig(Object bean, Map properties) /* */ throws IllegalAccessException, InvocationTargetException /* */ { /* 214 */ if ((bean == null) || (properties == null)) { /* 215 */ return; /* */ } /* */ /* 218 */ Iterator names = properties.keySet().iterator(); /* 219 */ while (names.hasNext()) { /* 220 */ String name = (String)names.next(); /* */ /* 222 */ if (name == null) { /* */ continue; /* */ } /* 225 */ Object value = properties.get(name); /* */ try /* */ { /* 229 */ if (value == null) { /* */ continue; /* */ } /* 232 */ Class clazz = PropertyUtils.getPropertyType(bean, name); /* 233 */ if (clazz == null) { /* */ continue; /* */ } /* 236 */ String className = clazz.getName(); /* */ /* 238 */ if (className.equalsIgnoreCase("java.util.Date")) { /* 239 */ va

资源文件列表:

学生宿舍管理系统.zip 大约有800个文件
  1. 必读.txt 910B
  2. 源代码/
  3. 源代码/dormitory/
  4. 源代码/dormitory/.classpath 6.64KB
  5. 源代码/dormitory/.idea/
  6. 源代码/dormitory/.idea/artifacts/
  7. 源代码/dormitory/.idea/artifacts/dormitory_Web_exploded.xml 638B
  8. 源代码/dormitory/.idea/dictionaries/
  9. 源代码/dormitory/.idea/dictionaries/Darryl.xml 87B
  10. 源代码/dormitory/.idea/dormitory.iml 1.07KB
  11. 源代码/dormitory/.idea/encodings.xml 238B
  12. 源代码/dormitory/.idea/libraries/
  13. 源代码/dormitory/.idea/libraries/ant_1_6_5.xml 6.62KB
  14. 源代码/dormitory/.idea/libraries/servlet_api.xml 256B
  15. 源代码/dormitory/.idea/misc.xml 381B
  16. 源代码/dormitory/.idea/modules.xml 270B
  17. 源代码/dormitory/.idea/workspace.xml 37.18KB
  18. 源代码/dormitory/.metadata/
  19. 源代码/dormitory/.metadata/.lock
  20. 源代码/dormitory/.metadata/.log 2.45KB
  21. 源代码/dormitory/.metadata/.mylyn/
  22. 源代码/dormitory/.metadata/.mylyn/contexts/
  23. 源代码/dormitory/.metadata/.mylyn/repositories.xml.zip 561B
  24. 源代码/dormitory/.metadata/.plugins/
  25. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/
  26. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.history/
  27. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.projects/
  28. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/
  29. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.root/
  30. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/
  31. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version 1B
  32. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index 151B
  33. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version 1B
  34. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.root/1.tree 185B
  35. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.safetable/
  36. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources 853B
  37. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/
  38. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/
  39. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs 42B
  40. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.epp.logging.aeri.ide.prefs 87B
  41. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs 368B
  42. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.j2ee.webservice.ui.prefs 58B
  43. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs 73B
  44. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs 62B
  45. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs 97B
  46. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs 194B
  47. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.rse.core.prefs 138B
  48. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.rse.ui.prefs 100B
  49. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs 69B
  50. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs 69B
  51. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs 129B
  52. 源代码/dormitory/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs 372B
  53. 源代码/dormitory/.metadata/.plugins/org.eclipse.debug.core/
  54. 源代码/dormitory/.metadata/.plugins/org.eclipse.e4.workbench/
  55. 源代码/dormitory/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi 448.87KB
  56. 源代码/dormitory/.metadata/.plugins/org.eclipse.emf.common.ui/
  57. 源代码/dormitory/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/
  58. 源代码/dormitory/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/
  59. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.core/
  60. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache 4B
  61. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache 4B
  62. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.core/index.db
  63. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache 4B
  64. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat 129B
  65. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.ui/
  66. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml 76B
  67. 源代码/dormitory/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml 85B
  68. 源代码/dormitory/.metadata/.plugins/org.eclipse.m2e.logback.configuration/
  69. 源代码/dormitory/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log 142B
  70. 源代码/dormitory/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.8.3.20180227-2137.xml 1.67KB
  71. 源代码/dormitory/.metadata/.plugins/org.eclipse.mylyn.bugzilla.core/
  72. 源代码/dormitory/.metadata/.plugins/org.eclipse.mylyn.context.core/
  73. 源代码/dormitory/.metadata/.plugins/org.eclipse.mylyn.context.core/contexts/
  74. 源代码/dormitory/.metadata/.plugins/org.eclipse.mylyn.tasks.ui/
  75. 源代码/dormitory/.metadata/.plugins/org.eclipse.oomph.setup/
  76. 源代码/dormitory/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup 203B
  77. 源代码/dormitory/.metadata/.plugins/org.eclipse.oomph.setup.ui/
  78. 源代码/dormitory/.metadata/.plugins/org.eclipse.pde.core/
  79. 源代码/dormitory/.metadata/.plugins/org.eclipse.pde.core/.cache/
  80. 源代码/dormitory/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties 51B
  81. 源代码/dormitory/.metadata/.plugins/org.eclipse.pde.core/.p2/
  82. 源代码/dormitory/.metadata/.plugins/org.eclipse.pde.core/.p2/org.eclipse.equinox.p2.engine/
  83. 源代码/dormitory/.metadata/.plugins/org.eclipse.pde.core/.p2/org.eclipse.equinox.p2.engine/profileRegistry/
  84. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/
  85. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/.log
  86. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/initializerMarks/
  87. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/initializerMarks/org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark
  88. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/
  89. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-cjvt25v_32633/
  90. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-cjvt25v_32633/FP.local.files_0/
  91. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-cjvt25v_32633/FP.local.files_0/node.properties 2.3KB
  92. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-cjvt25v_32633/H.local_16/
  93. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-cjvt25v_32633/H.local_16/node.properties 1.07KB
  94. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-cjvt25v_32633/node.properties 166B
  95. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.ui/
  96. 源代码/dormitory/.metadata/.plugins/org.eclipse.rse.ui/.log
  97. 源代码/dormitory/.metadata/.plugins/org.eclipse.tm.terminal.view.ui/
  98. 源代码/dormitory/.metadata/.plugins/org.eclipse.tm.terminal.view.ui/.executables/
  99. 源代码/dormitory/.metadata/.plugins/org.eclipse.tm.terminal.view.ui/.executables/data.properties 204B
  100. 源代码/dormitory/.metadata/.plugins/org.eclipse.ui.intro/
  101. 源代码/dormitory/.metadata/.plugins/org.eclipse.ui.intro/introstate 62B
  102. 源代码/dormitory/.metadata/.plugins/org.eclipse.ui.workbench/
  103. 源代码/dormitory/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml 392B
  104. 源代码/dormitory/.metadata/.plugins/org.eclipse.userstorage.oauth/
  105. 源代码/dormitory/.metadata/version.ini 102B
  106. 源代码/dormitory/.project 909B
  107. 源代码/dormitory/.settings/
  108. 源代码/dormitory/.settings/.jsdtscope 319B
  109. 源代码/dormitory/.settings/org.eclipse.jdt.core.prefs 364B
  110. 源代码/dormitory/.settings/org.eclipse.wst.common.component 560B
  111. 源代码/dormitory/.settings/org.eclipse.wst.common.project.facet.core.xml 252B
  112. 源代码/dormitory/.settings/org.eclipse.wst.jsdt.ui.superType.container 44B
  113. 源代码/dormitory/.settings/org.eclipse.wst.jsdt.ui.superType.name 6B
  114. 源代码/dormitory/build/
  115. 源代码/dormitory/build/classes/
  116. 源代码/dormitory/build/classes/com/
  117. 源代码/dormitory/build/classes/com/bjpowernode/
  118. 源代码/dormitory/build/classes/com/bjpowernode/buss/
  119. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/
  120. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/ClassController.class 5.3KB
  121. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/DamageController.class 5.44KB
  122. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/DormController.class 5.66KB
  123. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/ScoreController.class 5.54KB
  124. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/StudentController.class 7.43KB
  125. 源代码/dormitory/build/classes/com/bjpowernode/buss/controller/VisitorController.class 5.47KB
  126. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/
  127. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/
  128. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/ClassEntity.class 1.07KB
  129. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/DamageEntity.class 2.23KB
  130. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/DormEntity.class 1.66KB
  131. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/ScoreEntity.class 1.57KB
  132. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/StudentEntity.class 2.59KB
  133. 源代码/dormitory/build/classes/com/bjpowernode/buss/entity/base/VisitorEntity.class 2.25KB
  134. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/
  135. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/ClassService.class 547B
  136. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/DamageService.class 587B
  137. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/DormService.class 579B
  138. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/
  139. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/ClassServiceImpl.class 2.94KB
  140. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/DamageServiceImpl.class 3.12KB
  141. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/DormServiceImpl.class 3.21KB
  142. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/ScoreServiceImpl.class 3.46KB
  143. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/StudentServiceImpl.class 3.3KB
  144. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/impl/VisitorServiceImpl.class 3.92KB
  145. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/ScoreService.class 655B
  146. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/StudentService.class 591B
  147. 源代码/dormitory/build/classes/com/bjpowernode/buss/service/VisitorService.class 591B
  148. 源代码/dormitory/build/classes/com/bjpowernode/common/
  149. 源代码/dormitory/build/classes/com/bjpowernode/common/controller/
  150. 源代码/dormitory/build/classes/com/bjpowernode/common/controller/BaseController.class 931B
  151. 源代码/dormitory/build/classes/com/bjpowernode/common/dao/
  152. 源代码/dormitory/build/classes/com/bjpowernode/common/dao/BaseDao.class 729B
  153. 源代码/dormitory/build/classes/com/bjpowernode/common/dao/impl/
  154. 源代码/dormitory/build/classes/com/bjpowernode/common/dao/impl/BaseDaoImpl.class 4.1KB
  155. 源代码/dormitory/build/classes/com/bjpowernode/common/entity/
  156. 源代码/dormitory/build/classes/com/bjpowernode/common/entity/base/
  157. 源代码/dormitory/build/classes/com/bjpowernode/common/entity/base/BaseEntity.class 1.42KB
  158. 源代码/dormitory/build/classes/com/bjpowernode/common/service/
  159. 源代码/dormitory/build/classes/com/bjpowernode/common/service/BaseService.class 690B
  160. 源代码/dormitory/build/classes/com/bjpowernode/common/service/impl/
  161. 源代码/dormitory/build/classes/com/bjpowernode/common/service/impl/BaseServiceImpl.class 2.78KB
  162. 源代码/dormitory/build/classes/com/bjpowernode/common/util/
  163. 源代码/dormitory/build/classes/com/bjpowernode/common/util/AjaxJson.class 1.96KB
  164. 源代码/dormitory/build/classes/com/bjpowernode/common/util/BrowserType.class 1.53KB
  165. 源代码/dormitory/build/classes/com/bjpowernode/common/util/BrowserUtils.class 3.57KB
  166. 源代码/dormitory/build/classes/com/bjpowernode/common/util/CaptchaUtil.class 4.05KB
  167. 源代码/dormitory/build/classes/com/bjpowernode/common/util/ContextHolderUtils.class 983B
  168. 源代码/dormitory/build/classes/com/bjpowernode/common/util/DateConvertEditor.class 1.86KB
  169. 源代码/dormitory/build/classes/com/bjpowernode/common/util/JsonUtil.class 991B
  170. 源代码/dormitory/build/classes/com/bjpowernode/common/util/MyBeanUtils.class 5.62KB
  171. 源代码/dormitory/build/classes/com/bjpowernode/common/util/Pagination.class 1.77KB
  172. 源代码/dormitory/build/classes/com/bjpowernode/common/util/ResourceUtil.class 3.15KB
  173. 源代码/dormitory/build/classes/com/bjpowernode/common/util/SystemConstant.class 410B
  174. 源代码/dormitory/build/classes/com/bjpowernode/system/
  175. 源代码/dormitory/build/classes/com/bjpowernode/system/CaptchaServlet.class 2.58KB
  176. 源代码/dormitory/build/classes/com/bjpowernode/system/controller/
  177. 源代码/dormitory/build/classes/com/bjpowernode/system/controller/LoginController.class 8.16KB
  178. 源代码/dormitory/build/classes/com/bjpowernode/system/controller/ResourceController.class 5.46KB
  179. 源代码/dormitory/build/classes/com/bjpowernode/system/controller/RoleController.class 7.7KB
  180. 源代码/dormitory/build/classes/com/bjpowernode/system/controller/UserController.class 7.62KB
  181. 源代码/dormitory/build/classes/com/bjpowernode/system/dao/
  182. 源代码/dormitory/build/classes/com/bjpowernode/system/dao/impl/
  183. 源代码/dormitory/build/classes/com/bjpowernode/system/dao/impl/SystemDaoImpl.class 3.73KB
  184. 源代码/dormitory/build/classes/com/bjpowernode/system/dao/SystemDao.class 744B
  185. 源代码/dormitory/build/classes/com/bjpowernode/system/entity/
  186. 源代码/dormitory/build/classes/com/bjpowernode/system/entity/base/
  187. 源代码/dormitory/build/classes/com/bjpowernode/system/entity/base/DepartEntity.class 2.25KB
  188. 源代码/dormitory/build/classes/com/bjpowernode/system/entity/base/ResourceEntity.class 3.06KB
  189. 源代码/dormitory/build/classes/com/bjpowernode/system/entity/base/RoleEntity.class 1.98KB
  190. 源代码/dormitory/build/classes/com/bjpowernode/system/entity/base/UserEntity.class 3.82KB
  191. 源代码/dormitory/build/classes/com/bjpowernode/system/interceptor/
  192. 源代码/dormitory/build/classes/com/bjpowernode/system/interceptor/AuthInterceptor.class 4.5KB
  193. 源代码/dormitory/build/classes/com/bjpowernode/system/manager/
  194. 源代码/dormitory/build/classes/com/bjpowernode/system/manager/ClientManager.class 1.6KB
  195. 源代码/dormitory/build/classes/com/bjpowernode/system/service/
  196. 源代码/dormitory/build/classes/com/bjpowernode/system/service/impl/
  197. 源代码/dormitory/build/classes/com/bjpowernode/system/service/impl/SystemServiceImpl.class 3.9KB
  198. 源代码/dormitory/build/classes/com/bjpowernode/system/service/SystemService.class 925B
  199. 源代码/dormitory/build/classes/com/bjpowernode/system/vo/
  200. 源代码/dormitory/build/classes/com/bjpowernode/system/vo/Client.class 1.75KB
  201. 源代码/dormitory/build/classes/com/bjpowernode/system/vo/Data.class 1.44KB
  202. 源代码/dormitory/build/classes/com/bjpowernode/system/vo/TreeGrid.class 2.79KB
  203. 源代码/dormitory/build/classes/com/bjpowernode/system/vo/TreeGridModel.class 2.25KB
  204. 源代码/dormitory/build/classes/com/bjpowernode/system/vo/TreeNode.class 2.49KB
  205. 源代码/dormitory/build/classes/db-config.properties 1.46KB
  206. 源代码/dormitory/build/classes/ehcache.xml 1.71KB
  207. 源代码/dormitory/build/classes/log4j.properties 1.05KB
  208. 源代码/dormitory/build/classes/spring-config.xml 9.49KB
  209. 源代码/dormitory/build/classes/spring-mvc.xml 3.81KB
  210. 源代码/dormitory/RemoteSystemsTempFiles/
  211. 源代码/dormitory/RemoteSystemsTempFiles/.project 289B
  212. 源代码/dormitory/resources/
  213. 源代码/dormitory/resources/db-config.properties 1.46KB
  214. 源代码/dormitory/resources/ehcache.xml 1.71KB
  215. 源代码/dormitory/resources/log4j.properties 1.05KB
  216. 源代码/dormitory/resources/spring-config.xml 9.49KB
  217. 源代码/dormitory/resources/spring-mvc.xml 3.81KB
  218. 源代码/dormitory/src/
  219. 源代码/dormitory/src/com/
  220. 源代码/dormitory/src/com/bjpowernode/
  221. 源代码/dormitory/src/com/bjpowernode/buss/
  222. 源代码/dormitory/src/com/bjpowernode/buss/controller/
  223. 源代码/dormitory/src/com/bjpowernode/buss/controller/ClassController.java 5.06KB
  224. 源代码/dormitory/src/com/bjpowernode/buss/controller/DamageController.java 5.14KB
  225. 源代码/dormitory/src/com/bjpowernode/buss/controller/DormController.java 5.34KB
  226. 源代码/dormitory/src/com/bjpowernode/buss/controller/ScoreController.java 5.18KB
  227. 源代码/dormitory/src/com/bjpowernode/buss/controller/StudentController.java 8.49KB
  228. 源代码/dormitory/src/com/bjpowernode/buss/controller/VisitorController.java 5.22KB
  229. 源代码/dormitory/src/com/bjpowernode/buss/entity/
  230. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/
  231. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/ClassEntity.java 1.33KB
  232. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/DamageEntity.java 2.79KB
  233. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/DormEntity.java 2.14KB
  234. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/ScoreEntity.java 1.77KB
  235. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/StudentEntity.java 3.13KB
  236. 源代码/dormitory/src/com/bjpowernode/buss/entity/base/VisitorEntity.java 2.83KB
  237. 源代码/dormitory/src/com/bjpowernode/buss/service/
  238. 源代码/dormitory/src/com/bjpowernode/buss/service/ClassService.java 711B
  239. 源代码/dormitory/src/com/bjpowernode/buss/service/DamageService.java 790B
  240. 源代码/dormitory/src/com/bjpowernode/buss/service/DormService.java 780B
  241. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/
  242. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/ClassServiceImpl.java 2.21KB
  243. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/DamageServiceImpl.java 2.3KB
  244. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/DormServiceImpl.java 2.65KB
  245. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/ScoreServiceImpl.java 2.6KB
  246. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/StudentServiceImpl.java 2.64KB
  247. 源代码/dormitory/src/com/bjpowernode/buss/service/impl/VisitorServiceImpl.java 3.13KB
  248. 源代码/dormitory/src/com/bjpowernode/buss/service/ScoreService.java 828B
  249. 源代码/dormitory/src/com/bjpowernode/buss/service/StudentService.java 795B
  250. 源代码/dormitory/src/com/bjpowernode/buss/service/VisitorService.java 795B
  251. 源代码/dormitory/src/com/bjpowernode/common/
  252. 源代码/dormitory/src/com/bjpowernode/common/controller/
  253. 源代码/dormitory/src/com/bjpowernode/common/controller/BaseController.java 901B
  254. 源代码/dormitory/src/com/bjpowernode/common/dao/
  255. 源代码/dormitory/src/com/bjpowernode/common/dao/BaseDao.java 876B
  256. 源代码/dormitory/src/com/bjpowernode/common/dao/impl/
  257. 源代码/dormitory/src/com/bjpowernode/common/dao/impl/BaseDaoImpl.java 3.5KB
  258. 源代码/dormitory/src/com/bjpowernode/common/entity/
  259. 源代码/dormitory/src/com/bjpowernode/common/entity/base/
  260. 源代码/dormitory/src/com/bjpowernode/common/entity/base/BaseEntity.java 1.71KB
  261. 源代码/dormitory/src/com/bjpowernode/common/service/
  262. 源代码/dormitory/src/com/bjpowernode/common/service/BaseService.java 815B
  263. 源代码/dormitory/src/com/bjpowernode/common/service/impl/
  264. 源代码/dormitory/src/com/bjpowernode/common/service/impl/BaseServiceImpl.java 2.28KB
  265. 源代码/dormitory/src/com/bjpowernode/common/util/
  266. 源代码/dormitory/src/com/bjpowernode/common/util/AjaxJson.java 1.8KB
  267. 源代码/dormitory/src/com/bjpowernode/common/util/BrowserType.java 436B
  268. 源代码/dormitory/src/com/bjpowernode/common/util/BrowserUtils.java 5.85KB
  269. 源代码/dormitory/src/com/bjpowernode/common/util/CaptchaUtil.java 4.02KB
  270. 源代码/dormitory/src/com/bjpowernode/common/util/ContextHolderUtils.java 1.05KB
  271. 源代码/dormitory/src/com/bjpowernode/common/util/DateConvertEditor.java 1.87KB
  272. 源代码/dormitory/src/com/bjpowernode/common/util/JsonUtil.java 898B
  273. 源代码/dormitory/src/com/bjpowernode/common/util/MyBeanUtils.java 9.79KB
  274. 源代码/dormitory/src/com/bjpowernode/common/util/Pagination.java 1.68KB
  275. 源代码/dormitory/src/com/bjpowernode/common/util/ResourceUtil.java 3.32KB
  276. 源代码/dormitory/src/com/bjpowernode/common/util/SystemConstant.java 375B
  277. 源代码/dormitory/src/com/bjpowernode/system/
  278. 源代码/dormitory/src/com/bjpowernode/system/CaptchaServlet.java 2.21KB
  279. 源代码/dormitory/src/com/bjpowernode/system/controller/
  280. 源代码/dormitory/src/com/bjpowernode/system/controller/LoginController.java 7.66KB
  281. 源代码/dormitory/src/com/bjpowernode/system/controller/ResourceController.java 6.04KB
  282. 源代码/dormitory/src/com/bjpowernode/system/controller/RoleController.java 7.91KB
  283. 源代码/dormitory/src/com/bjpowernode/system/controller/UserController.java 7.46KB
  284. 源代码/dormitory/src/com/bjpowernode/system/dao/
  285. 源代码/dormitory/src/com/bjpowernode/system/dao/impl/
  286. 源代码/dormitory/src/com/bjpowernode/system/dao/impl/SystemDaoImpl.java 2.81KB
  287. 源代码/dormitory/src/com/bjpowernode/system/dao/SystemDao.java 799B
  288. 源代码/dormitory/src/com/bjpowernode/system/entity/
  289. 源代码/dormitory/src/com/bjpowernode/system/entity/base/
  290. 源代码/dormitory/src/com/bjpowernode/system/entity/base/DepartEntity.java 2.41KB
  291. 源代码/dormitory/src/com/bjpowernode/system/entity/base/ResourceEntity.java 3.54KB
  292. 源代码/dormitory/src/com/bjpowernode/system/entity/base/RoleEntity.java 2.09KB
  293. 源代码/dormitory/src/com/bjpowernode/system/entity/base/UserEntity.java 4.43KB
  294. 源代码/dormitory/src/com/bjpowernode/system/interceptor/
  295. 源代码/dormitory/src/com/bjpowernode/system/interceptor/AuthInterceptor.java 3.69KB
  296. 源代码/dormitory/src/com/bjpowernode/system/manager/
  297. 源代码/dormitory/src/com/bjpowernode/system/manager/ClientManager.java 1.34KB
  298. 源代码/dormitory/src/com/bjpowernode/system/service/
  299. 源代码/dormitory/src/com/bjpowernode/system/service/impl/
  300. 源代码/dormitory/src/com/bjpowernode/system/service/impl/SystemServiceImpl.java 3.26KB
  301. 源代码/dormitory/src/com/bjpowernode/system/service/SystemService.java 900B
  302. 源代码/dormitory/src/com/bjpowernode/system/vo/
  303. 源代码/dormitory/src/com/bjpowernode/system/vo/Client.java 1.71KB
  304. 源代码/dormitory/src/com/bjpowernode/system/vo/Data.java 1.16KB
  305. 源代码/dormitory/src/com/bjpowernode/system/vo/TreeGrid.java 3.02KB
  306. 源代码/dormitory/src/com/bjpowernode/system/vo/TreeGridModel.java 2.68KB
  307. 源代码/dormitory/src/com/bjpowernode/system/vo/TreeNode.java 2.39KB
  308. 源代码/dormitory/WebContent/
  309. 源代码/dormitory/WebContent/css/
  310. 源代码/dormitory/WebContent/css/login/
  311. 源代码/dormitory/WebContent/css/login/normalize.css 1.89KB
  312. 源代码/dormitory/WebContent/css/login/style.css 3.97KB
  313. 源代码/dormitory/WebContent/fonts/
  314. 源代码/dormitory/WebContent/fonts/login/
  315. 源代码/dormitory/WebContent/image/
  316. 源代码/dormitory/WebContent/image/common/
  317. 源代码/dormitory/WebContent/image/common/dormitory.jpg 72.85KB
  318. 源代码/dormitory/WebContent/image/common/name.png 5.98KB
  319. 源代码/dormitory/WebContent/image/common/preloader.gif 3.25KB
  320. 源代码/dormitory/WebContent/image/common/short-cut.jpg 28.26KB
  321. 源代码/dormitory/WebContent/image/common/top_bg.jpg 2.81KB
  322. 源代码/dormitory/WebContent/image/common/weixin.png 11.24KB
  323. 源代码/dormitory/WebContent/image/login/
  324. 源代码/dormitory/WebContent/image/login/three.png 2.38KB
  325. 源代码/dormitory/WebContent/js/
  326. 源代码/dormitory/WebContent/js/system/
  327. 源代码/dormitory/WebContent/js/system/curdtools.js 1.57KB
  328. 源代码/dormitory/WebContent/js/system/forbiddenutil.js 823B
  329. 源代码/dormitory/WebContent/js/system/login.js 1.9KB
  330. 源代码/dormitory/WebContent/js/system/validform.js 6.36KB
  331. 源代码/dormitory/WebContent/pages/
  332. 源代码/dormitory/WebContent/pages/buss/
  333. 源代码/dormitory/WebContent/pages/buss/classmanage.jsp 5.78KB
  334. 源代码/dormitory/WebContent/pages/buss/damage.jsp 10.69KB
  335. 源代码/dormitory/WebContent/pages/buss/dorm.jsp 6.11KB
  336. 源代码/dormitory/WebContent/pages/buss/score.jsp 9.92KB
  337. 源代码/dormitory/WebContent/pages/buss/student.jsp 16.42KB
  338. 源代码/dormitory/WebContent/pages/buss/visitor.jsp 11.93KB
  339. 源代码/dormitory/WebContent/pages/common/
  340. 源代码/dormitory/WebContent/pages/common/404.jsp 156B
  341. 源代码/dormitory/WebContent/pages/common/timeout.jsp 473B
  342. 源代码/dormitory/WebContent/pages/index.jsp 64B
  343. 源代码/dormitory/WebContent/pages/system/
  344. 源代码/dormitory/WebContent/pages/system/base.jsp 1.09KB
  345. 源代码/dormitory/WebContent/pages/system/home.jsp 262B
  346. 源代码/dormitory/WebContent/pages/system/login.jsp 1.59KB
  347. 源代码/dormitory/WebContent/pages/system/main.jsp 4.41KB
  348. 源代码/dormitory/WebContent/pages/system/resource.jsp 6.97KB
  349. 源代码/dormitory/WebContent/pages/system/role.jsp 5.71KB
  350. 源代码/dormitory/WebContent/pages/system/user.jsp 10.65KB
  351. 源代码/dormitory/WebContent/plug-in/
  352. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/
  353. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/easyloader.js 6.47KB
  354. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/jquery.easyui.min.js 345.38KB
  355. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/jquery.min.js 93.54KB
  356. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/
  357. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-af.js 1.66KB
  358. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-am.js 2.14KB
  359. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-ar.js 1.88KB
  360. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-bg.js 1.86KB
  361. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-ca.js 1.72KB
  362. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-cs.js 1.7KB
  363. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-cz.js 1.86KB
  364. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-da.js 1.67KB
  365. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-de.js 2.27KB
  366. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-el.js 2.12KB
  367. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-en.js 1.75KB
  368. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-es.js 1.84KB
  369. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-fr.js 1.75KB
  370. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-it.js 1.71KB
  371. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-jp.js 1.93KB
  372. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-nl.js 1.67KB
  373. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-pl.js 1.77KB
  374. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-pt_BR.js 1.74KB
  375. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-ru.js 2.08KB
  376. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-sv_SE.js 1.91KB
  377. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-tr.js 2.26KB
  378. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-zh_CN.js 2.43KB
  379. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/locale/easyui-lang-zh_TW.js 1.93KB
  380. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/
  381. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.accordion.js 6.87KB
  382. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.calendar.js 9.87KB
  383. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.combo.js 8.62KB
  384. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.combobox.js 10.41KB
  385. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.combogrid.js 6.23KB
  386. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.combotree.js 4.08KB
  387. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.datagrid.js 61.41KB
  388. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.datebox.js 5.84KB
  389. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.datetimebox.js 5.26KB
  390. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.datetimespinner.js 1.8KB
  391. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.dialog.js 3.33KB
  392. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.draggable.js 6.73KB
  393. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.droppable.js 1.65KB
  394. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.filebox.js 1.92KB
  395. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.form.js 6.25KB
  396. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.layout.js 11.2KB
  397. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.linkbutton.js 4.51KB
  398. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.menu.js 10.44KB
  399. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.menubutton.js 3.16KB
  400. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.messager.js 4.99KB
  401. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.numberbox.js 4.4KB
  402. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.numberspinner.js 1.55KB
  403. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.pagination.js 7.45KB
  404. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.panel.js 14.24KB
  405. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.parser.js 6.39KB
  406. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.progressbar.js 2.13KB
  407. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.propertygrid.js 9.36KB
  408. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.resizable.js 4.51KB
  409. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.searchbox.js 3.47KB
  410. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.slider.js 6.95KB
  411. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.spinner.js 2.11KB
  412. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.splitbutton.js 1.43KB
  413. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.tabs.js 14.62KB
  414. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.textbox.js 10.9KB
  415. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.timespinner.js 4.52KB
  416. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.tooltip.js 5.64KB
  417. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.tree.js 25.35KB
  418. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.treegrid.js 27.91KB
  419. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.validatebox.js 7.74KB
  420. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/plugins/jquery.window.js 7.18KB
  421. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/
  422. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/easyloader.js 8.84KB
  423. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.accordion.js 10.36KB
  424. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.calendar.js 13.24KB
  425. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.combobox.js 15.12KB
  426. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.datebox.js 7.93KB
  427. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.draggable.js 11.08KB
  428. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.droppable.js 2.15KB
  429. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.form.js 9.01KB
  430. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.linkbutton.js 6.27KB
  431. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.menu.js 16.31KB
  432. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.parser.js 9.34KB
  433. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.progressbar.js 2.86KB
  434. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.propertygrid.js 13.06KB
  435. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.resizable.js 7.3KB
  436. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.slider.js 10.97KB
  437. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.tabs.js 21.92KB
  438. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/src/jquery.window.js 10.29KB
  439. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/
  440. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/
  441. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/accordion.css 829B
  442. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/calendar.css 3.66KB
  443. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/combo.css 1.02KB
  444. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/combobox.css 387B
  445. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/datagrid.css 5.08KB
  446. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/datebox.css 616B
  447. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/dialog.css 533B
  448. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/easyui.css 50.32KB
  449. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/filebox.css 100B
  450. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/
  451. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/accordion_arrows.png 122B
  452. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/blank.gif 43B
  453. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/calendar_arrows.png 173B
  454. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/combo_arrow.png 100B
  455. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/datagrid_icons.png 210B
  456. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/datebox_arrow.png 626B
  457. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/layout_arrows.png 179B
  458. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/linkbutton_bg.png 1.24KB
  459. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/loading.gif 1.7KB
  460. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/menu_arrows.png 134B
  461. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/messager_icons.png 5.97KB
  462. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/pagination_icons.png 339B
  463. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/panel_tools.png 184B
  464. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/searchbox_button.png 813B
  465. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/slider_handle.png 863B
  466. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/spinner_arrows.png 112B
  467. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/tabs_icons.png 144B
  468. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/tree_icons.png 3.01KB
  469. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/images/validatebox_warning.png 921B
  470. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/layout.css 1.64KB
  471. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/linkbutton.css 4.14KB
  472. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/menu.css 1.98KB
  473. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/menubutton.css 1.82KB
  474. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/messager.css 801B
  475. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/numberbox.css 125B
  476. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/pagination.css 1.38KB
  477. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/panel.css 2.82KB
  478. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/progressbar.css 644B
  479. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/propertygrid.css 710B
  480. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/searchbox.css 1.8KB
  481. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/slider.css 1.57KB
  482. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/spinner.css 1.4KB
  483. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/splitbutton.css 293B
  484. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/tabs.css 8.01KB
  485. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/textbox.css 1.73KB
  486. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/tooltip.css 1.86KB
  487. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/tree.css 3.34KB
  488. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/validatebox.css 94B
  489. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/black/window.css 2.05KB
  490. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/
  491. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/accordion.css 835B
  492. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/calendar.css 3.68KB
  493. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/combo.css 1.03KB
  494. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/combobox.css 393B
  495. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/datagrid.css 5.11KB
  496. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/datebox.css 619B
  497. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/dialog.css 560B
  498. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/easyui.css 50.98KB
  499. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/filebox.css 100B
  500. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/
  501. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/accordion_arrows.png 184B
  502. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/blank.gif 43B
  503. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/calendar_arrows.png 173B
  504. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/combo_arrow.png 117B
  505. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/datagrid_icons.png 220B
  506. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/datebox_arrow.png 626B
  507. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/layout_arrows.png 319B
  508. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/linkbutton_bg.png 1.24KB
  509. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/loading.gif 1.7KB
  510. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/menu_arrows.png 160B
  511. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/messager_icons.png 5.97KB
  512. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/pagination_icons.png 628B
  513. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/panel_tools.png 194B
  514. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/searchbox_button.png 813B
  515. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/slider_handle.png 863B
  516. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/spinner_arrows.png 115B
  517. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/tabs_icons.png 150B
  518. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/tree_icons.png 3.04KB
  519. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/images/validatebox_warning.png 921B
  520. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/layout.css 1.64KB
  521. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/linkbutton.css 4.16KB
  522. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/menu.css 1.99KB
  523. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/menubutton.css 1.83KB
  524. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/messager.css 804B
  525. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/numberbox.css 128B
  526. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/pagination.css 1.39KB
  527. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/panel.css 2.83KB
  528. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/progressbar.css 647B
  529. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/propertygrid.css 716B
  530. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/searchbox.css 1.8KB
  531. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/slider.css 1.58KB
  532. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/spinner.css 1.41KB
  533. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/splitbutton.css 290B
  534. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/tabs.css 8.09KB
  535. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/textbox.css 1.74KB
  536. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/tooltip.css 1.89KB
  537. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/tree.css 3.35KB
  538. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/validatebox.css 94B
  539. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/bootstrap/window.css 2.05KB
  540. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/color.css 3.96KB
  541. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/
  542. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/accordion.css 838B
  543. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/calendar.css 3.69KB
  544. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/combo.css 1.03KB
  545. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/combobox.css 396B
  546. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/datagrid.css 5.12KB
  547. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/datebox.css 619B
  548. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/dialog.css 560B
  549. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/easyui.css 50.73KB
  550. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/filebox.css 100B
  551. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/
  552. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/accordion_arrows.png 184B
  553. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/blank.gif 43B
  554. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/calendar_arrows.png 173B
  555. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/combo_arrow.png 117B
  556. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/datagrid_icons.png 220B
  557. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/datebox_arrow.png 626B
  558. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/layout_arrows.png 319B
  559. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/linkbutton_bg.png 1.24KB
  560. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/loading.gif 1.7KB
  561. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/menu_arrows.png 160B
  562. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/messager_icons.png 5.97KB
  563. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/pagination_icons.png 628B
  564. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/panel_tools.png 852B
  565. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/searchbox_button.png 813B
  566. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/slider_handle.png 863B
  567. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/spinner_arrows.png 115B
  568. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/tabs_icons.png 150B
  569. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/tree_icons.png 3.04KB
  570. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/images/validatebox_warning.png 921B
  571. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/layout.css 1.65KB
  572. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/linkbutton.css 4.16KB
  573. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/menu.css 2KB
  574. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/menubutton.css 1.84KB
  575. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/messager.css 804B
  576. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/numberbox.css 128B
  577. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/pagination.css 1.39KB
  578. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/panel.css 2.84KB
  579. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/progressbar.css 653B
  580. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/propertygrid.css 716B
  581. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/searchbox.css 1.8KB
  582. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/slider.css 1.58KB
  583. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/spinner.css 1.41KB
  584. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/splitbutton.css 293B
  585. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/tabs.css 8.1KB
  586. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/textbox.css 1.74KB
  587. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/tooltip.css 1.89KB
  588. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/tree.css 3.36KB
  589. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/validatebox.css 94B
  590. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/default/window.css 2.05KB
  591. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/
  592. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/accordion.css 835B
  593. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/calendar.css 3.68KB
  594. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/combo.css 1.03KB
  595. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/combobox.css 393B
  596. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/datagrid.css 5.11KB
  597. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/datebox.css 619B
  598. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/dialog.css 554B
  599. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/easyui.css 50.69KB
  600. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/filebox.css 100B
  601. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/
  602. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/accordion_arrows.png 125B
  603. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/blank.gif 43B
  604. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/calendar_arrows.png 173B
  605. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/combo_arrow.png 103B
  606. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/datagrid_icons.png 243B
  607. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/datebox_arrow.png 626B
  608. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/layout_arrows.png 181B
  609. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/linkbutton_bg.png 1.24KB
  610. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/loading.gif 1.7KB
  611. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/menu_arrows.png 160B
  612. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/messager_icons.png 5.97KB
  613. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/pagination_icons.png 466B
  614. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/panel_tools.png 191B
  615. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/searchbox_button.png 813B
  616. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/slider_handle.png 863B
  617. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/spinner_arrows.png 141B
  618. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/tabs_icons.png 144B
  619. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/tree_icons.png 3.04KB
  620. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/images/validatebox_warning.png 921B
  621. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/layout.css 1.65KB
  622. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/linkbutton.css 4.16KB
  623. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/menu.css 2KB
  624. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/menubutton.css 1.83KB
  625. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/messager.css 804B
  626. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/numberbox.css 128B
  627. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/pagination.css 1.39KB
  628. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/panel.css 2.84KB
  629. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/progressbar.css 650B
  630. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/propertygrid.css 710B
  631. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/searchbox.css 1.8KB
  632. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/slider.css 1.58KB
  633. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/spinner.css 1.41KB
  634. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/splitbutton.css 293B
  635. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/tabs.css 8.1KB
  636. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/textbox.css 1.74KB
  637. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/tooltip.css 1.89KB
  638. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/tree.css 3.36KB
  639. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/validatebox.css 94B
  640. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/gray/window.css 2.05KB
  641. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icon.css 2.37KB
  642. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/
  643. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/back.png 912B
  644. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/blank.gif 43B
  645. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/cancel.png 1.11KB
  646. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/clear.png 779B
  647. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/cut.png 1KB
  648. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/edit_add.png 1.06KB
  649. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/edit_remove.png 625B
  650. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/filesave.png 898B
  651. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/filter.png 305B
  652. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/help.png 1.16KB
  653. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/large_chart.png 1.63KB
  654. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/large_clipart.png 1.69KB
  655. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/large_picture.png 1.63KB
  656. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/large_shapes.png 1.29KB
  657. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/large_smartart.png 1.3KB
  658. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/lock.png 311B
  659. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/man.png 244B
  660. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/mini_add.png 244B
  661. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/mini_edit.png 161B
  662. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/mini_refresh.png 160B
  663. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/no.png 922B
  664. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/ok.png 883B
  665. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/pencil.png 713B
  666. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/print.png 1.03KB
  667. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/redo.png 708B
  668. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/reload.png 1.02KB
  669. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/search.png 813B
  670. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/sum.png 289B
  671. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/tip.png 743B
  672. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/icons/undo.png 707B
  673. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/
  674. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/accordion.css 829B
  675. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/calendar.css 3.66KB
  676. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/combo.css 1.03KB
  677. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/combobox.css 390B
  678. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/datagrid.css 4.7KB
  679. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/datebox.css 616B
  680. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/dialog.css 533B
  681. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/easyui.css 47.15KB
  682. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/filebox.css 100B
  683. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/
  684. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/accordion_arrows.png 184B
  685. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/blank.gif 43B
  686. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/calendar_arrows.png 173B
  687. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/combo_arrow.png 117B
  688. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/datagrid_icons.png 220B
  689. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/datebox_arrow.png 626B
  690. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/layout_arrows.png 319B
  691. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/linkbutton_bg.png 1.24KB
  692. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/loading.gif 1.7KB
  693. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/menu_arrows.png 160B
  694. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/messager_icons.png 5.97KB
  695. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/pagination_icons.png 628B
  696. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/panel_tools.png 194B
  697. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/searchbox_button.png 813B
  698. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/slider_handle.png 863B
  699. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/spinner_arrows.png 115B
  700. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/tabs_icons.png 150B
  701. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/tree_icons.png 3.04KB
  702. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/images/validatebox_warning.png 921B
  703. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/layout.css 1.64KB
  704. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/linkbutton.css 4.15KB
  705. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/menu.css 1.99KB
  706. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/menubutton.css 1.83KB
  707. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/messager.css 801B
  708. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/numberbox.css 125B
  709. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/pagination.css 1.38KB
  710. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/panel.css 2.44KB
  711. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/progressbar.css 644B
  712. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/propertygrid.css 710B
  713. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/searchbox.css 1.8KB
  714. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/slider.css 1.57KB
  715. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/spinner.css 1.4KB
  716. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/splitbutton.css 293B
  717. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/tabs.css 5.94KB
  718. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/textbox.css 1.73KB
  719. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/tooltip.css 1.86KB
  720. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/tree.css 3.34KB
  721. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/validatebox.css 94B
  722. 源代码/dormitory/WebContent/plug-in/easyui-1.4.1/themes/metro/window.css 1.66KB
  723. 源代码/dormitory/WebContent/plug-in/jquery/
  724. 源代码/dormitory/WebContent/plug-in/jquery/jquery-1.11.2.js 277.52KB
  725. 源代码/dormitory/WebContent/plug-in/jquery/jquery-1.11.2.min.js 93.68KB
  726. 源代码/dormitory/WebContent/WEB-INF/
  727. 源代码/dormitory/WebContent/WEB-INF/lib/
  728. 源代码/dormitory/WebContent/WEB-INF/lib/ant-1.6.5.jar 1009.81KB
  729. 源代码/dormitory/WebContent/WEB-INF/lib/antlr-2.7.7.jar 434.85KB
  730. 源代码/dormitory/WebContent/WEB-INF/lib/aopalliance-1.0.jar 4.36KB
  731. 源代码/dormitory/WebContent/WEB-INF/lib/aspectjweaver-1.6.2.jar 1.47MB
  732. 源代码/dormitory/WebContent/WEB-INF/lib/c3p0-0.9.2.1.jar 413.94KB
  733. 源代码/dormitory/WebContent/WEB-INF/lib/cas-client-core-3.2.1.jar 85.27KB
  734. 源代码/dormitory/WebContent/WEB-INF/lib/commands-3.3.0-I20070605-0010.jar 100.96KB
  735. 源代码/dormitory/WebContent/WEB-INF/lib/common-3.2.0-v20060603.jar 77.91KB
  736. 源代码/dormitory/WebContent/WEB-INF/lib/commons-beanutils-1.8.3.jar 226.58KB
  737. 源代码/dormitory/WebContent/WEB-INF/lib/commons-codec-1.9.jar 257.78KB
  738. 源代码/dormitory/WebContent/WEB-INF/lib/commons-fileupload-1.3.jar 67.01KB
  739. 源代码/dormitory/WebContent/WEB-INF/lib/commons-io-2.4.jar 180.8KB
  740. 源代码/dormitory/WebContent/WEB-INF/lib/commons-lang-2.6.jar 277.56KB
  741. 源代码/dormitory/WebContent/WEB-INF/lib/commons-logging-1.1.3.jar 60.6KB
  742. 源代码/dormitory/WebContent/WEB-INF/lib/commons-pool2-2.0.jar 104.55KB
  743. 源代码/dormitory/WebContent/WEB-INF/lib/contenttype-3.4.200-v20140207-1251.jar 91.75KB
  744. 源代码/dormitory/WebContent/WEB-INF/lib/dom4j-1.6.1.jar 306.54KB
  745. 源代码/dormitory/WebContent/WEB-INF/lib/ehcache-core-2.4.3.jar 982.84KB
  746. 源代码/dormitory/WebContent/WEB-INF/lib/fastjson-1.2.4.jar 401.8KB
  747. 源代码/dormitory/WebContent/WEB-INF/lib/freemarker-2.3.8.jar 783.69KB
  748. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-c3p0-4.3.4.Final.jar 39.14KB
  749. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-commons-annotations-3.2.0.Final.jar 69.61KB
  750. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-commons-annotations-4.0.1.Final.jar 79.37KB
  751. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-core-4.1.6.Final.jar 4.25MB
  752. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-ehcache-4.1.6.Final.jar 133.34KB
  753. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-entitymanager-4.0.0.Final.jar 460.66KB
  754. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.1.Final.jar 100.25KB
  755. 源代码/dormitory/WebContent/WEB-INF/lib/hibernate-tools-4.0.0-CR1.jar 368.71KB
  756. 源代码/dormitory/WebContent/WEB-INF/lib/jackson-core-asl-1.9.13.jar 226.8KB
  757. 源代码/dormitory/WebContent/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar 762.37KB
  758. 源代码/dormitory/WebContent/WEB-INF/lib/javassist-3.12.1.GA.jar 629.05KB
  759. 源代码/dormitory/WebContent/WEB-INF/lib/javassist-3.18.0-GA.jar 697.2KB
  760. 源代码/dormitory/WebContent/WEB-INF/lib/jboss-logging-3.1.0.GA.jar 59.34KB
  761. 源代码/dormitory/WebContent/WEB-INF/lib/jboss-logging-annotations-1.2.0.Beta1.jar 11.29KB
  762. 源代码/dormitory/WebContent/WEB-INF/lib/jboss-transaction-api_1.1_spec-1.0.0.Final.jar 10.95KB
  763. 源代码/dormitory/WebContent/WEB-INF/lib/jcl-over-slf4j-1.6.1.jar 16.9KB
  764. 源代码/dormitory/WebContent/WEB-INF/lib/jedis-2.6.0.jar 322.68KB
  765. 源代码/dormitory/WebContent/WEB-INF/lib/jobs-3.6.0-v20140424-0053.jar 95.26KB
  766. 源代码/dormitory/WebContent/WEB-INF/lib/json-20140107.jar 63.43KB
  767. 源代码/dormitory/WebContent/WEB-INF/lib/jstl-1.2.jar 404.53KB
  768. 源代码/dormitory/WebContent/WEB-INF/lib/jta-1.1.jar 14.72KB
  769. 源代码/dormitory/WebContent/WEB-INF/lib/jtidy-r8-20060801.jar 243.19KB
  770. 源代码/dormitory/WebContent/WEB-INF/lib/log4j-1.2.14.jar 358.83KB
  771. 源代码/dormitory/WebContent/WEB-INF/lib/mchange-commons-java-0.2.3.4.jar 567.67KB
  772. 源代码/dormitory/WebContent/WEB-INF/lib/mysql-connector-java-5.1.21.jar 808.54KB
  773. 源代码/dormitory/WebContent/WEB-INF/lib/org.eclipse.jdt.core-3.8.0.v_C03.jar 4.39MB
  774. 源代码/dormitory/WebContent/WEB-INF/lib/osgi-3.10.0-v20140606-1445.jar 1.21MB
  775. 源代码/dormitory/WebContent/WEB-INF/lib/preferences-3.5.200-v20140224-1527.jar 124.18KB
  776. 源代码/dormitory/WebContent/WEB-INF/lib/registry-3.5.400-v20140428-1507.jar 179.21KB
  777. 源代码/dormitory/WebContent/WEB-INF/lib/runtime-3.2.0-v20060603.jar 74.83KB
  778. 源代码/dormitory/WebContent/WEB-INF/lib/shiro-cas-1.2.3.jar 15.59KB
  779. 源代码/dormitory/WebContent/WEB-INF/lib/shiro-core-1.2.3.jar 358.85KB
  780. 源代码/dormitory/WebContent/WEB-INF/lib/shiro-ehcache-1.2.3.jar 15KB
  781. 源代码/dormitory/WebContent/WEB-INF/lib/shiro-spring-1.2.3.jar 24.45KB
  782. 源代码/dormitory/WebContent/WEB-INF/lib/shiro-web-1.2.3.jar 139.13KB
  783. 源代码/dormitory/WebContent/WEB-INF/lib/slf4j-api-1.7.0.jar 25.47KB
  784. 源代码/dormitory/WebContent/WEB-INF/lib/slf4j-log4j12-1.7.0.jar 8.61KB
  785. 源代码/dormitory/WebContent/WEB-INF/lib/spring-aop-4.0.2.RELEASE.jar 344.46KB
  786. 源代码/dormitory/WebContent/WEB-INF/lib/spring-beans-4.0.2.RELEASE.jar 653.36KB
  787. 源代码/dormitory/WebContent/WEB-INF/lib/spring-context-4.0.2.RELEASE.jar 951.44KB
  788. 源代码/dormitory/WebContent/WEB-INF/lib/spring-context-support-4.0.2.RELEASE.jar 132.19KB
  789. 源代码/dormitory/WebContent/WEB-INF/lib/spring-core-4.0.2.RELEASE.jar 938.47KB
  790. 源代码/dormitory/WebContent/WEB-INF/lib/spring-data-redis-1.4.0.RELEASE.jar 636.19KB
  791. 源代码/dormitory/WebContent/WEB-INF/lib/spring-expression-4.0.2.RELEASE.jar 199.98KB
  792. 源代码/dormitory/WebContent/WEB-INF/lib/spring-jdbc-4.0.2.RELEASE.jar 409.78KB
  793. 源代码/dormitory/WebContent/WEB-INF/lib/spring-orm-4.0.2.RELEASE.jar 358.25KB
  794. 源代码/dormitory/WebContent/WEB-INF/lib/spring-tx-4.0.2.RELEASE.jar 242.39KB
  795. 源代码/dormitory/WebContent/WEB-INF/lib/spring-web-4.0.2.RELEASE.jar 649.43KB
  796. 源代码/dormitory/WebContent/WEB-INF/lib/spring-webmvc-4.0.2.RELEASE.jar 644.85KB
  797. 源代码/dormitory/WebContent/WEB-INF/lib/text-3.2.0-v20060605-1400.jar 208.85KB
  798. 源代码/dormitory/WebContent/WEB-INF/web.xml 3.44KB
  799. 视频演示/
  800. 视频演示/2月29日.mp4 6.41MB
0评论
提交 加载更多评论
其他资源 头戴黑水缸的大圣爷.zip
头戴黑水缸的大圣爷.zip
101615698741
101615698741
敏感api接口自动化收集工具
敏感api接口自动化收集工具
敏感api接口自动化收集工具 敏感api接口自动化收集工具 敏感api接口自动化收集工具
面向对象设计作业:商城系统 全部代码
面向对象设计作业:商城系统 全部代码
javaweb项目新闻发布系统struts+spring+hibernate+mysql-java课程设计毕业设计Java源码
新闻发布系统的完整源码,采用了流行的Struts、Spring、Hibernate和MySQL技术。本项目旨在为在校大学生的Java课程设计和毕业设计提供实用的学习参考,帮助他们深入理解现代Java开发的关键技术。 新闻发布系统具有添加新闻、编辑新闻、新闻浏览等多种模块,能够有效模拟真实的新闻发布流程。通过这个项目,学习者将掌握MVC架构设计、数据库操作、前后端交互等核心技能。无论您是Java开发的新手,还是希望进一步提升自己技能的技术爱好者,这个项目源码都是您学习和实践的理想资源。
javaweb项目校园失物招领系统struts+spring+hibernate-java课程设计毕业设计
校园失物招领系统的完整源码,采用了广泛使用的Struts、Spring和Hibernate框架。本项目旨在为在校大学生的Java课程设计和毕业设计提供宝贵的学习参考,帮助他们深入理解现代Java开发技术。 校园失物招领系统包含寻物启事管理、招领启事管理、账户管理、网站设置等功能模块,旨在为学生提供一个方便高效的平台,以帮助他们快速找到遗失物品。通过这个项目,学习者将掌握MVC架构设计、数据库管理和Web开发的核心技术。 无论您是Java开发的新手还是希望提升编程能力的技术爱好者,这个项目源码都将是您学习和实践的优质资源。立即下载源码,深入研究,提升您的Java开发技能,让我们共同在编程的道路上不断前进!
javaweb项目小区物业管理系统struts+spring+hibernate-java课程设计毕业设计编程资源
小区物业管理系统的完整源码,采用了流行的Struts、Spring和Hibernate框架。本项目旨在为在校大学生的Java课程设计和毕业设计提供丰富的学习参考,帮助他们深入理解现代Java开发的关键技术。 本小区物业管理系统具备全面的功能模块,包括住户资料管理、缴费管理、用户报修管理等,能够有效模拟真实世界中的物业管理场景。通过这个项目,学习者可以掌握MVC架构设计、数据库操作以及Spring框架的使用等核心知识。 无论您是刚刚接触Java的初学者,还是希望提升自己技能的Java技术爱好者,这个项目源码都将是您学习的绝佳资源。
webDemo.zip
webDemo.zip