├── GitHubTest ├── .classpath ├── .project ├── bin │ └── GitHubTest.class └── src │ └── GitHubTest.java ├── Hibernate5.2.4使用文档 ├── Bibliography.html ├── Hibernate_User_Guide.html ├── Preface.html ├── appendices │ ├── Annotations.html │ ├── BestPractices.html │ ├── Configurations.html │ ├── Legacy_Bootstrap.html │ ├── Legacy_Criteria.html │ ├── Legacy_DomainModel.html │ └── Legacy_Native_Queries.html ├── chapters │ ├── architecture │ │ └── Architecture.html │ ├── batch │ │ └── Batching.html │ ├── bootstrap │ │ └── Bootstrap.html │ ├── caching │ │ └── Caching.html │ ├── domain │ │ ├── DomainModel.html │ │ ├── access.html │ │ ├── associations.html │ │ ├── basic_types.html │ │ ├── collections.html │ │ ├── dynamic_model.html │ │ ├── embeddables.html │ │ ├── entity.html │ │ ├── identifiers.html │ │ ├── immutability.html │ │ ├── inheritance.html │ │ ├── naming.html │ │ ├── natural_id.html │ │ └── types.html │ ├── envers │ │ └── Envers.html │ ├── events │ │ └── Events.html │ ├── fetching │ │ └── Fetching.html │ ├── flushing │ │ └── Flushing.html │ ├── jdbc │ │ └── Database_Access.html │ ├── jndi │ │ └── JNDI.html │ ├── locking │ │ └── Locking.html │ ├── multitenancy │ │ └── MultiTenancy.html │ ├── osgi │ │ └── OSGi.html │ ├── pc │ │ ├── BytecodeEnhancement.html │ │ └── PersistenceContext.html │ ├── portability │ │ └── Portability.html │ ├── query │ │ ├── criteria │ │ │ └── Criteria.html │ │ ├── hql │ │ │ └── HQL.html │ │ ├── native │ │ │ └── Native.html │ │ └── spatial │ │ │ └── Spatial.html │ ├── schema │ │ └── Schema.html │ └── transactions │ │ └── Transactions.html ├── css │ ├── asciidoctor.css │ ├── hibernate-fonts.css │ ├── hibernate-layout.css │ └── hibernate.css └── images │ ├── AuthorWork.png │ ├── AuthorWork.zargo │ ├── CustomerOrderProduct.png │ ├── CustomerOrderProduct.zargo │ ├── EmployerEmployee.png │ ├── EmployerEmployee.zargo │ ├── architecture │ ├── JPA_Hibernate.svg │ ├── data_access_layers.graphml │ └── data_access_layers.svg │ ├── domain │ ├── inheritance │ │ └── inheritance_class_diagram.svg │ └── naming │ │ └── implicit_naming_strategy_diagram.svg │ ├── hibernate_logo_a.png │ ├── multitenancy │ ├── multitenacy_database.png │ ├── multitenacy_database.svg │ ├── multitenacy_discriminator.png │ ├── multitenacy_discriminator.svg │ ├── multitenacy_schema.png │ └── multitenacy_schema.svg │ ├── org │ └── hibernate │ │ ├── bkg_gradient.png │ │ ├── bkg_gradient_header.png │ │ ├── community_doc.png │ │ ├── docbook │ │ ├── callouts │ │ │ ├── 1.png │ │ │ ├── 1.svg │ │ │ ├── 10.png │ │ │ ├── 10.svg │ │ │ ├── 11.png │ │ │ ├── 11.svg │ │ │ ├── 12.png │ │ │ ├── 12.svg │ │ │ ├── 13.png │ │ │ ├── 13.svg │ │ │ ├── 14.png │ │ │ ├── 14.svg │ │ │ ├── 15.png │ │ │ ├── 15.svg │ │ │ ├── 2.png │ │ │ ├── 2.svg │ │ │ ├── 3.png │ │ │ ├── 3.svg │ │ │ ├── 4.png │ │ │ ├── 4.svg │ │ │ ├── 5.png │ │ │ ├── 5.svg │ │ │ ├── 6.png │ │ │ ├── 6.svg │ │ │ ├── 7.png │ │ │ ├── 7.svg │ │ │ ├── 8.png │ │ │ ├── 8.svg │ │ │ ├── 9.png │ │ │ └── 9.svg │ │ ├── caution.png │ │ ├── caution.svg │ │ ├── home.png │ │ ├── important.png │ │ ├── important.svg │ │ ├── next.png │ │ ├── note.png │ │ ├── note.svg │ │ ├── prev.png │ │ ├── tip.png │ │ ├── tip.svg │ │ ├── up.png │ │ ├── warning.png │ │ └── warning.svg │ │ ├── dot.png │ │ ├── dot2.png │ │ ├── hibernatelogo.png │ │ ├── logo.png │ │ ├── logo_smaller.png │ │ ├── patterned_rule.png │ │ └── title_hdr.png │ ├── overview.png │ └── overview.svg ├── MatlabTest ├── MatlabTest.iml ├── Matlab函数文件 │ └── myCrabNeuralNetworkFunction.m └── src │ ├── com │ └── hhu │ │ └── matlab │ │ └── CrabTest.java │ └── lib │ ├── javabuilder.jar │ ├── myCrabNeuralNetworkFunction.jar │ └── myCrabNeuralNetworkFunction2.jar ├── RBACTest ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .tern-project ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── hhu │ │ │ ├── RbacTestApplication.java │ │ │ ├── ServletInitializer.java │ │ │ ├── base │ │ │ ├── BaseDAO.java │ │ │ └── BaseEntity.java │ │ │ ├── common │ │ │ ├── AjaxResult.java │ │ │ ├── Whether.java │ │ │ └── tree │ │ │ │ ├── Node.java │ │ │ │ ├── NodeAttribute.java │ │ │ │ └── Tree.java │ │ │ ├── context │ │ │ ├── LoginUserCache.java │ │ │ ├── LoginUserHelper.java │ │ │ ├── NativeCache.java │ │ │ ├── ResponseContext.java │ │ │ ├── UserContext.java │ │ │ ├── UserContextFilter.java │ │ │ └── WebApplicationContext.java │ │ │ ├── controller │ │ │ ├── FunctionController.java │ │ │ ├── LoginController.java │ │ │ ├── RoleController.java │ │ │ ├── UserAuthorizeController.java │ │ │ └── UserController.java │ │ │ ├── dao │ │ │ ├── FunctionDao.java │ │ │ ├── RoleDao.java │ │ │ ├── RoleFunctionDao.java │ │ │ ├── UserDao.java │ │ │ └── UserRoleDao.java │ │ │ ├── dto │ │ │ ├── Accordion.java │ │ │ └── Authorize.java │ │ │ ├── entity │ │ │ ├── Function.java │ │ │ ├── Role.java │ │ │ ├── RoleFunction.java │ │ │ ├── User.java │ │ │ └── UserRole.java │ │ │ └── service │ │ │ ├── FunctionService.java │ │ │ ├── RoleService.java │ │ │ └── UserService.java │ └── resources │ │ ├── application.yml │ │ ├── banner.txt │ │ └── templates │ │ └── index.jsp │ └── test │ └── java │ └── com │ └── hhu │ └── RbacTestApplicationTests.java ├── SpringData ├── .idea │ ├── .name │ ├── compiler.xml │ ├── encodings.xml │ ├── libraries │ │ ├── Maven__antlr_antlr_2_7_7.xml │ │ ├── Maven__aopalliance_aopalliance_1_0.xml │ │ ├── Maven__dom4j_dom4j_1_6_1.xml │ │ ├── Maven__junit_junit_4_12.xml │ │ ├── Maven__mysql_mysql_connector_java_5_1_37.xml │ │ ├── Maven__org_aspectj_aspectjrt_1_8_5.xml │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ ├── Maven__org_hibernate_common_hibernate_commons_annotations_4_0_5_Final.xml │ │ ├── Maven__org_hibernate_hibernate_core_4_3_6_Final.xml │ │ ├── Maven__org_hibernate_hibernate_entitymanager_4_3_6_Final.xml │ │ ├── Maven__org_hibernate_javax_persistence_hibernate_jpa_2_1_api_1_0_0_Final.xml │ │ ├── Maven__org_javassist_javassist_3_18_1_GA.xml │ │ ├── Maven__org_jboss_jandex_1_1_0_Final.xml │ │ ├── Maven__org_jboss_logging_jboss_logging_3_1_3_GA.xml │ │ ├── Maven__org_jboss_logging_jboss_logging_annotations_1_2_0_Beta1.xml │ │ ├── Maven__org_jboss_spec_javax_transaction_jboss_transaction_api_1_2_spec_1_0_0_Final.xml │ │ ├── Maven__org_slf4j_jcl_over_slf4j_1_7_10.xml │ │ ├── Maven__org_slf4j_slf4j_api_1_7_10.xml │ │ ├── Maven__org_springframework_data_spring_data_commons_1_10_0_RELEASE.xml │ │ ├── Maven__org_springframework_data_spring_data_jpa_1_8_0_RELEASE.xml │ │ ├── Maven__org_springframework_spring_aop_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_beans_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_context_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_core_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_expression_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_jdbc_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_orm_4_0_9_RELEASE.xml │ │ ├── Maven__org_springframework_spring_tx_4_0_9_RELEASE.xml │ │ └── Maven__xml_apis_xml_apis_1_0_b2.xml │ ├── misc.xml │ ├── modules.xml │ ├── uiDesigner.xml │ └── workspace.xml ├── pom.xml ├── springdata.iml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── hhu │ │ │ │ ├── App.java │ │ │ │ ├── dao │ │ │ │ ├── Employee.java │ │ │ │ └── Student.java │ │ │ │ ├── jdbc │ │ │ │ └── StudentDao.java │ │ │ │ ├── repository │ │ │ │ ├── EmployeeCrudRepository.java │ │ │ │ ├── EmployeeJpaRepository.java │ │ │ │ ├── EmployeeJpaSpecificationExecutor.java │ │ │ │ ├── EmployeePagingAndSortingRepository.java │ │ │ │ └── EmployeeRepository.java │ │ │ │ ├── service │ │ │ │ └── EmployeeService.java │ │ │ │ └── util │ │ │ │ └── JDBCUtil.java │ │ └── resources │ │ │ ├── beans.xml │ │ │ └── jdbc.properties │ └── test │ │ └── java │ │ └── com │ │ └── hhu │ │ ├── AppTest.java │ │ ├── SpringDataTest.java │ │ ├── jdbc │ │ └── JdbcTest.java │ │ ├── repository │ │ └── EmployeeRepositoryTest.java │ │ └── service │ │ └── EmployeeServiceTest.java └── target │ ├── classes │ ├── beans.xml │ ├── com │ │ └── hhu │ │ │ ├── App.class │ │ │ ├── dao │ │ │ ├── Employee.class │ │ │ └── Student.class │ │ │ ├── jdbc │ │ │ └── StudentDao.class │ │ │ ├── repository │ │ │ ├── EmployeeCrudRepository.class │ │ │ ├── EmployeeJpaRepository.class │ │ │ ├── EmployeeJpaSpecificationExecutor.class │ │ │ ├── EmployeePagingAndSortingRepository.class │ │ │ └── EmployeeRepository.class │ │ │ ├── service │ │ │ └── EmployeeService.class │ │ │ └── util │ │ │ └── JDBCUtil.class │ └── jdbc.properties │ └── test-classes │ └── com │ └── hhu │ ├── AppTest.class │ ├── SpringDataTest.class │ ├── jdbc │ └── JdbcTest.class │ ├── repository │ ├── EmployeeRepositoryTest$1.class │ └── EmployeeRepositoryTest.class │ └── service │ └── EmployeeServiceTest.class ├── StudentMannagerSystem ├── .classpath ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ └── org.jboss.ide.eclipse.as.core.prefs ├── .tern-project ├── WebContent │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WEB-INF │ │ ├── lib │ │ │ ├── commons-beanutils-1.8.0.jar │ │ │ ├── commons-collections-3.1.jar │ │ │ ├── commons-lang-2.5.jar │ │ │ ├── commons-logging-1.1.1.jar │ │ │ ├── ezmorph-1.0.6.jar │ │ │ ├── json-lib-2.4-jdk15.jar │ │ │ └── mysql-connector-java-5.1.7-bin.jar │ │ └── web.xml │ ├── gradeInfo.jsp │ ├── images │ │ ├── login.jpg │ │ └── main.jpg │ ├── js │ │ ├── jquery-3.2.1.min.js │ │ └── jquery-easyui-1.5.1 │ │ │ ├── changelog.txt │ │ │ ├── demo-mobile │ │ │ ├── accordion │ │ │ │ ├── _content.html │ │ │ │ ├── basic.html │ │ │ │ └── header.html │ │ │ ├── animation │ │ │ │ ├── basic.html │ │ │ │ ├── fade.html │ │ │ │ ├── pop.html │ │ │ │ └── slide.html │ │ │ ├── badge │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── list.html │ │ │ │ └── tabs.html │ │ │ ├── button │ │ │ │ ├── basic.html │ │ │ │ ├── group.html │ │ │ │ ├── style.html │ │ │ │ └── switch.html │ │ │ ├── datagrid │ │ │ │ ├── basic.html │ │ │ │ └── rowediting.html │ │ │ ├── datalist │ │ │ │ ├── basic.html │ │ │ │ ├── group.html │ │ │ │ └── selection.html │ │ │ ├── dialog │ │ │ │ ├── basic.html │ │ │ │ └── message.html │ │ │ ├── form │ │ │ │ └── basic.html │ │ │ ├── images │ │ │ │ ├── login1.jpg │ │ │ │ ├── modem.png │ │ │ │ ├── more.png │ │ │ │ ├── pda.png │ │ │ │ ├── scanner.png │ │ │ │ └── tablet.png │ │ │ ├── input │ │ │ │ ├── numberspinner.html │ │ │ │ └── textbox.html │ │ │ ├── layout │ │ │ │ └── basic.html │ │ │ ├── menu │ │ │ │ ├── basic.html │ │ │ │ └── menubar.html │ │ │ ├── panel │ │ │ │ ├── _content.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ └── nav.html │ │ │ ├── simplelist │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── group.html │ │ │ │ ├── image.html │ │ │ │ └── link.html │ │ │ ├── tabs │ │ │ │ ├── basic.html │ │ │ │ ├── nav.html │ │ │ │ └── pill.html │ │ │ ├── toolbar │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ └── menu.html │ │ │ └── tree │ │ │ │ ├── basic.html │ │ │ │ └── dnd.html │ │ │ ├── demo │ │ │ ├── accordion │ │ │ │ ├── _content.html │ │ │ │ ├── actions.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── expandable.html │ │ │ │ ├── fluid.html │ │ │ │ ├── multiple.html │ │ │ │ └── tools.html │ │ │ ├── calendar │ │ │ │ ├── basic.html │ │ │ │ ├── custom.html │ │ │ │ ├── disabledate.html │ │ │ │ ├── firstday.html │ │ │ │ ├── fluid.html │ │ │ │ └── weeknumber.html │ │ │ ├── combo │ │ │ │ ├── animation.html │ │ │ │ └── basic.html │ │ │ ├── combobox │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── combobox_data1.json │ │ │ │ ├── combobox_data2.json │ │ │ │ ├── customformat.html │ │ │ │ ├── dynamicdata.html │ │ │ │ ├── fluid.html │ │ │ │ ├── group.html │ │ │ │ ├── icons.html │ │ │ │ ├── itemicon.html │ │ │ │ ├── multiline.html │ │ │ │ ├── multiple.html │ │ │ │ ├── navigation.html │ │ │ │ ├── remotedata.html │ │ │ │ └── remotejsonp.html │ │ │ ├── combogrid │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ ├── multiple.html │ │ │ │ ├── navigation.html │ │ │ │ └── setvalue.html │ │ │ ├── combotree │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ ├── multiple.html │ │ │ │ └── tree_data1.json │ │ │ ├── combotreegrid │ │ │ │ ├── basic.html │ │ │ │ ├── multiple.html │ │ │ │ └── treegrid_data1.json │ │ │ ├── datagrid │ │ │ │ ├── aligncolumns.html │ │ │ │ ├── basic.html │ │ │ │ ├── cacheeditor.html │ │ │ │ ├── cellediting.html │ │ │ │ ├── cellstyle.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── clientpagination.html │ │ │ │ ├── columngroup.html │ │ │ │ ├── complextoolbar.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── custompager.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── datagrid_data2.json │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── formatcolumns.html │ │ │ │ ├── frozencolumns.html │ │ │ │ ├── frozenrows.html │ │ │ │ ├── mergecells.html │ │ │ │ ├── multisorting.html │ │ │ │ ├── products.json │ │ │ │ ├── rowborder.html │ │ │ │ ├── rowediting.html │ │ │ │ ├── rowstyle.html │ │ │ │ ├── selection.html │ │ │ │ ├── simpletoolbar.html │ │ │ │ └── transform.html │ │ │ ├── datalist │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── datalist_data1.json │ │ │ │ ├── group.html │ │ │ │ ├── multiselect.html │ │ │ │ └── remotedata.html │ │ │ ├── datebox │ │ │ │ ├── basic.html │ │ │ │ ├── buttons.html │ │ │ │ ├── clone.html │ │ │ │ ├── dateformat.html │ │ │ │ ├── events.html │ │ │ │ ├── fluid.html │ │ │ │ ├── restrict.html │ │ │ │ ├── sharedcalendar.html │ │ │ │ └── validate.html │ │ │ ├── datetimebox │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ └── showseconds.html │ │ │ ├── datetimespinner │ │ │ │ ├── basic.html │ │ │ │ ├── clearicon.html │ │ │ │ ├── fluid.html │ │ │ │ └── format.html │ │ │ ├── demo.css │ │ │ ├── dialog │ │ │ │ ├── basic.html │ │ │ │ ├── complextoolbar.html │ │ │ │ ├── fluid.html │ │ │ │ └── toolbarbuttons.html │ │ │ ├── draggable │ │ │ │ ├── basic.html │ │ │ │ ├── constrain.html │ │ │ │ └── snap.html │ │ │ ├── droppable │ │ │ │ ├── accept.html │ │ │ │ ├── basic.html │ │ │ │ └── sort.html │ │ │ ├── easyloader │ │ │ │ └── basic.html │ │ │ ├── filebox │ │ │ │ ├── basic.html │ │ │ │ ├── buttonalign.html │ │ │ │ └── fluid.html │ │ │ ├── form │ │ │ │ ├── basic.html │ │ │ │ ├── form_data1.json │ │ │ │ ├── load.html │ │ │ │ └── validateonsubmit.html │ │ │ ├── layout │ │ │ │ ├── _content.html │ │ │ │ ├── addremove.html │ │ │ │ ├── autoheight.html │ │ │ │ ├── basic.html │ │ │ │ ├── collapsetitle.html │ │ │ │ ├── complex.html │ │ │ │ ├── customcollapsetitle.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── fluid.html │ │ │ │ ├── full.html │ │ │ │ ├── nestedlayout.html │ │ │ │ ├── nocollapsible.html │ │ │ │ ├── propertygrid_data1.json │ │ │ │ └── tree_data1.json │ │ │ ├── linkbutton │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── group.html │ │ │ │ ├── iconalign.html │ │ │ │ ├── plain.html │ │ │ │ ├── size.html │ │ │ │ ├── style.html │ │ │ │ └── toggle.html │ │ │ ├── menu │ │ │ │ ├── basic.html │ │ │ │ ├── customitem.html │ │ │ │ ├── events.html │ │ │ │ ├── inline.html │ │ │ │ └── nav.html │ │ │ ├── menubutton │ │ │ │ ├── actions.html │ │ │ │ ├── alignment.html │ │ │ │ ├── basic.html │ │ │ │ └── nav.html │ │ │ ├── messager │ │ │ │ ├── alert.html │ │ │ │ ├── basic.html │ │ │ │ ├── interactive.html │ │ │ │ └── position.html │ │ │ ├── numberbox │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── format.html │ │ │ │ └── range.html │ │ │ ├── numberspinner │ │ │ │ ├── align.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── increment.html │ │ │ │ └── range.html │ │ │ ├── pagination │ │ │ │ ├── attaching.html │ │ │ │ ├── basic.html │ │ │ │ ├── custombuttons.html │ │ │ │ ├── layout.html │ │ │ │ ├── links.html │ │ │ │ └── simple.html │ │ │ ├── panel │ │ │ │ ├── _content.html │ │ │ │ ├── basic.html │ │ │ │ ├── customtools.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── loadcontent.html │ │ │ │ ├── nestedpanel.html │ │ │ │ └── paneltools.html │ │ │ ├── passwordbox │ │ │ │ ├── basic.html │ │ │ │ ├── flash.html │ │ │ │ └── validatepassword.html │ │ │ ├── progressbar │ │ │ │ ├── basic.html │ │ │ │ └── fluid.html │ │ │ ├── propertygrid │ │ │ │ ├── basic.html │ │ │ │ ├── customcolumns.html │ │ │ │ ├── groupformat.html │ │ │ │ └── propertygrid_data1.json │ │ │ ├── resizable │ │ │ │ └── basic.html │ │ │ ├── searchbox │ │ │ │ ├── basic.html │ │ │ │ ├── category.html │ │ │ │ └── fluid.html │ │ │ ├── slider │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── formattip.html │ │ │ │ ├── nonlinear.html │ │ │ │ ├── range.html │ │ │ │ ├── rule.html │ │ │ │ └── vertical.html │ │ │ ├── splitbutton │ │ │ │ ├── actions.html │ │ │ │ └── basic.html │ │ │ ├── switchbutton │ │ │ │ ├── action.html │ │ │ │ └── basic.html │ │ │ ├── tabs │ │ │ │ ├── _content.html │ │ │ │ ├── autoheight.html │ │ │ │ ├── basic.html │ │ │ │ ├── dropdown.html │ │ │ │ ├── fixedwidth.html │ │ │ │ ├── fluid.html │ │ │ │ ├── hover.html │ │ │ │ ├── images │ │ │ │ │ ├── modem.png │ │ │ │ │ ├── pda.png │ │ │ │ │ ├── scanner.png │ │ │ │ │ └── tablet.png │ │ │ │ ├── nestedtabs.html │ │ │ │ ├── striptools.html │ │ │ │ ├── style.html │ │ │ │ ├── tabimage.html │ │ │ │ ├── tabposition.html │ │ │ │ ├── tabstools.html │ │ │ │ └── tree_data1.json │ │ │ ├── tagbox │ │ │ │ ├── autocomplete.html │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── format.html │ │ │ │ ├── style.html │ │ │ │ ├── tagbox_data1.json │ │ │ │ └── validate.html │ │ │ ├── textbox │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── clearicon.html │ │ │ │ ├── custom.html │ │ │ │ ├── fluid.html │ │ │ │ ├── icons.html │ │ │ │ ├── multiline.html │ │ │ │ └── size.html │ │ │ ├── timespinner │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ └── range.html │ │ │ ├── tooltip │ │ │ │ ├── _content.html │ │ │ │ ├── _dialog.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ ├── customcontent.html │ │ │ │ ├── customstyle.html │ │ │ │ ├── position.html │ │ │ │ ├── toolbar.html │ │ │ │ └── tooltipdialog.html │ │ │ ├── tree │ │ │ │ ├── actions.html │ │ │ │ ├── animation.html │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── customcheckbox.html │ │ │ │ ├── dnd.html │ │ │ │ ├── editable.html │ │ │ │ ├── formatting.html │ │ │ │ ├── icons.html │ │ │ │ ├── lazyload.html │ │ │ │ ├── lines.html │ │ │ │ ├── tree_data1.json │ │ │ │ └── tree_data2.json │ │ │ ├── treegrid │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── clientpagination.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── customcheckbox.html │ │ │ │ ├── editable.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── lines.html │ │ │ │ ├── reports.html │ │ │ │ ├── treegrid_data1.json │ │ │ │ ├── treegrid_data2.json │ │ │ │ └── treegrid_data3.json │ │ │ ├── validatebox │ │ │ │ ├── basic.html │ │ │ │ ├── customtooltip.html │ │ │ │ ├── errorplacement.html │ │ │ │ └── validateonblur.html │ │ │ └── window │ │ │ │ ├── basic.html │ │ │ │ ├── borderstyle.html │ │ │ │ ├── customtools.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── inlinewindow.html │ │ │ │ ├── modalwindow.html │ │ │ │ └── windowlayout.html │ │ │ ├── easyloader.js │ │ │ ├── jquery.easyui.min.js │ │ │ ├── jquery.easyui.mobile.js │ │ │ ├── jquery.min.js │ │ │ ├── license_freeware.txt │ │ │ ├── locale │ │ │ ├── easyui-lang-af.js │ │ │ ├── easyui-lang-am.js │ │ │ ├── easyui-lang-ar.js │ │ │ ├── easyui-lang-bg.js │ │ │ ├── easyui-lang-ca.js │ │ │ ├── easyui-lang-cs.js │ │ │ ├── easyui-lang-cz.js │ │ │ ├── easyui-lang-da.js │ │ │ ├── easyui-lang-de.js │ │ │ ├── easyui-lang-el.js │ │ │ ├── easyui-lang-en.js │ │ │ ├── easyui-lang-es.js │ │ │ ├── easyui-lang-fr.js │ │ │ ├── easyui-lang-it.js │ │ │ ├── easyui-lang-jp.js │ │ │ ├── easyui-lang-ko.js │ │ │ ├── easyui-lang-nl.js │ │ │ ├── easyui-lang-pl.js │ │ │ ├── easyui-lang-pt_BR.js │ │ │ ├── easyui-lang-ru.js │ │ │ ├── easyui-lang-sv_SE.js │ │ │ ├── easyui-lang-tr.js │ │ │ ├── easyui-lang-zh_CN.js │ │ │ └── easyui-lang-zh_TW.js │ │ │ ├── plugins │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combo.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.combogrid.js │ │ │ ├── jquery.combotree.js │ │ │ ├── jquery.combotreegrid.js │ │ │ ├── jquery.datagrid.js │ │ │ ├── jquery.datalist.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.datetimebox.js │ │ │ ├── jquery.datetimespinner.js │ │ │ ├── jquery.dialog.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.filebox.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.layout.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.menubutton.js │ │ │ ├── jquery.messager.js │ │ │ ├── jquery.mobile.js │ │ │ ├── jquery.numberbox.js │ │ │ ├── jquery.numberspinner.js │ │ │ ├── jquery.pagination.js │ │ │ ├── jquery.panel.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.passwordbox.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.searchbox.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.spinner.js │ │ │ ├── jquery.splitbutton.js │ │ │ ├── jquery.switchbutton.js │ │ │ ├── jquery.tabs.js │ │ │ ├── jquery.tagbox.js │ │ │ ├── jquery.textbox.js │ │ │ ├── jquery.timespinner.js │ │ │ ├── jquery.tooltip.js │ │ │ ├── jquery.tree.js │ │ │ ├── jquery.treegrid.js │ │ │ ├── jquery.validatebox.js │ │ │ └── jquery.window.js │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ ├── easyloader.js │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.tabs.js │ │ │ └── jquery.window.js │ │ │ └── themes │ │ │ ├── black │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── bootstrap │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── color.css │ │ │ ├── default │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── gray │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── icon.css │ │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── clear.png │ │ │ ├── cut.png │ │ │ ├── edit_add.png │ │ │ ├── edit_remove.png │ │ │ ├── filesave.png │ │ │ ├── filter.png │ │ │ ├── help.png │ │ │ ├── large_chart.png │ │ │ ├── large_clipart.png │ │ │ ├── large_picture.png │ │ │ ├── large_shapes.png │ │ │ ├── large_smartart.png │ │ │ ├── lock.png │ │ │ ├── man.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── mini_refresh.png │ │ │ ├── more.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── redo.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ └── undo.png │ │ │ ├── material │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── metro │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ └── mobile.css │ ├── login.jsp │ ├── main.jsp │ └── studentInfo.jsp ├── build │ └── classes │ │ └── com │ │ └── java1234 │ │ ├── dao │ │ ├── GradeDao.class │ │ ├── StudentDao.class │ │ └── UserDao.class │ │ ├── model │ │ ├── Grade.class │ │ ├── PageBean.class │ │ ├── Student.class │ │ └── User.class │ │ ├── util │ │ ├── DateToStringUtil.class │ │ ├── DbUtil.class │ │ ├── JsonUtil.class │ │ ├── ResponseUtil.class │ │ ├── StringUtil.class │ │ └── TestDate.class │ │ └── web │ │ ├── GradeComboListServlet.class │ │ ├── GradeDeleteServlet.class │ │ ├── GradeListServlet.class │ │ ├── GradeSaveServlet.class │ │ ├── LoginServlet.class │ │ ├── StudentDeleteServlet.class │ │ ├── StudentListServlet.class │ │ └── StudentSaveServlet.class └── src │ └── com │ └── java1234 │ ├── dao │ ├── GradeDao.java │ ├── StudentDao.java │ └── UserDao.java │ ├── model │ ├── Grade.java │ ├── PageBean.java │ ├── Student.java │ └── User.java │ ├── util │ ├── DateToStringUtil.java │ ├── DbUtil.java │ ├── JsonUtil.java │ ├── ResponseUtil.java │ ├── StringUtil.java │ └── TestDate.java │ └── web │ ├── GradeComboListServlet.java │ ├── GradeDeleteServlet.java │ ├── GradeListServlet.java │ ├── GradeSaveServlet.java │ ├── LoginServlet.java │ ├── StudentDeleteServlet.java │ ├── StudentListServlet.java │ └── StudentSaveServlet.java ├── classloader ├── .classpath ├── .project ├── bin │ └── com │ │ └── hhu │ │ └── classloader │ │ ├── BaseManager.class │ │ ├── ClassLoaderTest.class │ │ ├── LoadInfo.class │ │ ├── MannagerFactory.class │ │ ├── MsgHandler.class │ │ ├── MyClassloader.class │ │ └── MyMannager.class └── src │ └── com │ └── hhu │ └── classloader │ ├── BaseManager.java │ ├── ClassLoaderTest.java │ ├── LoadInfo.java │ ├── MannagerFactory.java │ ├── MsgHandler.java │ ├── MyClassloader.java │ └── MyMannager.java ├── datalog ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── hhu │ │ │ ├── DatalogApplication.java │ │ │ ├── TestLong.java │ │ │ ├── dao │ │ │ └── ProductDao.java │ │ │ ├── datalog │ │ │ ├── ActionDao.java │ │ │ ├── Datalog.java │ │ │ └── DatalogAspect.java │ │ │ ├── domain │ │ │ ├── Action.java │ │ │ ├── ActionType.java │ │ │ ├── ChangeItem.java │ │ │ └── Product.java │ │ │ └── util │ │ │ └── DiffUtil.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── hhu │ └── DatalogApplicationTests.java ├── itcast-springboot ├── .classpath ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.validation.prefs │ └── org.hibernate.eclipse.console.prefs ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── cn │ │ │ └── itcast │ │ │ └── springboot │ │ │ └── javaconfig │ │ │ ├── Main.java │ │ │ ├── SpringConfig.java │ │ │ ├── User.java │ │ │ ├── UserDAO.java │ │ │ └── UserService.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── target │ ├── classes │ │ └── cn │ │ │ └── itcast │ │ │ └── springboot │ │ │ └── javaconfig │ │ │ ├── Main.class │ │ │ ├── SpringConfig.class │ │ │ ├── User.class │ │ │ ├── UserDAO.class │ │ │ └── UserService.class │ └── m2e-wtp │ │ └── web-resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ └── com.hhu.springboot │ │ └── itcast-springboot │ │ ├── pom.properties │ │ └── pom.xml └── 我的文档 │ └── Eclipse wokspace │ └── itcast-springboot │ └── target │ └── m2e-wtp │ └── web-resources │ └── META-INF │ ├── MANIFEST.MF │ └── maven │ └── com.hhu.springboot │ └── itcast-springboot │ ├── pom.properties │ └── pom.xml ├── jedis ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── hhu │ │ │ └── jedis │ │ │ └── jedis │ │ │ ├── App.java │ │ │ └── JedisDemo1.java │ └── test │ │ └── java │ │ └── com │ │ └── hhu │ │ └── jedis │ │ └── jedis │ │ └── AppTest.java └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.hhu.jedis │ │ │ └── jedis │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── com │ │ └── hhu │ │ └── jedis │ │ └── jedis │ │ ├── App.class │ │ └── JedisDemo1.class │ └── test-classes │ └── com │ └── hhu │ └── jedis │ └── jedis │ └── AppTest.class ├── spring-boot-configurationfile.pl ├── spring-framework-reference.pdf ├── testGitAdd.txt ├── testGitHub.txt └── websocket ├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.m2e.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.wst.jsdt.ui.superType.name └── org.eclipse.wst.validation.prefs ├── .tern-project ├── pom.xml ├── src └── main │ ├── java │ └── com │ │ └── hhu │ │ └── websocket │ │ ├── HandShakeInterceptor.java │ │ ├── MyWebSocketHandler.java │ │ ├── WebController.java │ │ └── WebSocketConfig.java │ └── webapp │ └── WEB-INF │ ├── jsp │ └── index.jsp │ ├── springDispatcherServlet-servlet.xml │ └── web.xml ├── target ├── classes │ └── com │ │ └── hhu │ │ └── websocket │ │ ├── HandShakeInterceptor.class │ │ ├── MyWebSocketHandler$1.class │ │ ├── MyWebSocketHandler.class │ │ ├── WebController.class │ │ └── WebSocketConfig.class └── m2e-wtp │ └── web-resources │ └── META-INF │ ├── MANIFEST.MF │ └── maven │ └── com.hhu │ └── websocket │ ├── pom.properties │ └── pom.xml └── 我的文档 └── Eclipse wokspace └── websocket └── target └── m2e-wtp └── web-resources └── META-INF ├── MANIFEST.MF └── maven └── com.hhu └── websocket ├── pom.properties └── pom.xml /GitHubTest/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GitHubTest/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | GitHubTest 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /GitHubTest/bin/GitHubTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/GitHubTest/bin/GitHubTest.class -------------------------------------------------------------------------------- /GitHubTest/src/GitHubTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class GitHubTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/css/hibernate.css: -------------------------------------------------------------------------------- 1 | @import url("hibernate-fonts.css"); 2 | @import url("hibernate-layout.css"); 3 | @import url("asciidoctor.css"); -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/AuthorWork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/AuthorWork.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/AuthorWork.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/AuthorWork.zargo -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/CustomerOrderProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/CustomerOrderProduct.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/CustomerOrderProduct.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/CustomerOrderProduct.zargo -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/EmployerEmployee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/EmployerEmployee.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/EmployerEmployee.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/EmployerEmployee.zargo -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/hibernate_logo_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/hibernate_logo_a.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/multitenancy/multitenacy_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/multitenancy/multitenacy_database.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/multitenancy/multitenacy_discriminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/multitenancy/multitenacy_discriminator.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/multitenancy/multitenacy_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/multitenancy/multitenacy_schema.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/bkg_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/bkg_gradient.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/bkg_gradient_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/bkg_gradient_header.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/community_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/community_doc.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/1.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/10.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/11.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/12.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/13.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/14.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/15.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/2.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/3.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/4.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/5.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/6.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/7.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/8.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/callouts/9.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/caution.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/home.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/important.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/next.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/note.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/prev.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/tip.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/up.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/docbook/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/docbook/warning.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/dot.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/dot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/dot2.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/hibernatelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/hibernatelogo.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/logo.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/logo_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/logo_smaller.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/patterned_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/patterned_rule.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/org/hibernate/title_hdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/org/hibernate/title_hdr.png -------------------------------------------------------------------------------- /Hibernate5.2.4使用文档/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/Hibernate5.2.4使用文档/images/overview.png -------------------------------------------------------------------------------- /MatlabTest/src/lib/javabuilder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/MatlabTest/src/lib/javabuilder.jar -------------------------------------------------------------------------------- /MatlabTest/src/lib/myCrabNeuralNetworkFunction.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/MatlabTest/src/lib/myCrabNeuralNetworkFunction.jar -------------------------------------------------------------------------------- /MatlabTest/src/lib/myCrabNeuralNetworkFunction2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/MatlabTest/src/lib/myCrabNeuralNetworkFunction2.jar -------------------------------------------------------------------------------- /RBACTest/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | 12 | ### IntelliJ IDEA ### 13 | .idea 14 | *.iws 15 | *.iml 16 | *.ipr 17 | 18 | ### NetBeans ### 19 | nbproject/private/ 20 | build/ 21 | nbbuild/ 22 | dist/ 23 | nbdist/ 24 | .nb-gradle/ -------------------------------------------------------------------------------- /RBACTest/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/RBACTest/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /RBACTest/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.2/apache-maven-3.5.2-bin.zip 2 | -------------------------------------------------------------------------------- /RBACTest/.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "guess-types": { 4 | 5 | }, 6 | "outline": { 7 | 8 | }, 9 | "angular": { 10 | 11 | } 12 | }, 13 | "libs": [ 14 | "ecma5", 15 | "browser" 16 | ] 17 | } -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/RbacTestApplication.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration; 6 | import org.springframework.context.annotation.Bean; 7 | 8 | @SpringBootApplication 9 | public class RbacTestApplication { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(RbacTestApplication.class, args); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/ServletInitializer.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | import org.springframework.boot.builder.SpringApplicationBuilder; 4 | import org.springframework.boot.web.support.SpringBootServletInitializer; 5 | 6 | public class ServletInitializer extends SpringBootServletInitializer { 7 | 8 | @Override 9 | protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { 10 | return application.sources(RbacTestApplication.class); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/base/BaseDAO.java: -------------------------------------------------------------------------------- 1 | package com.hhu.base; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.jdbc.core.JdbcTemplate; 5 | 6 | public class BaseDAO { 7 | 8 | @Autowired 9 | protected JdbcTemplate jdbcTemplate; 10 | 11 | } 12 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/base/BaseEntity.java: -------------------------------------------------------------------------------- 1 | package com.hhu.base; 2 | 3 | import java.util.Collection; 4 | import java.util.HashMap; 5 | import java.util.Map; 6 | 7 | public class BaseEntity { 8 | 9 | private Long id; 10 | 11 | public Long getId() { 12 | return id; 13 | } 14 | 15 | public void setId(Long id) { 16 | this.id = id; 17 | } 18 | 19 | public static Map idEntityMap(Collection list) { 20 | Map map = new HashMap<>(); 21 | 22 | if(null==list||0==list.size()) { 23 | return map; 24 | } 25 | 26 | 27 | for(T entity : list) { 28 | map.put(entity.getId(), entity); 29 | } 30 | 31 | return map; 32 | 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/common/Whether.java: -------------------------------------------------------------------------------- 1 | package com.hhu.common; 2 | 3 | public enum Whether { 4 | 5 | YES(1), 6 | NO(0); 7 | 8 | private int value; 9 | 10 | private Whether(int value) { 11 | // TODO Auto-generated constructor stub 12 | this.value = value; 13 | } 14 | 15 | public int getValue() { 16 | return value; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/common/tree/NodeAttribute.java: -------------------------------------------------------------------------------- 1 | package com.hhu.common.tree; 2 | 3 | public class NodeAttribute { 4 | 5 | private String url; 6 | private Long id; 7 | 8 | public NodeAttribute(String url, Long id) { 9 | super(); 10 | this.url = url; 11 | this.id = id; 12 | } 13 | 14 | public String getUrl() { 15 | return url; 16 | } 17 | 18 | public void setUrl(String url) { 19 | this.url = url; 20 | } 21 | 22 | public Long getId() { 23 | return id; 24 | } 25 | 26 | public void setId(Long id) { 27 | this.id = id; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/context/ResponseContext.java: -------------------------------------------------------------------------------- 1 | package com.hhu.context; 2 | 3 | import javax.servlet.http.HttpServletResponse; 4 | 5 | public class ResponseContext { 6 | 7 | private static ThreadLocal tl = new ThreadLocal<>(); 8 | 9 | public static void setCurrent(HttpServletResponse response) { 10 | tl.set(response); 11 | } 12 | 13 | public static HttpServletResponse getCurrent() { 14 | return tl.get(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/context/UserContext.java: -------------------------------------------------------------------------------- 1 | package com.hhu.context; 2 | 3 | import com.hhu.entity.User; 4 | 5 | public class UserContext { 6 | 7 | private static ThreadLocal tl = new ThreadLocal<>(); 8 | 9 | private User user; 10 | 11 | public UserContext(User user) { 12 | super(); 13 | this.user = user; 14 | } 15 | 16 | public User getUser() { 17 | return user; 18 | } 19 | 20 | static void setCurrent(User user) { 21 | tl.set(new UserContext(user)); 22 | } 23 | 24 | public static UserContext getCurrent() { 25 | return tl.get(); 26 | } 27 | 28 | 29 | } 30 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/context/WebApplicationContext.java: -------------------------------------------------------------------------------- 1 | package com.hhu.context; 2 | 3 | import org.springframework.beans.BeansException; 4 | import org.springframework.context.ApplicationContext; 5 | import org.springframework.context.ApplicationContextAware; 6 | 7 | public class WebApplicationContext implements ApplicationContextAware { 8 | 9 | private static ApplicationContext ctx; 10 | 11 | private WebApplicationContext() { 12 | 13 | } 14 | 15 | @Override 16 | public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { 17 | // TODO Auto-generated method stub 18 | ctx = applicationContext; 19 | } 20 | 21 | public static T getBean(Class clazz) { 22 | return (T) ctx.getBean(clazz); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /RBACTest/src/main/java/com/hhu/entity/Role.java: -------------------------------------------------------------------------------- 1 | package com.hhu.entity; 2 | 3 | import com.hhu.base.BaseEntity; 4 | 5 | public class Role extends BaseEntity { 6 | 7 | private String name; 8 | 9 | private String functionIds; 10 | 11 | 12 | public String getName() { 13 | return name; 14 | } 15 | 16 | public void setName(String name) { 17 | this.name = name; 18 | } 19 | 20 | public String getFunctionIds() { 21 | return functionIds; 22 | } 23 | 24 | public void setFunctionIds(String functionIds) { 25 | this.functionIds = functionIds; 26 | } 27 | 28 | public Role(String name) { 29 | super(); 30 | this.name = name; 31 | } 32 | 33 | public Role() { 34 | super(); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /RBACTest/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | datasource: 3 | driver-class-name: com.mysql.jdbc.Driver 4 | url: jdbc:mysql://127.0.0.1:3306/rbac 5 | username: root 6 | password: 921228jack 7 | 8 | 9 | -------------------------------------------------------------------------------- /RBACTest/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | __ __ _ _ _ 2 | \ \ / /__(_) __ _ _ _ ___ | | (_)_ _ 3 | \ \ /\ / / _ \ |/ _` | | | |/ _ \ | | | | | | | 4 | \ V V / __/ | (_| | |_| | (_) | | |___| | |_| | 5 | \_/\_/ \___|_|\__, |\__,_|\___/ |_____|_|\__,_| 6 | |___/ -------------------------------------------------------------------------------- /RBACTest/src/main/resources/templates/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | 5 | 6 | 7 | 登录 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /RBACTest/src/test/java/com/hhu/RbacTestApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class RbacTestApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringData/.idea/.name: -------------------------------------------------------------------------------- 1 | springdata -------------------------------------------------------------------------------- /SpringData/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /SpringData/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__antlr_antlr_2_7_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__dom4j_dom4j_1_6_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__mysql_mysql_connector_java_5_1_37.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_aspectj_aspectjrt_1_8_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_hibernate_common_hibernate_commons_annotations_4_0_5_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_hibernate_hibernate_core_4_3_6_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_hibernate_hibernate_entitymanager_4_3_6_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_hibernate_javax_persistence_hibernate_jpa_2_1_api_1_0_0_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_javassist_javassist_3_18_1_GA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_jboss_jandex_1_1_0_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_jboss_logging_jboss_logging_3_1_3_GA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_jboss_logging_jboss_logging_annotations_1_2_0_Beta1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_7_10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_data_spring_data_commons_1_10_0_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_data_spring_data_jpa_1_8_0_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_aop_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_beans_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_context_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_core_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_expression_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_jdbc_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_orm_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__org_springframework_spring_tx_4_0_9_RELEASE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/libraries/Maven__xml_apis_xml_apis_1_0_b2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringData/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SpringData/src/main/java/com/hhu/App.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | /** 4 | * Hello world! 5 | * 6 | */ 7 | public class App 8 | { 9 | public static void main( String[] args ) 10 | { 11 | System.out.println( "Hello World! 阿三" ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SpringData/src/main/java/com/hhu/repository/EmployeeCrudRepository.java: -------------------------------------------------------------------------------- 1 | package com.hhu.repository; 2 | 3 | import com.hhu.dao.Employee; 4 | import org.springframework.data.repository.CrudRepository; 5 | 6 | /** 7 | * 继承CrudRepository接口,该接口又继承了顶级接口Repository 8 | */ 9 | public interface EmployeeCrudRepository extends CrudRepository{ 10 | } 11 | -------------------------------------------------------------------------------- /SpringData/src/main/java/com/hhu/repository/EmployeeJpaRepository.java: -------------------------------------------------------------------------------- 1 | package com.hhu.repository; 2 | 3 | import com.hhu.dao.Employee; 4 | import org.springframework.data.jpa.repository.JpaRepository; 5 | 6 | /** 7 | * 测试JpsRepository接口 8 | */ 9 | public interface EmployeeJpaRepository extends JpaRepository{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /SpringData/src/main/java/com/hhu/repository/EmployeeJpaSpecificationExecutor.java: -------------------------------------------------------------------------------- 1 | package com.hhu.repository; 2 | 3 | import com.hhu.dao.Employee; 4 | import org.springframework.data.jpa.repository.JpaRepository; 5 | import org.springframework.data.jpa.repository.JpaSpecificationExecutor; 6 | 7 | public interface EmployeeJpaSpecificationExecutor extends JpaRepository, JpaSpecificationExecutor { 8 | } 9 | -------------------------------------------------------------------------------- /SpringData/src/main/java/com/hhu/repository/EmployeePagingAndSortingRepository.java: -------------------------------------------------------------------------------- 1 | package com.hhu.repository; 2 | 3 | import com.hhu.dao.Employee; 4 | import org.springframework.data.repository.PagingAndSortingRepository; 5 | 6 | /** 7 | * 继承分页查询的接口PagingAndSortingRepository 8 | */ 9 | public interface EmployeePagingAndSortingRepository extends PagingAndSortingRepository{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /SpringData/src/main/resources/jdbc.properties: -------------------------------------------------------------------------------- 1 | jdbc.userName=root 2 | jdbc.password=921228jack 3 | jdbc.driverClass=com.mysql.jdbc.Driver 4 | jdbc.url=jdbc:mysql://localhost:3306/spring_date 5 | -------------------------------------------------------------------------------- /SpringData/src/test/java/com/hhu/AppTest.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | import junit.framework.Test; 4 | import junit.framework.TestCase; 5 | import junit.framework.TestSuite; 6 | 7 | /** 8 | * Unit test for simple App. 9 | */ 10 | public class AppTest 11 | extends TestCase 12 | { 13 | /** 14 | * Create the test case 15 | * 16 | * @param testName name of the test case 17 | */ 18 | public AppTest( String testName ) 19 | { 20 | super( testName ); 21 | } 22 | 23 | /** 24 | * @return the suite of tests being tested 25 | */ 26 | public static Test suite() 27 | { 28 | return new TestSuite( AppTest.class ); 29 | } 30 | 31 | /** 32 | * Rigourous Test :-) 33 | */ 34 | public void testApp() 35 | { 36 | assertTrue( true ); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/App.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/dao/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/dao/Employee.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/dao/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/dao/Student.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/jdbc/StudentDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/jdbc/StudentDao.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/repository/EmployeeCrudRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/repository/EmployeeCrudRepository.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/repository/EmployeeJpaRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/repository/EmployeeJpaRepository.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/repository/EmployeeJpaSpecificationExecutor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/repository/EmployeeJpaSpecificationExecutor.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/repository/EmployeePagingAndSortingRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/repository/EmployeePagingAndSortingRepository.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/repository/EmployeeRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/repository/EmployeeRepository.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/service/EmployeeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/service/EmployeeService.class -------------------------------------------------------------------------------- /SpringData/target/classes/com/hhu/util/JDBCUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/classes/com/hhu/util/JDBCUtil.class -------------------------------------------------------------------------------- /SpringData/target/classes/jdbc.properties: -------------------------------------------------------------------------------- 1 | jdbc.userName=root 2 | jdbc.password=921228jack 3 | jdbc.driverClass=com.mysql.jdbc.Driver 4 | jdbc.url=jdbc:mysql://localhost:3306/spring_date 5 | -------------------------------------------------------------------------------- /SpringData/target/test-classes/com/hhu/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/test-classes/com/hhu/AppTest.class -------------------------------------------------------------------------------- /SpringData/target/test-classes/com/hhu/SpringDataTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/test-classes/com/hhu/SpringDataTest.class -------------------------------------------------------------------------------- /SpringData/target/test-classes/com/hhu/jdbc/JdbcTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/test-classes/com/hhu/jdbc/JdbcTest.class -------------------------------------------------------------------------------- /SpringData/target/test-classes/com/hhu/repository/EmployeeRepositoryTest$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/test-classes/com/hhu/repository/EmployeeRepositoryTest$1.class -------------------------------------------------------------------------------- /SpringData/target/test-classes/com/hhu/repository/EmployeeRepositoryTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/test-classes/com/hhu/repository/EmployeeRepositoryTest.class -------------------------------------------------------------------------------- /SpringData/target/test-classes/com/hhu/service/EmployeeServiceTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/SpringData/target/test-classes/com/hhu/service/EmployeeServiceTest.class -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /StudentMannagerSystem/.settings/org.jboss.ide.eclipse.as.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.jboss.ide.eclipse.as.core.singledeployable.deployableList= 3 | -------------------------------------------------------------------------------- /StudentMannagerSystem/.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "guess-types": { 4 | 5 | }, 6 | "outline": { 7 | 8 | }, 9 | "angular": { 10 | 11 | } 12 | }, 13 | "libs": [ 14 | "ecma5", 15 | "browser" 16 | ] 17 | } -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/commons-beanutils-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/commons-beanutils-1.8.0.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/commons-lang-2.5.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/json-lib-2.4-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/json-lib-2.4-jdk15.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | StudentMannagerSystem 4 | 5 | login.jsp 6 | 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/images/login.jpg -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/images/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/images/main.jpg -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/accordion/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/login1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/login1.jpg -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/modem.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/more.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/pda.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/scanner.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/images/tablet.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo-mobile/panel/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/accordion/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/calendar/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Calendar - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Calendar

14 |

Click to select date.

15 |
16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/combobox/combobox_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"Java", 4 | "desc":"Write once, run anywhere" 5 | },{ 6 | "id":2, 7 | "text":"C#", 8 | "desc":"One of the programming languages designed for the Common Language Infrastructure" 9 | },{ 10 | "id":3, 11 | "text":"Ruby", 12 | "selected":true, 13 | "desc":"A dynamic, reflective, general-purpose object-oriented programming language" 14 | },{ 15 | "id":4, 16 | "text":"Perl", 17 | "desc":"A high-level, general-purpose, interpreted, dynamic programming language" 18 | },{ 19 | "id":5, 20 | "text":"Basic", 21 | "desc":"A family of general-purpose, high-level programming languages" 22 | }] -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/datagrid/products.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"productid":"FI-SW-01","productname":"Koi"}, 3 | {"productid":"K9-DL-01","productname":"Dalmation"}, 4 | {"productid":"RP-SN-01","productname":"Rattlesnake"}, 5 | {"productid":"RP-LI-02","productname":"Iguana"}, 6 | {"productid":"FL-DSH-01","productname":"Manx"}, 7 | {"productid":"FL-DLH-02","productname":"Persian"}, 8 | {"productid":"AV-CB-01","productname":"Amazon Parrot"} 9 | ] 10 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/demo.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family:verdana,helvetica,arial,sans-serif; 3 | padding:20px; 4 | font-size:12px; 5 | margin:0; 6 | } 7 | h2 { 8 | font-size:18px; 9 | font-weight:bold; 10 | margin:0; 11 | margin-bottom:15px; 12 | } 13 | .demo-info{ 14 | padding:0 0 12px 0; 15 | } 16 | .demo-tip{ 17 | display:none; 18 | } 19 | .label-top{ 20 | display: block; 21 | height: 22px; 22 | line-height: 22px; 23 | vertical-align: middle; 24 | } -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/form/form_data1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"easyui", 3 | "email":"easyui@gmail.com", 4 | "subject":"Subject Title", 5 | "message":"Message Content", 6 | "language":"de" 7 | } -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/panel/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/slider/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Slider - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Slider

14 |

Drag the slider to change value.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/modem.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/pda.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/scanner.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tabs/images/tablet.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tagbox/tagbox_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":"1", 3 | "text":"Java", 4 | "desc":"Write once, run anywhere" 5 | },{ 6 | "id":"2", 7 | "text":"C#", 8 | "desc":"One of the programming languages designed for the Common Language Infrastructure" 9 | },{ 10 | "id":"3", 11 | "text":"Ruby", 12 | "desc":"A dynamic, reflective, general-purpose object-oriented programming language" 13 | },{ 14 | "id":"4", 15 | "text":"Perl", 16 | "desc":"A high-level, general-purpose, interpreted, dynamic programming language" 17 | },{ 18 | "id":"5", 19 | "text":"Basic", 20 | "desc":"A family of general-purpose, high-level programming languages" 21 | }] -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tooltip/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/demo/tooltip/_dialog.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Dialog Content 6 | 7 | 8 |
9 |
10 |
User Name:
11 | 12 |
13 |
14 |
Password:
15 | 16 |
17 |
18 | Login 19 | Cancel 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/readme.txt: -------------------------------------------------------------------------------- 1 | Current Version: 1.5.1 2 | ====================== 3 | This software is allowed to use under freeware license or you need to buy commercial license for better support or other purpose. 4 | Please contact us at info@jeasyui.com 5 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/combo.css: -------------------------------------------------------------------------------- 1 | .combo-arrow { 2 | width: 18px; 3 | height: 20px; 4 | overflow: hidden; 5 | display: inline-block; 6 | vertical-align: top; 7 | cursor: pointer; 8 | opacity: 0.6; 9 | filter: alpha(opacity=60); 10 | } 11 | .combo-arrow-hover { 12 | opacity: 1.0; 13 | filter: alpha(opacity=100); 14 | } 15 | .combo-panel { 16 | overflow: auto; 17 | } 18 | .combo-arrow { 19 | background: url('images/combo_arrow.png') no-repeat center center; 20 | } 21 | .combo-panel { 22 | background-color: #666; 23 | } 24 | .combo-arrow { 25 | background-color: #3d3d3d; 26 | } 27 | .combo-arrow-hover { 28 | background-color: #777; 29 | } 30 | .combo-arrow:hover { 31 | background-color: #777; 32 | } 33 | .combo .textbox-icon-disabled:hover { 34 | cursor: default; 35 | } 36 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | padding: 0 5px; 6 | text-align: center; 7 | } 8 | .datebox-button a { 9 | line-height: 22px; 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #555; 33 | } 34 | .datebox-button a { 35 | color: #fff; 36 | } 37 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | .filebox-label { 8 | display: inline-block; 9 | position: absolute; 10 | width: 100%; 11 | height: 100%; 12 | cursor: pointer; 13 | left: 0; 14 | top: 0; 15 | z-index: 10; 16 | background: url('images/blank.gif') no-repeat; 17 | } 18 | .l-btn-disabled .filebox-label { 19 | cursor: default; 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/accordion_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/calendar_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/combo_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/datagrid_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/datebox_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/layout_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/linkbutton_bg.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/loading.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/menu_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/messager_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/pagination_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/panel_tools.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/passwordbox_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/passwordbox_close.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/passwordbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/passwordbox_open.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/searchbox_button.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/slider_handle.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/spinner_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/tabs_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/tagbox_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/tagbox_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/tree_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/images/validatebox_warning.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/numberbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/numberbox.css -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/passwordbox.css: -------------------------------------------------------------------------------- 1 | .passwordbox-open { 2 | background: url('images/passwordbox_open.png') no-repeat center center; 3 | } 4 | .passwordbox-close { 5 | background: url('images/passwordbox_close.png') no-repeat center center; 6 | } 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #cccccc; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/black/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/combo.css: -------------------------------------------------------------------------------- 1 | .combo-arrow { 2 | width: 18px; 3 | height: 20px; 4 | overflow: hidden; 5 | display: inline-block; 6 | vertical-align: top; 7 | cursor: pointer; 8 | opacity: 0.6; 9 | filter: alpha(opacity=60); 10 | } 11 | .combo-arrow-hover { 12 | opacity: 1.0; 13 | filter: alpha(opacity=100); 14 | } 15 | .combo-panel { 16 | overflow: auto; 17 | } 18 | .combo-arrow { 19 | background: url('images/combo_arrow.png') no-repeat center center; 20 | } 21 | .combo-panel { 22 | background-color: #ffffff; 23 | } 24 | .combo-arrow { 25 | background-color: #F2F2F2; 26 | } 27 | .combo-arrow-hover { 28 | background-color: #e6e6e6; 29 | } 30 | .combo-arrow:hover { 31 | background-color: #e6e6e6; 32 | } 33 | .combo .textbox-icon-disabled:hover { 34 | cursor: default; 35 | } 36 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | .filebox-label { 8 | display: inline-block; 9 | position: absolute; 10 | width: 100%; 11 | height: 100%; 12 | cursor: pointer; 13 | left: 0; 14 | top: 0; 15 | z-index: 10; 16 | background: url('images/blank.gif') no-repeat; 17 | } 18 | .l-btn-disabled .filebox-label { 19 | cursor: default; 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/accordion_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/calendar_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/combo_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/datagrid_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/datebox_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/layout_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/linkbutton_bg.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/loading.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/menu_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/messager_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/pagination_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/panel_tools.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/passwordbox_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/passwordbox_close.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/passwordbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/passwordbox_open.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/searchbox_button.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/slider_handle.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/spinner_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/tabs_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/tagbox_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/tagbox_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/tree_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/images/validatebox_warning.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/numberbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/numberbox.css -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/passwordbox.css: -------------------------------------------------------------------------------- 1 | .passwordbox-open { 2 | background: url('images/passwordbox_open.png') no-repeat center center; 3 | } 4 | .passwordbox-close { 5 | background: url('images/passwordbox_close.png') no-repeat center center; 6 | } 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #bbb; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/bootstrap/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/combo.css: -------------------------------------------------------------------------------- 1 | .combo-arrow { 2 | width: 18px; 3 | height: 20px; 4 | overflow: hidden; 5 | display: inline-block; 6 | vertical-align: top; 7 | cursor: pointer; 8 | opacity: 0.6; 9 | filter: alpha(opacity=60); 10 | } 11 | .combo-arrow-hover { 12 | opacity: 1.0; 13 | filter: alpha(opacity=100); 14 | } 15 | .combo-panel { 16 | overflow: auto; 17 | } 18 | .combo-arrow { 19 | background: url('images/combo_arrow.png') no-repeat center center; 20 | } 21 | .combo-panel { 22 | background-color: #ffffff; 23 | } 24 | .combo-arrow { 25 | background-color: #E0ECFF; 26 | } 27 | .combo-arrow-hover { 28 | background-color: #eaf2ff; 29 | } 30 | .combo-arrow:hover { 31 | background-color: #eaf2ff; 32 | } 33 | .combo .textbox-icon-disabled:hover { 34 | cursor: default; 35 | } 36 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | .filebox-label { 8 | display: inline-block; 9 | position: absolute; 10 | width: 100%; 11 | height: 100%; 12 | cursor: pointer; 13 | left: 0; 14 | top: 0; 15 | z-index: 10; 16 | background: url('images/blank.gif') no-repeat; 17 | } 18 | .l-btn-disabled .filebox-label { 19 | cursor: default; 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/accordion_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/calendar_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/combo_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/datagrid_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/datebox_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/layout_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/linkbutton_bg.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/loading.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/menu_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/messager_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/pagination_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/panel_tools.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/passwordbox_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/passwordbox_close.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/passwordbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/passwordbox_open.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/searchbox_button.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/slider_handle.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/spinner_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/tabs_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/tagbox_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/tagbox_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/tree_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/images/validatebox_warning.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/numberbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/numberbox.css -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/passwordbox.css: -------------------------------------------------------------------------------- 1 | .passwordbox-open { 2 | background: url('images/passwordbox_open.png') no-repeat center center; 3 | } 4 | .passwordbox-close { 5 | background: url('images/passwordbox_close.png') no-repeat center center; 6 | } 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #aac5e7; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/default/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/combo.css: -------------------------------------------------------------------------------- 1 | .combo-arrow { 2 | width: 18px; 3 | height: 20px; 4 | overflow: hidden; 5 | display: inline-block; 6 | vertical-align: top; 7 | cursor: pointer; 8 | opacity: 0.6; 9 | filter: alpha(opacity=60); 10 | } 11 | .combo-arrow-hover { 12 | opacity: 1.0; 13 | filter: alpha(opacity=100); 14 | } 15 | .combo-panel { 16 | overflow: auto; 17 | } 18 | .combo-arrow { 19 | background: url('images/combo_arrow.png') no-repeat center center; 20 | } 21 | .combo-panel { 22 | background-color: #ffffff; 23 | } 24 | .combo-arrow { 25 | background-color: #f3f3f3; 26 | } 27 | .combo-arrow-hover { 28 | background-color: #e2e2e2; 29 | } 30 | .combo-arrow:hover { 31 | background-color: #e2e2e2; 32 | } 33 | .combo .textbox-icon-disabled:hover { 34 | cursor: default; 35 | } 36 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | .filebox-label { 8 | display: inline-block; 9 | position: absolute; 10 | width: 100%; 11 | height: 100%; 12 | cursor: pointer; 13 | left: 0; 14 | top: 0; 15 | z-index: 10; 16 | background: url('images/blank.gif') no-repeat; 17 | } 18 | .l-btn-disabled .filebox-label { 19 | cursor: default; 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/accordion_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/calendar_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/combo_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/datagrid_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/datebox_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/layout_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/linkbutton_bg.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/loading.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/menu_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/messager_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/pagination_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/panel_tools.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/passwordbox_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/passwordbox_close.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/passwordbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/passwordbox_open.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/searchbox_button.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/slider_handle.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/spinner_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/tabs_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/tagbox_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/tagbox_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/tree_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/images/validatebox_warning.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/numberbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/numberbox.css -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/passwordbox.css: -------------------------------------------------------------------------------- 1 | .passwordbox-open { 2 | background: url('images/passwordbox_open.png') no-repeat center center; 3 | } 4 | .passwordbox-close { 5 | background: url('images/passwordbox_close.png') no-repeat center center; 6 | } 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #bfbfbf; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/gray/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/back.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/cancel.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/clear.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/cut.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/edit_add.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/edit_remove.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/filesave.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/filter.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/help.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_chart.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_clipart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_clipart.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_picture.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_shapes.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_smartart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/large_smartart.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/lock.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/man.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/mini_add.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/mini_edit.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/mini_refresh.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/more.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/no.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/ok.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/pencil.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/print.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/redo.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/reload.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/search.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/sum.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/tip.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/icons/undo.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/combo.css: -------------------------------------------------------------------------------- 1 | .combo-arrow { 2 | width: 18px; 3 | height: 20px; 4 | overflow: hidden; 5 | display: inline-block; 6 | vertical-align: top; 7 | cursor: pointer; 8 | opacity: 0.6; 9 | filter: alpha(opacity=60); 10 | } 11 | .combo-arrow-hover { 12 | opacity: 1.0; 13 | filter: alpha(opacity=100); 14 | } 15 | .combo-panel { 16 | overflow: auto; 17 | } 18 | .combo-arrow { 19 | background: url('images/combo_arrow.png') no-repeat center center; 20 | } 21 | .combo-panel { 22 | background-color: #ffffff; 23 | } 24 | .combo-arrow { 25 | background-color: #f5f5f5; 26 | } 27 | .combo-arrow-hover { 28 | background-color: #eee; 29 | } 30 | .combo-arrow:hover { 31 | background-color: #eee; 32 | } 33 | .combo .textbox-icon-disabled:hover { 34 | cursor: default; 35 | } 36 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | .filebox-label { 8 | display: inline-block; 9 | position: absolute; 10 | width: 100%; 11 | height: 100%; 12 | cursor: pointer; 13 | left: 0; 14 | top: 0; 15 | z-index: 10; 16 | background: url('images/blank.gif') no-repeat; 17 | } 18 | .l-btn-disabled .filebox-label { 19 | cursor: default; 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/Thumbs.db -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/accordion_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/calendar_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/combo_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/datagrid_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/datebox_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/layout_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/linkbutton_bg.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/loading.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/menu_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/messager_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/pagination_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/panel_tools.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/passwordbox_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/passwordbox_close.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/passwordbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/passwordbox_open.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/searchbox_button.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/slider_handle.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/spinner_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/tabs_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/tagbox_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/tagbox_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/tree_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/images/validatebox_warning.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/numberbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/numberbox.css -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/passwordbox.css: -------------------------------------------------------------------------------- 1 | .passwordbox-open { 2 | background: url('images/passwordbox_open.png') no-repeat center center; 3 | } 4 | .passwordbox-close { 5 | background: url('images/passwordbox_close.png') no-repeat center center; 6 | } 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #ccc; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/material/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff; 4 | color: #404040; 5 | } 6 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/combo.css: -------------------------------------------------------------------------------- 1 | .combo-arrow { 2 | width: 18px; 3 | height: 20px; 4 | overflow: hidden; 5 | display: inline-block; 6 | vertical-align: top; 7 | cursor: pointer; 8 | opacity: 0.6; 9 | filter: alpha(opacity=60); 10 | } 11 | .combo-arrow-hover { 12 | opacity: 1.0; 13 | filter: alpha(opacity=100); 14 | } 15 | .combo-panel { 16 | overflow: auto; 17 | } 18 | .combo-arrow { 19 | background: url('images/combo_arrow.png') no-repeat center center; 20 | } 21 | .combo-panel { 22 | background-color: #fff; 23 | } 24 | .combo-arrow { 25 | background-color: #ffffff; 26 | } 27 | .combo-arrow-hover { 28 | background-color: #E6E6E6; 29 | } 30 | .combo-arrow:hover { 31 | background-color: #E6E6E6; 32 | } 33 | .combo .textbox-icon-disabled:hover { 34 | cursor: default; 35 | } 36 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | .filebox-label { 8 | display: inline-block; 9 | position: absolute; 10 | width: 100%; 11 | height: 100%; 12 | cursor: pointer; 13 | left: 0; 14 | top: 0; 15 | z-index: 10; 16 | background: url('images/blank.gif') no-repeat; 17 | } 18 | .l-btn-disabled .filebox-label { 19 | cursor: default; 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/accordion_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/blank.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/calendar_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/combo_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/datagrid_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/datebox_arrow.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/layout_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/linkbutton_bg.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/loading.gif -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/menu_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/messager_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/pagination_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/panel_tools.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/passwordbox_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/passwordbox_close.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/passwordbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/passwordbox_open.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/searchbox_button.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/slider_handle.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/spinner_arrows.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/tabs_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/tagbox_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/tagbox_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/tree_icons.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/images/validatebox_warning.png -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/numberbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/numberbox.css -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/passwordbox.css: -------------------------------------------------------------------------------- 1 | .passwordbox-open { 2 | background: url('images/passwordbox_open.png') no-repeat center center; 3 | } 4 | .passwordbox-close { 5 | background: url('images/passwordbox_close.png') no-repeat center center; 6 | } 7 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #b3b3b3; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /StudentMannagerSystem/WebContent/js/jquery-easyui-1.5.1/themes/metro/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/dao/GradeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/dao/GradeDao.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/dao/StudentDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/dao/StudentDao.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/dao/UserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/dao/UserDao.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/model/Grade.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/model/Grade.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/model/PageBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/model/PageBean.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/model/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/model/Student.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/model/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/model/User.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/util/DateToStringUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/util/DateToStringUtil.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/util/DbUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/util/DbUtil.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/util/JsonUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/util/JsonUtil.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/util/ResponseUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/util/ResponseUtil.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/util/StringUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/util/StringUtil.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/util/TestDate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/util/TestDate.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/GradeComboListServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/GradeComboListServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/GradeDeleteServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/GradeDeleteServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/GradeListServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/GradeListServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/GradeSaveServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/GradeSaveServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/LoginServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/LoginServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/StudentDeleteServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/StudentDeleteServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/StudentListServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/StudentListServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/build/classes/com/java1234/web/StudentSaveServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/build/classes/com/java1234/web/StudentSaveServlet.class -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/dao/GradeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/dao/GradeDao.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/dao/StudentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/dao/StudentDao.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/dao/UserDao.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/model/Grade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/model/Grade.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/model/PageBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/model/PageBean.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/model/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/model/Student.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/model/User.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/util/ResponseUtil.java: -------------------------------------------------------------------------------- 1 | package com.java1234.util; 2 | 3 | import java.io.PrintWriter; 4 | 5 | import javax.servlet.http.HttpServletResponse; 6 | 7 | public class ResponseUtil { 8 | 9 | public static void write(HttpServletResponse response, Object o) throws Exception{ 10 | response.setContentType("text/html;charset=utf-8"); 11 | PrintWriter out = response.getWriter(); 12 | out.println(o.toString()); 13 | out.flush(); 14 | out.close(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/util/StringUtil.java: -------------------------------------------------------------------------------- 1 | package com.java1234.util; 2 | 3 | public class StringUtil { 4 | 5 | public static boolean isEmpty(String str){ 6 | if("".equals(str)||str==null){ 7 | return true; 8 | }else{ 9 | return false; 10 | } 11 | } 12 | 13 | public static boolean isNotEmpty(String str){ 14 | if(!"".equals(str)&&str!=null){ 15 | return true; 16 | }else{ 17 | return false; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/util/TestDate.java: -------------------------------------------------------------------------------- 1 | package com.java1234.util; 2 | 3 | import java.text.ParseException; 4 | import java.text.SimpleDateFormat; 5 | import java.util.Date; 6 | 7 | public class TestDate { 8 | 9 | public static void main(String[] args) throws ParseException { 10 | String format = "yyyy-MM-dd"; 11 | SimpleDateFormat sdf = new SimpleDateFormat(format); 12 | Date re = sdf.parse("2017-11-16"); 13 | System.out.println(re); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/web/GradeListServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/web/GradeListServlet.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/web/GradeSaveServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/web/GradeSaveServlet.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/web/StudentDeleteServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/web/StudentDeleteServlet.java -------------------------------------------------------------------------------- /StudentMannagerSystem/src/com/java1234/web/StudentListServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/StudentMannagerSystem/src/com/java1234/web/StudentListServlet.java -------------------------------------------------------------------------------- /classloader/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /classloader/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | classloader 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/BaseManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/BaseManager.class -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/ClassLoaderTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/ClassLoaderTest.class -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/LoadInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/LoadInfo.class -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/MannagerFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/MannagerFactory.class -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/MsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/MsgHandler.class -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/MyClassloader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/MyClassloader.class -------------------------------------------------------------------------------- /classloader/bin/com/hhu/classloader/MyMannager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/classloader/bin/com/hhu/classloader/MyMannager.class -------------------------------------------------------------------------------- /classloader/src/com/hhu/classloader/BaseManager.java: -------------------------------------------------------------------------------- 1 | package com.hhu.classloader; 2 | 3 | /** 4 | * 实现这个接口的子类需要动态更新 5 | * 6 | * 即实现该接口的子类可以实现热加载的功能 7 | * 8 | * @author Weiguo Liu 9 | * @data 2017年11月29日 10 | */ 11 | public interface BaseManager { 12 | 13 | public void logic(); 14 | 15 | } 16 | -------------------------------------------------------------------------------- /classloader/src/com/hhu/classloader/ClassLoaderTest.java: -------------------------------------------------------------------------------- 1 | package com.hhu.classloader; 2 | 3 | /** 4 | * 测试类 5 | * @author Weiguo Liu 6 | * @data 2017年11月29日 7 | */ 8 | public class ClassLoaderTest { 9 | 10 | public static void main(String[] args) { 11 | // TODO Auto-generated method stub 12 | MsgHandler mh = new MsgHandler(); 13 | Thread t = new Thread(mh); 14 | t.start(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /classloader/src/com/hhu/classloader/MsgHandler.java: -------------------------------------------------------------------------------- 1 | package com.hhu.classloader; 2 | 3 | /** 4 | * 实现热加载的扫描线程类 5 | * 6 | * 后台会不断的刷新实现BaseMannager接口的类 7 | * 8 | * @author Weiguo Liu 9 | * @data 2017年11月29日 10 | */ 11 | public class MsgHandler implements Runnable { 12 | 13 | @Override 14 | public void run() { 15 | while (true) { 16 | BaseManager manager = MannagerFactory.getManager(MannagerFactory.MY_MANAGER); 17 | manager.logic(); 18 | try { 19 | Thread.sleep(1000); 20 | } catch (InterruptedException e) { 21 | // TODO Auto-generated catch block 22 | e.printStackTrace(); 23 | } 24 | 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /classloader/src/com/hhu/classloader/MyMannager.java: -------------------------------------------------------------------------------- 1 | package com.hhu.classloader; 2 | 3 | /** 4 | * 该类已经实现了BaseManager这个接口 5 | * 所以这个类具备热加载的功能 6 | * 7 | * 这里需要将将Eclipse中自动编译的功能开启 8 | * 9 | * @author Weiguo Liu 10 | * @data 2017年11月29日 11 | */ 12 | public class MyMannager implements BaseManager { 13 | 14 | @Override 15 | public void logic() { 16 | System.out.println("这个类具备了热加载的特2"); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /datalog/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | 12 | ### IntelliJ IDEA ### 13 | .idea 14 | *.iws 15 | *.iml 16 | *.ipr 17 | 18 | ### NetBeans ### 19 | nbproject/private/ 20 | build/ 21 | nbbuild/ 22 | dist/ 23 | nbdist/ 24 | .nb-gradle/ -------------------------------------------------------------------------------- /datalog/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/datalog/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /datalog/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.2/apache-maven-3.5.2-bin.zip 2 | -------------------------------------------------------------------------------- /datalog/src/main/java/com/hhu/DatalogApplication.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class DatalogApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(DatalogApplication.class, args); 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /datalog/src/main/java/com/hhu/TestLong.java: -------------------------------------------------------------------------------- 1 | package com.hhu; 2 | 3 | public class TestLong { 4 | 5 | public static void main(String[] args) { 6 | 7 | String obj = null; 8 | 9 | long a = Long.valueOf((String)null); 10 | 11 | System.out.println(a); 12 | 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /datalog/src/main/java/com/hhu/dao/ProductDao.java: -------------------------------------------------------------------------------- 1 | package com.hhu.dao; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.hhu.domain.Product; 6 | 7 | public interface ProductDao extends JpaRepository{ 8 | public Product findById(Long id); 9 | } 10 | -------------------------------------------------------------------------------- /datalog/src/main/java/com/hhu/datalog/ActionDao.java: -------------------------------------------------------------------------------- 1 | package com.hhu.datalog; 2 | 3 | import org.springframework.data.mongodb.repository.MongoRepository; 4 | 5 | import com.hhu.domain.Action; 6 | 7 | /** 8 | * 将Action存到MongoDB中 9 | * @author Weiguo Liu 10 | * 11 | */ 12 | public interface ActionDao extends MongoRepository { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /datalog/src/main/java/com/hhu/datalog/Datalog.java: -------------------------------------------------------------------------------- 1 | package com.hhu.datalog; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | 9 | //Datalog的注解 10 | @Target({ElementType.FIELD, ElementType.METHOD, ElementType.TYPE}) 11 | @Retention(RetentionPolicy.RUNTIME) 12 | public @interface Datalog { 13 | 14 | //中文字段名 15 | String name(); 16 | } 17 | -------------------------------------------------------------------------------- /datalog/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | jpa: 3 | hibernate: 4 | ddl-auto: update 5 | properties: 6 | hibernate: 7 | enable_lazy_load_no_trans: false 8 | datasource: 9 | username: root 10 | password: root 11 | url: jdbc:mysql://localhost:3306/springaop 12 | driver-class-name: com.mysql.jdbc.Driver 13 | data: 14 | mongodb: 15 | host: 127.0.0.1 16 | port: 27017 17 | database: test 18 | repositories: 19 | enabled: true 20 | 21 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /itcast-springboot/.settings/org.hibernate.eclipse.console.prefs: -------------------------------------------------------------------------------- 1 | default.configuration=itcast-springboot 2 | eclipse.preferences.version=1 3 | hibernate3.enabled=true 4 | -------------------------------------------------------------------------------- /itcast-springboot/src/main/java/cn/itcast/springboot/javaconfig/User.java: -------------------------------------------------------------------------------- 1 | package cn.itcast.springboot.javaconfig; 2 | 3 | public class User { 4 | 5 | private String username; 6 | 7 | private String password; 8 | 9 | private Integer age; 10 | 11 | public String getUsername() { 12 | return username; 13 | } 14 | 15 | public void setUsername(String username) { 16 | this.username = username; 17 | } 18 | 19 | public String getPassword() { 20 | return password; 21 | } 22 | 23 | public void setPassword(String password) { 24 | this.password = password; 25 | } 26 | 27 | public Integer getAge() { 28 | return age; 29 | } 30 | 31 | public void setAge(Integer age) { 32 | this.age = age; 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /itcast-springboot/src/main/java/cn/itcast/springboot/javaconfig/UserDAO.java: -------------------------------------------------------------------------------- 1 | package cn.itcast.springboot.javaconfig; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | public class UserDAO { 7 | 8 | public List queryUserList() { 9 | List result = new ArrayList(); 10 | // 模拟数据库的查询 11 | for (int i = 0; i < 10; i++) { 12 | User user = new User(); 13 | user.setUsername("username_" + i); 14 | user.setPassword("password_" + i); 15 | user.setAge(i + 1); 16 | result.add(user); 17 | } 18 | return result; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /itcast-springboot/src/main/java/cn/itcast/springboot/javaconfig/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.itcast.springboot.javaconfig; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Service; 7 | 8 | @Service 9 | public class UserService { 10 | 11 | @Autowired 12 | // 注入Spring容器中的bean对象 13 | private UserDAO userDAO; 14 | 15 | public List queryUserList() { 16 | // 调用userDAO中的方法进行查询 17 | return this.userDAO.queryUserList(); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /itcast-springboot/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Archetype Created Web Application 7 | 8 | -------------------------------------------------------------------------------- /itcast-springboot/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Hello World!

4 | 5 | 6 | -------------------------------------------------------------------------------- /itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/Main.class -------------------------------------------------------------------------------- /itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/SpringConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/SpringConfig.class -------------------------------------------------------------------------------- /itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/User.class -------------------------------------------------------------------------------- /itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/UserDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/UserDAO.class -------------------------------------------------------------------------------- /itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/itcast-springboot/target/classes/cn/itcast/springboot/javaconfig/UserService.class -------------------------------------------------------------------------------- /itcast-springboot/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: itcast-springboot Maven Webapp 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: Weiguo Liu 5 | Implementation-Vendor-Id: com.hhu.springboot 6 | Build-Jdk: 1.8.0_101 7 | Implementation-URL: http://maven.apache.org 8 | Created-By: Maven Integration for Eclipse 9 | Implementation-Vendor: Pivotal Software, Inc. 10 | 11 | -------------------------------------------------------------------------------- /itcast-springboot/target/m2e-wtp/web-resources/META-INF/maven/com.hhu.springboot/itcast-springboot/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Nov 27 09:13:24 CST 2017 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.hhu.springboot 5 | m2e.projectName=itcast-springboot 6 | m2e.projectLocation=D\:\\\u6211\u7684\u6587\u6863\\Eclipse wokspace\\itcast-springboot 7 | artifactId=itcast-springboot 8 | -------------------------------------------------------------------------------- /itcast-springboot/我的文档/Eclipse wokspace/itcast-springboot/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: itcast-springboot Maven Webapp 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: Weiguo Liu 5 | Implementation-Vendor-Id: com.hhu.springboot 6 | Build-Jdk: 1.8.0_101 7 | Implementation-URL: http://maven.apache.org 8 | Created-By: Maven Integration for Eclipse 9 | Implementation-Vendor: Pivotal Software, Inc. 10 | 11 | -------------------------------------------------------------------------------- /itcast-springboot/我的文档/Eclipse wokspace/itcast-springboot/target/m2e-wtp/web-resources/META-INF/maven/com.hhu.springboot/itcast-springboot/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Nov 27 09:25:55 CST 2017 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.hhu.springboot 5 | m2e.projectName=itcast-springboot 6 | m2e.projectLocation=F\:\\MyWork\\GitHub\\LocalGitRepository-Eclipse\\itcast-springboot 7 | artifactId=itcast-springboot 8 | -------------------------------------------------------------------------------- /jedis/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | jedis 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.m2e.core.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.eclipse.m2e.core.maven2Nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /jedis/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /jedis/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /jedis/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /jedis/src/main/java/com/hhu/jedis/jedis/App.java: -------------------------------------------------------------------------------- 1 | package com.hhu.jedis.jedis; 2 | 3 | /** 4 | * Hello world! 5 | * 6 | */ 7 | public class App 8 | { 9 | public static void main( String[] args ) 10 | { 11 | System.out.println( "Hello World!" ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /jedis/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: Weiguo Liu 3 | Build-Jdk: 1.8.0_101 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /jedis/target/classes/META-INF/maven/com.hhu.jedis/jedis/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Fri Nov 24 14:59:56 CST 2017 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.hhu.jedis 5 | m2e.projectName=jedis 6 | m2e.projectLocation=D\:\\\u6211\u7684\u6587\u6863\\Eclipse wokspace\\jedis 7 | artifactId=jedis 8 | -------------------------------------------------------------------------------- /jedis/target/classes/com/hhu/jedis/jedis/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/jedis/target/classes/com/hhu/jedis/jedis/App.class -------------------------------------------------------------------------------- /jedis/target/classes/com/hhu/jedis/jedis/JedisDemo1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/jedis/target/classes/com/hhu/jedis/jedis/JedisDemo1.class -------------------------------------------------------------------------------- /jedis/target/test-classes/com/hhu/jedis/jedis/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/jedis/target/test-classes/com/hhu/jedis/jedis/AppTest.class -------------------------------------------------------------------------------- /spring-framework-reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/spring-framework-reference.pdf -------------------------------------------------------------------------------- /testGitAdd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/testGitAdd.txt -------------------------------------------------------------------------------- /testGitHub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/testGitHub.txt -------------------------------------------------------------------------------- /websocket/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.8 9 | -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /websocket/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /websocket/.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "guess-types": { 4 | 5 | }, 6 | "outline": { 7 | 8 | }, 9 | "angular": { 10 | 11 | } 12 | }, 13 | "libs": [ 14 | "ecma5", 15 | "browser" 16 | ] 17 | } -------------------------------------------------------------------------------- /websocket/src/main/java/com/hhu/websocket/WebController.java: -------------------------------------------------------------------------------- 1 | package com.hhu.websocket; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | import org.springframework.web.bind.annotation.RequestMethod; 6 | 7 | 8 | @Controller 9 | @RequestMapping("/") 10 | public class WebController { 11 | 12 | @RequestMapping(value="/index", method=RequestMethod.GET) 13 | public String getIndex() { 14 | return "index"; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /websocket/target/classes/com/hhu/websocket/HandShakeInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/websocket/target/classes/com/hhu/websocket/HandShakeInterceptor.class -------------------------------------------------------------------------------- /websocket/target/classes/com/hhu/websocket/MyWebSocketHandler$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/websocket/target/classes/com/hhu/websocket/MyWebSocketHandler$1.class -------------------------------------------------------------------------------- /websocket/target/classes/com/hhu/websocket/MyWebSocketHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/websocket/target/classes/com/hhu/websocket/MyWebSocketHandler.class -------------------------------------------------------------------------------- /websocket/target/classes/com/hhu/websocket/WebController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/websocket/target/classes/com/hhu/websocket/WebController.class -------------------------------------------------------------------------------- /websocket/target/classes/com/hhu/websocket/WebSocketConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksonary/CodeRepository/eacc259db11840f010965546218b90a351b1847c/websocket/target/classes/com/hhu/websocket/WebSocketConfig.class -------------------------------------------------------------------------------- /websocket/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: WeiguoLiu 3 | Build-Jdk: 1.8.0_101 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /websocket/target/m2e-wtp/web-resources/META-INF/maven/com.hhu/websocket/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Fri Jan 12 14:26:23 CST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.hhu 5 | m2e.projectName=websocket 6 | m2e.projectLocation=D\:\\\u6211\u7684\u6587\u6863\\Eclipse wokspace\\websocket 7 | artifactId=websocket 8 | -------------------------------------------------------------------------------- /websocket/我的文档/Eclipse wokspace/websocket/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: WeiguoLiu 3 | Build-Jdk: 1.8.0_101 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /websocket/我的文档/Eclipse wokspace/websocket/target/m2e-wtp/web-resources/META-INF/maven/com.hhu/websocket/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Fri Jan 12 15:28:09 CST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.hhu 5 | m2e.projectName=websocket 6 | m2e.projectLocation=F\:\\MyWork\\GitHub\\LocalGitRepository-Eclipse\\websocket 7 | artifactId=websocket 8 | --------------------------------------------------------------------------------