├── .classpath ├── .gitignore ├── .mymetadata ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── .gitignore │ ├── classes │ │ ├── log4j.properties │ │ └── org │ │ │ └── tang │ │ │ └── jpa │ │ │ ├── Test.class │ │ │ ├── config │ │ │ ├── exam │ │ │ │ ├── Exam.xml │ │ │ │ ├── Exampaper.xml │ │ │ │ └── Options.xml │ │ │ ├── mybatis-config.xml │ │ │ └── system │ │ │ │ ├── LoginLog.xml │ │ │ │ ├── OperateLog.xml │ │ │ │ ├── Organization.xml │ │ │ │ ├── Resource.xml │ │ │ │ ├── Role.xml │ │ │ │ └── User.xml │ │ │ ├── controller │ │ │ ├── exam │ │ │ │ ├── ExamController.class │ │ │ │ ├── ExampaperController.class │ │ │ │ └── OptionsController.class │ │ │ └── system │ │ │ │ ├── LoginController.class │ │ │ │ ├── OrganizationController.class │ │ │ │ ├── RegisterController.class │ │ │ │ ├── ResourceController.class │ │ │ │ ├── RoleController.class │ │ │ │ └── UserController.class │ │ │ ├── dao │ │ │ ├── exam │ │ │ │ ├── ExamDao.class │ │ │ │ ├── ExampaperDao.class │ │ │ │ ├── OptionsDao.class │ │ │ │ ├── UserexamDao.class │ │ │ │ └── UserexamdetailsDao.class │ │ │ └── system │ │ │ │ ├── DepartmentDao.class │ │ │ │ ├── LoginLogDao.class │ │ │ │ ├── OperateLogDao.class │ │ │ │ ├── OrganizationDao.class │ │ │ │ ├── ResourceDao.class │ │ │ │ ├── RoleDao.class │ │ │ │ └── UserDao.class │ │ │ ├── dto │ │ │ ├── exam │ │ │ │ ├── ExamPaperDetailsDTO.class │ │ │ │ ├── ExampaperDTO.class │ │ │ │ ├── OptionsDTO.class │ │ │ │ ├── UserexamDTO.class │ │ │ │ └── UserexamdetailsDTO.class │ │ │ └── system │ │ │ │ ├── DepartmentDTO.class │ │ │ │ ├── LoginLogDTO.class │ │ │ │ ├── OperateLogDTO.class │ │ │ │ ├── OrganizationDTO.class │ │ │ │ ├── ResourceDTO.class │ │ │ │ ├── RoleDTO.class │ │ │ │ ├── RoleResourceDTO.class │ │ │ │ ├── TreeDTO.class │ │ │ │ └── UserDTO.class │ │ │ ├── interceptor │ │ │ ├── AllInterceptor.class │ │ │ └── LoginInterceptor.class │ │ │ ├── service │ │ │ ├── exam │ │ │ │ ├── ExamService.class │ │ │ │ ├── ExampaperService.class │ │ │ │ └── OptionsService.class │ │ │ └── system │ │ │ │ ├── OperateLogService.class │ │ │ │ ├── OrganizationService.class │ │ │ │ ├── ResourceService.class │ │ │ │ ├── RoleService.class │ │ │ │ └── UserService.class │ │ │ └── utils │ │ │ ├── DateTool.class │ │ │ ├── Dialect$Type$1.class │ │ │ ├── Dialect$Type$2.class │ │ │ ├── Dialect$Type$3.class │ │ │ ├── Dialect$Type.class │ │ │ ├── Dialect.class │ │ │ ├── JsonTool.class │ │ │ ├── MyConstants.class │ │ │ ├── MySql5Dialect.class │ │ │ ├── MySql5PageHepler.class │ │ │ ├── OracleDialect.class │ │ │ ├── Page.class │ │ │ ├── PageInterceptor$ReflectUtil.class │ │ │ ├── PageInterceptor.class │ │ │ ├── PaginationInterceptor.class │ │ │ ├── PinyinConv.class │ │ │ └── SQLServerDialect.class │ ├── conf │ │ ├── applicationContext-mails.xml │ │ ├── applicationContext-mybatis.xml │ │ ├── applicationContext-pushmsg.xml │ │ ├── spring-config-cache.xml │ │ ├── spring-config-shiro-cas.xml │ │ ├── spring-config.xml │ │ ├── spring-mvc-shiro.xml │ │ ├── spring-mvc.xml │ │ └── spring-servlet.xml │ ├── lib │ │ ├── IKAnalyzer2012FF_u1.jar │ │ ├── activation-1.1.jar │ │ ├── antlr-2.7.7.jar │ │ ├── aopalliance-1.0.jar │ │ ├── asm-3.3.1.jar │ │ ├── aspectjrt.jar │ │ ├── aspectjweaver.jar │ │ ├── cas-client-core-3.2.1.jar │ │ ├── cas-client-integration-tomcat-common-3.2.1.jar │ │ ├── cas-client-integration-tomcat-v6-3.2.1.jar │ │ ├── cas-client-integration-tomcat-v7-3.2.1.jar │ │ ├── cglib-2.2.2.jar │ │ ├── common-annotations.jar │ │ ├── commons-beanutils-1.7.0.jar │ │ ├── commons-chain-1.2.jar │ │ ├── commons-codec-1.3.jar │ │ ├── commons-collections-3.2.jar │ │ ├── commons-fileupload-1.2.jar │ │ ├── commons-io-2.0.1.jar │ │ ├── commons-io-2.4.jar │ │ ├── commons-lang-2.3.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── commons-logging-api-1.1.jar │ │ ├── commons-logging.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── druid-0.2.8.jar │ │ ├── ehcache-2.8.3.jar │ │ ├── ezmorph-1.0.6.jar │ │ ├── gson-2.2.4.jar │ │ ├── hibernate-commons-annotations-4.0.2.Final.jar │ │ ├── hibernate-core-4.2.8.Final.jar │ │ ├── hibernate-entitymanager-4.2.8.Final.jar │ │ ├── hibernate-jpa-2.0-api-1.0.1.Final.jar │ │ ├── httpclient-4.3.3.jar │ │ ├── httpclient-cache-4.3.3.jar │ │ ├── httpcore-4.3.2.jar │ │ ├── httpmime-4.3.3.jar │ │ ├── jackson-annotations-2.3.0.jar │ │ ├── jackson-core-2.3.0.jar │ │ ├── jackson-databind-2.2.3.jar │ │ ├── javassist-3.18.1-GA.jar │ │ ├── jboss-logging-3.1.0.GA.jar │ │ ├── jboss-transaction-api_1.1_spec-1.0.1.Final.jar │ │ ├── joda-time-2.1.jar │ │ ├── json-lib-2.4.jar │ │ ├── junit-4.10.jar │ │ ├── log4j-1.2.17.jar │ │ ├── log4j-api-2.0-beta9.jar │ │ ├── log4j-core-2.0-beta9.jar │ │ ├── lucene-core-4.7.0.jar │ │ ├── lucene-highlighter-4.3.0.jar │ │ ├── lucene-memory-4.3.0.jar │ │ ├── lucene-queries-4.3.0.jar │ │ ├── lucene-queryparser-4.7.0.jar │ │ ├── mail-1.5.0-b01.jar │ │ ├── mmseg4j-analysis-1.9.1.jar │ │ ├── mmseg4j-core-1.9.1.jar │ │ ├── mmseg4j-solr-1.9.1.jar │ │ ├── mybatis-3.2.3.jar │ │ ├── mybatis-spring-1.2.1.jar │ │ ├── ojdbc14.jar │ │ ├── pinyin4j-2.5.0.jar │ │ ├── quartz-all-1.8.6.jar │ │ ├── shiro-aspectj-1.2.3.jar │ │ ├── shiro-cas-1.2.3.jar │ │ ├── shiro-core-1.2.3.jar │ │ ├── shiro-ehcache-1.2.3.jar │ │ ├── shiro-guice-1.2.3.jar │ │ ├── shiro-quartz-1.2.3.jar │ │ ├── shiro-spring-1.1.0.jar │ │ ├── shiro-spring-1.2.3.jar │ │ ├── shiro-tools-hasher-1.2.3-cli.jar │ │ ├── shiro-web-1.2.3.jar │ │ ├── slf4j-api-1.7.5.jar │ │ ├── slf4j-log4j12-1.7.5.jar │ │ ├── spring-aop-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-aop-3.2.4.RELEASE-sources.jar │ │ ├── spring-aop-3.2.4.RELEASE.jar │ │ ├── spring-aspects-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-aspects-3.2.4.RELEASE-sources.jar │ │ ├── spring-aspects-3.2.4.RELEASE.jar │ │ ├── spring-beans-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-beans-3.2.4.RELEASE-sources.jar │ │ ├── spring-beans-3.2.4.RELEASE.jar │ │ ├── spring-build-src-3.2.4.RELEASE.jar │ │ ├── spring-context-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-context-3.2.4.RELEASE-sources.jar │ │ ├── spring-context-3.2.4.RELEASE.jar │ │ ├── spring-context-support-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-context-support-3.2.4.RELEASE-sources.jar │ │ ├── spring-context-support-3.2.4.RELEASE.jar │ │ ├── spring-core-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-core-3.2.4.RELEASE-sources.jar │ │ ├── spring-core-3.2.4.RELEASE.jar │ │ ├── spring-data-commons-1.6.2.RELEASE.jar │ │ ├── spring-data-jpa-1.4.2.RELEASE.jar │ │ ├── spring-expression-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-expression-3.2.4.RELEASE-sources.jar │ │ ├── spring-expression-3.2.4.RELEASE.jar │ │ ├── spring-instrument-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-instrument-3.2.4.RELEASE-sources.jar │ │ ├── spring-instrument-3.2.4.RELEASE.jar │ │ ├── spring-instrument-tomcat-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-instrument-tomcat-3.2.4.RELEASE-sources.jar │ │ ├── spring-instrument-tomcat-3.2.4.RELEASE.jar │ │ ├── spring-jdbc-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-jdbc-3.2.4.RELEASE-sources.jar │ │ ├── spring-jdbc-3.2.4.RELEASE.jar │ │ ├── spring-jms-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-jms-3.2.4.RELEASE-sources.jar │ │ ├── spring-jms-3.2.4.RELEASE.jar │ │ ├── spring-orm-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-orm-3.2.4.RELEASE-sources.jar │ │ ├── spring-orm-3.2.4.RELEASE.jar │ │ ├── spring-oxm-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-oxm-3.2.4.RELEASE-sources.jar │ │ ├── spring-oxm-3.2.4.RELEASE.jar │ │ ├── spring-struts-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-struts-3.2.4.RELEASE-sources.jar │ │ ├── spring-struts-3.2.4.RELEASE.jar │ │ ├── spring-test-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-test-3.2.4.RELEASE-sources.jar │ │ ├── spring-test-3.2.4.RELEASE.jar │ │ ├── spring-tx-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-tx-3.2.4.RELEASE-sources.jar │ │ ├── spring-tx-3.2.4.RELEASE.jar │ │ ├── spring-web-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-web-3.2.4.RELEASE-sources.jar │ │ ├── spring-web-3.2.4.RELEASE.jar │ │ ├── spring-webmvc-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-webmvc-3.2.4.RELEASE-sources.jar │ │ ├── spring-webmvc-3.2.4.RELEASE.jar │ │ ├── spring-webmvc-portlet-3.2.4.RELEASE-javadoc.jar │ │ ├── spring-webmvc-portlet-3.2.4.RELEASE-sources.jar │ │ ├── spring-webmvc-portlet-3.2.4.RELEASE.jar │ │ └── tika-app-1.5.jar │ └── web.xml ├── css-mod │ ├── public │ │ ├── carousel.css │ │ ├── content.css │ │ └── title_content.css │ └── system │ │ ├── index.css │ │ ├── login.css │ │ └── offcanvas.css ├── data │ └── system │ │ └── usertype.json ├── error.html ├── html │ ├── error │ │ ├── 404.html │ │ ├── 405.html │ │ └── 500.html │ ├── exam │ │ ├── exam.html │ │ ├── exampaper.html │ │ └── options.html │ ├── mybusiness │ │ └── myexam.html │ ├── publicInformation │ │ ├── article.html │ │ ├── email.html │ │ ├── index.html │ │ ├── index_part.html │ │ ├── index_part_gov.html │ │ ├── opinion.html │ │ ├── opinion_approve.html │ │ ├── personTalk.html │ │ ├── video.html │ │ ├── webVideoContent.html │ │ ├── web_content.html │ │ └── web_content_gov.html │ └── system │ │ ├── department.html │ │ ├── modules.html │ │ ├── organization.html │ │ ├── role.html │ │ └── user.html ├── index.html ├── index.jsp ├── index1.html ├── js-mod │ ├── exam │ │ ├── exam.js │ │ ├── exampaper.js │ │ └── options.js │ ├── mybusiness │ │ └── myexam.js │ ├── publicInformation │ │ ├── article.js │ │ ├── email.js │ │ ├── index.js │ │ ├── index_gov.js │ │ ├── index_part.js │ │ ├── index_part_gov.js │ │ ├── opinion.js │ │ ├── opinion_approve.js │ │ ├── personTalk.js │ │ ├── video.js │ │ ├── webVideoContent.js │ │ ├── webcontent.js │ │ └── webcontent_gov.js │ └── system │ │ ├── department.js │ │ ├── index.js │ │ ├── login.js │ │ ├── modules.js │ │ ├── notice.js │ │ ├── organization.js │ │ ├── role.js │ │ └── user.js ├── login.html ├── resources │ ├── css │ │ ├── bootstrap-ie6.min.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap.css │ │ ├── bootstrapValidator.css │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ ├── contents.css │ │ ├── countdown_styles.css │ │ ├── default.css │ │ ├── easyui.css │ │ ├── fancySelect.css │ │ ├── font-awesome.css │ │ ├── icon.css │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── cut.png │ │ │ ├── edit_add.png │ │ │ ├── edit_remove.png │ │ │ ├── filesave.png │ │ │ ├── filter.png │ │ │ ├── help.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── mini_refresh.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── redo.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ └── undo.png │ │ ├── ie.css │ │ ├── images │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── layout_arrows.png │ │ │ ├── line_conn.gif │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── validatebox_warning.png │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ ├── index.css │ │ ├── jPlayer.css │ │ ├── jplayer.pink.flag.css │ │ ├── jquery.validator.css │ │ ├── prettify-jPlayer.css │ │ └── zTreeStyle.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── CategorizeMenu.png │ │ ├── arrow.gif │ │ ├── arrow02.gif │ │ ├── banner1.jpg │ │ ├── blocks.gif │ │ ├── content_top.gif │ │ ├── digits.png │ │ ├── directory.png │ │ ├── index_middle_t.gif │ │ ├── layout-browser-hd-bg.gif │ │ ├── middle.jpg │ │ ├── middle_01.gif │ │ ├── middle_02.gif │ │ ├── middle_03.gif │ │ ├── middle_04.gif │ │ ├── nav_link.png │ │ ├── page_bg_center.jpg │ │ ├── public_01.gif │ │ ├── public_index_backimage.jpg │ │ ├── right_1.gif │ │ ├── right_2.gif │ │ ├── right_3.gif │ │ ├── right_4.gif │ │ ├── right_5.gif │ │ ├── tabicons.png │ │ ├── tile_bg.jpg │ │ ├── title_content_top.gif │ │ ├── title_right_bg.gif │ │ ├── tools-sprites-trans.gif │ │ ├── wszy_top.gif │ │ ├── xs.gif │ │ └── xxyd_top.gif │ ├── js │ │ ├── JMEditor.js │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── bootstrap-ie.js │ │ ├── bootstrap.js │ │ ├── bootstrap3-validation.js │ │ ├── bootstrapValidator.js │ │ ├── build-config.js │ │ ├── chosen.jquery.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── easyui-lang-zh_CN.js │ │ ├── fancySelect.js │ │ ├── hogan.js │ │ ├── html5shiv.js │ │ ├── ie8-responsive-file-warning.js │ │ ├── jPlay │ │ │ ├── js │ │ │ │ ├── Jplayer.swf │ │ │ │ ├── circle.player.js │ │ │ │ ├── jplayer.playlist.min.js │ │ │ │ ├── jquery.grab.js │ │ │ │ ├── jquery.jplayer.inspector.js │ │ │ │ ├── jquery.jplayer.min.js │ │ │ │ ├── jquery.transform2d.js │ │ │ │ ├── mod.csstransforms.min.js │ │ │ │ ├── popcorn.jplayer.js │ │ │ │ ├── popcorn.js │ │ │ │ ├── popcorn.player.js │ │ │ │ └── popcorn.subtitle.js │ │ │ └── skin │ │ │ │ ├── blue.monday │ │ │ │ ├── jplayer.blue.monday.css │ │ │ │ ├── jplayer.blue.monday.jpg │ │ │ │ ├── jplayer.blue.monday.seeking.gif │ │ │ │ └── jplayer.blue.monday.video.play.png │ │ │ │ ├── circle.skin │ │ │ │ ├── bgr.jpg │ │ │ │ ├── buffer.png │ │ │ │ ├── circle.player.css │ │ │ │ ├── controls.jpg │ │ │ │ ├── progress.png │ │ │ │ └── progress_sprite.jpg │ │ │ │ └── pink.flag │ │ │ │ ├── jplayer.pink.flag.css │ │ │ │ ├── jplayer.pink.flag.jpg │ │ │ │ ├── jplayer.pink.flag.seeking.gif │ │ │ │ └── jplayer.pink.flag.video.play.png │ │ ├── jquery-migrate.js │ │ ├── jquery.countdown.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.easyui.min.js │ │ ├── jquery.form.js │ │ ├── jquery.js │ │ ├── jquery.json.js │ │ ├── jquery.md5.js │ │ ├── jquery.validator.js │ │ ├── jquery.validator.rule.js │ │ ├── jquery.ztree.js │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── mathquill-0.9.1 │ │ │ ├── font │ │ │ │ ├── Symbola.eot │ │ │ │ ├── Symbola.otf │ │ │ │ ├── Symbola.svg │ │ │ │ ├── Symbola.ttf │ │ │ │ └── Symbola.woff │ │ │ ├── mathquill.css │ │ │ ├── mathquill.js │ │ │ └── mathquill.min.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── respond.min.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ ├── styles.js │ │ └── typeahead.min.js │ └── userpic │ │ ├── 1.png │ │ └── 2.png ├── test.html ├── welcome.html └── welcome_gov.html └── src ├── com ├── baidu │ ├── channel │ │ └── test │ │ │ ├── ChannelClientTest.java │ │ │ └── temp.java │ └── yun │ │ ├── channel │ │ ├── auth │ │ │ ├── ChannelKeyPair.java │ │ │ └── signature │ │ │ │ └── ChannelSignatureDigest.java │ │ ├── client │ │ │ ├── BaiduChannel.java │ │ │ ├── BaiduChannelAsync.java │ │ │ ├── BaiduChannelAsyncClient.java │ │ │ └── BaiduChannelClient.java │ │ ├── constants │ │ │ └── BaiduChannelConstants.java │ │ ├── exception │ │ │ ├── ChannelClientException.java │ │ │ └── ChannelServerException.java │ │ ├── model │ │ │ ├── BindInfo.java │ │ │ ├── ChannelMessage.java │ │ │ ├── ChannelRequest.java │ │ │ ├── ChannelResponse.java │ │ │ ├── DeleteAppIoscertRequest.java │ │ │ ├── DeleteTagRequest.java │ │ │ ├── FetchMessageRequest.java │ │ │ ├── FetchMessageResponse.java │ │ │ ├── FetchTagRequest.java │ │ │ ├── FetchTagResponse.java │ │ │ ├── InitAppIoscertRequest.java │ │ │ ├── PushBroadcastMessageRequest.java │ │ │ ├── PushBroadcastMessageResponse.java │ │ │ ├── PushTagMessageRequest.java │ │ │ ├── PushTagMessageResponse.java │ │ │ ├── PushUnicastMessageRequest.java │ │ │ ├── PushUnicastMessageResponse.java │ │ │ ├── QueryAppIoscertRequest.java │ │ │ ├── QueryAppIoscertResponse.java │ │ │ ├── QueryBindListRequest.java │ │ │ ├── QueryBindListResponse.java │ │ │ ├── QueryDeviceTypeRequest.java │ │ │ ├── QueryDeviceTypeResponse.java │ │ │ ├── QueryUserTagsRequest.java │ │ │ ├── QueryUserTagsResponse.java │ │ │ ├── SetTagRequest.java │ │ │ ├── TagInfo.java │ │ │ ├── UpdateAppIoscertRequest.java │ │ │ └── VerifyBindRequest.java │ │ ├── sample │ │ │ ├── AndroidPushBroadcastMessageSample.java │ │ │ ├── AndroidPushMessageSample.java │ │ │ ├── AndroidPushNotificationSample.java │ │ │ ├── AndroidPushTagMessageSample.java │ │ │ ├── IosPushBroadcastNotificationSample.java │ │ │ ├── IosPushNotificationSample.java │ │ │ └── QueryBindListSample.java │ │ └── transform │ │ │ ├── ChannelRestRequestChecker.java │ │ │ ├── ChannelRestRequestMapper.java │ │ │ ├── ChannelRestResponseJsonUnmapper.java │ │ │ └── utils │ │ │ └── TransformUtilitiy.java │ │ └── core │ │ ├── annotation │ │ ├── CollectionRestrict.java │ │ ├── HttpParamKeyName.java │ │ ├── HttpPathKeyName.java │ │ ├── JSonPath.java │ │ ├── R.java │ │ ├── RangeRestrict.java │ │ └── RegexRestrict.java │ │ ├── callback │ │ ├── YunHttpObservable.java │ │ ├── YunHttpObserver.java │ │ └── YunLogHttpCallBack.java │ │ ├── config │ │ └── HttpConfigure.java │ │ ├── event │ │ └── YunHttpEvent.java │ │ ├── exception │ │ └── YunHttpClientException.java │ │ ├── filter │ │ ├── CollectionRestrictFilter.java │ │ ├── HttpParamKeyNameFilter.java │ │ ├── HttpPathKeyNameFilter.java │ │ ├── IFieldFilter.java │ │ ├── RangeRestrictFilter.java │ │ └── RegexRestrictFilter.java │ │ ├── httpclient │ │ └── YunHttpClient.java │ │ ├── json │ │ ├── JSONParser.java │ │ ├── JSONParserConstants.java │ │ ├── JSONParserTokenManager.java │ │ ├── JsonParserDomTree.java │ │ ├── ParseException.java │ │ ├── SimpleCharStream.java │ │ ├── Token.java │ │ ├── TokenMgrError.java │ │ └── json_parser.jj │ │ ├── log │ │ ├── DefaultYunLogHandler.java │ │ ├── NullYunLogHandler.java │ │ ├── YunLogEvent.java │ │ └── YunLogHandler.java │ │ ├── model │ │ ├── BCMSKeyPair.java │ │ ├── ErrorResponse.java │ │ └── HttpRestResponse.java │ │ └── utility │ │ ├── IOUtility.java │ │ ├── MapObjectUtility.java │ │ ├── MessageDigestUtility.java │ │ ├── Native2AsciiUtility.java │ │ ├── ReflectionUtility.java │ │ ├── StringUtility.java │ │ └── YunCommonUtility.java └── saber │ └── webserver │ ├── MiniWebServer.java │ └── RawServlet.java ├── ehcache └── ehcache.xml ├── log4j.properties ├── mail.properties └── org ├── jasig └── cas │ └── client │ └── authentication │ └── AuthenticationFilter.java └── tang └── jpa ├── Test.java ├── config ├── attendance │ ├── AttendanceState.xml │ └── AttendanceStateDetail.xml ├── exam │ ├── Exam.xml │ ├── Exampaper.xml │ └── Options.xml ├── mobile │ ├── Attendance.xml │ ├── AttendanceGraph.xml │ ├── ChatMsg.xml │ ├── MobileUser.xml │ └── TaskWeekly.xml ├── mybatis-config.xml ├── publicInformation │ ├── Article.xml │ ├── Email.xml │ ├── Opinion.xml │ └── Video.xml └── system │ ├── Department.xml │ ├── Dictory.xml │ ├── LoginLog.xml │ ├── Notice.xml │ ├── OperateLog.xml │ ├── Organization.xml │ ├── Resource.xml │ ├── Role.xml │ └── User.xml ├── controller ├── attendance │ └── AttendanceStateController.java ├── exam │ ├── ExamController.java │ ├── ExampaperController.java │ └── OptionsController.java ├── lucene │ └── ContentController.java ├── mobile │ ├── AttendanceController.java │ ├── AttendanceGraphController.java │ ├── AttendanceStateController.java │ ├── ChatMsgController.java │ ├── ContactController.java │ ├── MobileLoginController.java │ ├── NoticeController.java │ ├── TaskWeeklyController.java │ └── VideoController.java ├── publicInformation │ ├── ArticleController.java │ ├── EmailController.java │ ├── OpinionController.java │ ├── PublicIndexController.java │ └── VideoController.java └── system │ ├── CommonController.java │ ├── DepartmentController.java │ ├── LoginController.java │ ├── NoticeController.java │ ├── OrganizationController.java │ ├── RegisterController.java │ ├── ResourceController.java │ ├── RoleController.java │ └── UserController.java ├── credentials └── RetryLimitHashedCredentialsMatcher.java ├── dao ├── attendance │ ├── AttendanceStateDao.java │ └── AttendanceStateDetailDao.java ├── exam │ ├── ExamDao.java │ ├── ExampaperDao.java │ ├── OptionsDao.java │ ├── UserexamDao.java │ └── UserexamdetailsDao.java ├── lucene │ ├── LuceneDao.java │ └── LuceneDaoFileImpl.java ├── mobile │ ├── AttendanceDao.java │ ├── AttendanceGraphDao.java │ ├── ChatMsgDao.java │ ├── MobileUserDao.java │ └── TaskWeeklyDao.java ├── publicInformation │ ├── ArticleDao.java │ ├── EmailDao.java │ ├── OpinionDao.java │ └── VideoDao.java └── system │ ├── CommonDao.java │ ├── DepartmentDao.java │ ├── LoginLogDao.java │ ├── NoticeDao.java │ ├── OperateLogDao.java │ ├── OrganizationDao.java │ ├── ResourceDao.java │ ├── RoleDao.java │ └── UserDao.java ├── dto ├── attendance │ ├── AttendanceState.java │ ├── AttendanceStateDTO.java │ └── AttendanceStateDetailDTO.java ├── exam │ ├── ExamPaperDetailsDTO.java │ ├── ExampaperDTO.java │ ├── OptionsDTO.java │ ├── UserexamDTO.java │ └── UserexamdetailsDTO.java ├── lucene │ ├── FileStuff.java │ └── Stuff.java ├── mobile │ ├── AttendanceDTO.java │ ├── AttendanceGraphDTO.java │ ├── ChatMsgDTO.java │ ├── MobileBaseRepDTO.java │ ├── MobileUserDTO.java │ ├── TaskWeeklyDTO.java │ └── UserInfoDTO.java ├── publicInformation │ ├── ArticleDTO.java │ ├── EmailDTO.java │ ├── OpinionDTO.java │ ├── PictureDTO.java │ └── VideoDTO.java └── system │ ├── DepartmentDTO.java │ ├── DictoryDTO.java │ ├── LoginLogDTO.java │ ├── NoticeDTO.java │ ├── OperateLogDTO.java │ ├── OrganizationDTO.java │ ├── ResourceDTO.java │ ├── RoleDTO.java │ ├── RoleResourceDTO.java │ ├── TreeDTO.java │ ├── UserDTO.java │ └── VideoTreeDTO.java ├── filter ├── CustomFormAuthenticationFilter.java └── CustomToken.java ├── interceptor ├── AllInterceptor.java └── LoginInterceptor.java ├── realm └── UserRealm.java ├── service ├── attendance │ ├── AttendanceStateDetailService.java │ └── AttendanceStateService.java ├── exam │ ├── ExamService.java │ ├── ExampaperService.java │ └── OptionsService.java ├── mobile │ ├── AttendanceGraphService.java │ ├── AttendanceService.java │ ├── ChatMsgService.java │ ├── MobileUserService.java │ ├── PushMsgService.java │ └── TaskWeeklyService.java ├── publicInformation │ ├── ArticleService.java │ ├── EmailService.java │ ├── MailService.java │ ├── OpinionService.java │ └── VideoService.java └── system │ ├── CommonService.java │ ├── DepartmentService.java │ ├── NoticeService.java │ ├── OperateLogService.java │ ├── OrganizationService.java │ ├── ResourceService.java │ ├── RoleService.java │ └── UserService.java ├── test ├── HttpClientTest.java ├── MailTester.java └── Test.java └── utils ├── Constants.java ├── CurrentUser.java ├── CurrentUserMethodArgumentResolver.java ├── DateTool.java ├── DefaultExceptionHandler.java ├── Dialect.java ├── JSONHelper.java ├── JsonTool.java ├── MobileConstant.java ├── MyConstants.java ├── MySql5Dialect.java ├── MySql5PageHepler.java ├── OracleDialect.java ├── Page.java ├── PageInterceptor.java ├── PaginationInterceptor.java ├── PinyinConv.java ├── SQLServerDialect.java ├── SpecialCalendar.java └── UploadFile.java /.gitignore: -------------------------------------------------------------------------------- 1 | /.mymetadata 2 | -------------------------------------------------------------------------------- /.mymetadata: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Thu Feb 20 13:48:03 CST 2014 2 | eclipse.preferences.version=1 3 | encoding//src/mail.properties=UTF-8 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 1.完成权限 2 | 2.完成试卷生成 3 | 3.完成试题添加 -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/.gitignore: -------------------------------------------------------------------------------- 1 | /classes 2 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | #将ibatis log4j运行级别调到DEBUG可以在控制台打印出ibatis运行的sql语句 2 | log4j.rootLogger=debug,stdout,logfile 3 | ### 把日志信息输出到控制台 ### 4 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 5 | #log4j.appender.stdout.Target=System.err 6 | log4j.appender.stdout.layout=org.apache.log4j.SimpleLayout 7 | ### 把日志信息输出到文件:jbit.log ### 8 | log4j.appender.logfile=org.apache.log4j.FileAppender 9 | log4j.appender.logfile.File=D:/springmvc.log 10 | log4j.appender.logfile.layout=org.apache.log4j.PatternLayout 11 | log4j.appender.logfile.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %F %p %m%n 12 | 13 | ###显示SQL语句部分 14 | log4j.logger.com.ibatis=DEBUG 15 | #log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG 16 | #log4j.logger.com.ibatis.common.jdbc.ScriptRunner=DEBUG 17 | #log4j.logger.com.ibatis.sqlmap.engine.impl.SqlMapClientDelegate=DEBUG 18 | #log4j.logger.java.sql.Connection=DEBUG 19 | #log4j.logger.java.sql.Statement=DEBUG 20 | #log4j.logger.java.sql.PreparedStatement=DEBUG -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/Test.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/exam/ExamController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/exam/ExamController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/exam/ExampaperController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/exam/ExampaperController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/exam/OptionsController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/exam/OptionsController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/LoginController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/OrganizationController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/OrganizationController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/RegisterController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/RegisterController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/ResourceController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/ResourceController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/RoleController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/RoleController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/UserController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/controller/system/UserController.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/ExamDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/ExamDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/ExampaperDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/ExampaperDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/OptionsDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/OptionsDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/UserexamDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/UserexamDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/UserexamdetailsDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/exam/UserexamdetailsDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/DepartmentDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/DepartmentDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/LoginLogDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/LoginLogDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/OperateLogDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/OperateLogDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/OrganizationDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/OrganizationDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/ResourceDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/ResourceDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/RoleDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/RoleDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/UserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dao/system/UserDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/ExamPaperDetailsDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/ExamPaperDetailsDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/ExampaperDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/ExampaperDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/OptionsDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/OptionsDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/UserexamDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/UserexamDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/UserexamdetailsDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/exam/UserexamdetailsDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/DepartmentDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/DepartmentDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/LoginLogDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/LoginLogDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/OperateLogDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/OperateLogDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/OrganizationDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/OrganizationDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/ResourceDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/ResourceDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/RoleDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/RoleDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/RoleResourceDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/RoleResourceDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/TreeDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/TreeDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/UserDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/dto/system/UserDTO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/interceptor/AllInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/interceptor/AllInterceptor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/interceptor/LoginInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/interceptor/LoginInterceptor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/exam/ExamService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/exam/ExamService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/exam/ExampaperService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/exam/ExampaperService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/exam/OptionsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/exam/OptionsService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/system/OperateLogService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/system/OperateLogService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/system/OrganizationService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/system/OrganizationService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/system/ResourceService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/system/ResourceService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/system/RoleService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/system/RoleService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/service/system/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/service/system/UserService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/DateTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/DateTool.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type$1.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type$2.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type$3.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect$Type.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/Dialect.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/JsonTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/JsonTool.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/MyConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/MyConstants.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/MySql5Dialect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/MySql5Dialect.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/MySql5PageHepler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/MySql5PageHepler.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/OracleDialect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/OracleDialect.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/Page.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/Page.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/PageInterceptor$ReflectUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/PageInterceptor$ReflectUtil.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/PageInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/PageInterceptor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/PaginationInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/PaginationInterceptor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/PinyinConv.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/PinyinConv.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/org/tang/jpa/utils/SQLServerDialect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/classes/org/tang/jpa/utils/SQLServerDialect.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/conf/spring-config-cache.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/conf/spring-mvc-shiro.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/IKAnalyzer2012FF_u1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/IKAnalyzer2012FF_u1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/activation-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/activation-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/antlr-2.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/antlr-2.7.7.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aspectjrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/aspectjrt.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aspectjweaver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/aspectjweaver.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cas-client-core-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/cas-client-core-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cas-client-integration-tomcat-common-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/cas-client-integration-tomcat-common-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cas-client-integration-tomcat-v6-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/cas-client-integration-tomcat-v6-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cas-client-integration-tomcat-v7-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/cas-client-integration-tomcat-v7-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/cglib-2.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/common-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/common-annotations.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-chain-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-chain-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-codec-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-codec-1.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-collections-3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-fileupload-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-io-2.0.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang-2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-lang-2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-api-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-logging-api-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/commons-logging.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/druid-0.2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/druid-0.2.8.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ehcache-2.8.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/ehcache-2.8.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/gson-2.2.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-commons-annotations-4.0.2.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/hibernate-commons-annotations-4.0.2.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-core-4.2.8.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/hibernate-core-4.2.8.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-entitymanager-4.2.8.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/hibernate-entitymanager-4.2.8.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.1.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.1.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/httpclient-4.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/httpclient-4.3.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/httpclient-cache-4.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/httpclient-cache-4.3.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/httpcore-4.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/httpcore-4.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/httpmime-4.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/httpmime-4.3.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jackson-annotations-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/jackson-annotations-2.3.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jackson-core-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/jackson-core-2.3.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jackson-databind-2.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/jackson-databind-2.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.18.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/javassist-3.18.1-GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jboss-logging-3.1.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/jboss-logging-3.1.0.GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jboss-transaction-api_1.1_spec-1.0.1.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/jboss-transaction-api_1.1_spec-1.0.1.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/joda-time-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/joda-time-2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json-lib-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/json-lib-2.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/junit-4.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/junit-4.10.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-api-2.0-beta9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/log4j-api-2.0-beta9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-core-2.0-beta9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/log4j-core-2.0-beta9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/lucene-core-4.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/lucene-core-4.7.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/lucene-highlighter-4.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/lucene-highlighter-4.3.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/lucene-memory-4.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/lucene-memory-4.3.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/lucene-queries-4.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/lucene-queries-4.3.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/lucene-queryparser-4.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/lucene-queryparser-4.7.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mail-1.5.0-b01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/mail-1.5.0-b01.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mmseg4j-analysis-1.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/mmseg4j-analysis-1.9.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mmseg4j-core-1.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/mmseg4j-core-1.9.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mmseg4j-solr-1.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/mmseg4j-solr-1.9.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-3.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/mybatis-3.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-spring-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/mybatis-spring-1.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ojdbc14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/ojdbc14.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/pinyin4j-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/pinyin4j-2.5.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/quartz-all-1.8.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/quartz-all-1.8.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-aspectj-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-aspectj-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-cas-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-cas-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-core-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-core-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-ehcache-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-ehcache-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-guice-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-guice-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-quartz-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-quartz-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-spring-1.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-spring-1.1.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-spring-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-spring-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-tools-hasher-1.2.3-cli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-tools-hasher-1.2.3-cli.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/shiro-web-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/shiro-web-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/slf4j-api-1.7.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-log4j12-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/slf4j-log4j12-1.7.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aop-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-aop-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aop-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-aop-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aop-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-aop-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aspects-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-aspects-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aspects-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-aspects-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aspects-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-aspects-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-beans-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-beans-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-beans-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-build-src-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-build-src-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-context-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-context-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-context-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-support-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-context-support-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-support-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-context-support-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-support-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-context-support-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-core-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-core-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-core-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-data-commons-1.6.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-data-commons-1.6.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-data-jpa-1.4.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-data-jpa-1.4.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-expression-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-expression-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-expression-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-expression-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-expression-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-expression-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-instrument-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-instrument-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-instrument-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-instrument-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-instrument-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-instrument-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-instrument-tomcat-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-instrument-tomcat-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-instrument-tomcat-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-instrument-tomcat-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-instrument-tomcat-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-instrument-tomcat-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jms-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-jms-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jms-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-jms-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jms-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-jms-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-orm-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-orm-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-orm-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-orm-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-orm-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-orm-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-oxm-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-oxm-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-oxm-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-oxm-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-oxm-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-oxm-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-struts-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-struts-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-struts-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-struts-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-struts-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-struts-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-test-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-test-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-test-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-test-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-test-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-test-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-tx-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-tx-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-tx-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-tx-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-tx-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-tx-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-web-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-web-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-web-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-portlet-3.2.4.RELEASE-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-webmvc-portlet-3.2.4.RELEASE-javadoc.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-portlet-3.2.4.RELEASE-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-webmvc-portlet-3.2.4.RELEASE-sources.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-portlet-3.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/spring-webmvc-portlet-3.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/tika-app-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/WEB-INF/lib/tika-app-1.5.jar -------------------------------------------------------------------------------- /WebRoot/css-mod/public/content.css: -------------------------------------------------------------------------------- 1 | 2 | .head { 3 | width: 1004px; 4 | height: 84px; 5 | background-image: url(../../resources/img/content_top.gif); 6 | background-repeat: no-repeat; 7 | background-positon: left top; 8 | color: #CE2F29; 9 | font-size: 13px; 10 | text-align: right; 11 | clear: both; 12 | } 13 | 14 | .head_title{ 15 | width: 100%; 16 | text-align: center; 17 | color: #C82E30; 18 | font-size: 20px; 19 | font-family: "宋体"; 20 | font-weight: bold; 21 | padding: 13px 0 15px; 22 | } 23 | 24 | .head_explain { 25 | border-top: 1px solid #C82E30; 26 | background-color: #FBF1EF; 27 | padding: 5px; 28 | font-size: 12px; 29 | text-align: center; 30 | color: #F6745B; 31 | } 32 | 33 | 34 | .head_tools { 35 | clear: both; 36 | height: 1px; 37 | font: 0px/0px Arial; 38 | overflow: hidden; 39 | border-top: 1px solid #C82E30; 40 | margin: 6 0 6 0; 41 | } 42 | 43 | .content_title{ 44 | font-size: 22px; 45 | } 46 | 47 | .content{ 48 | font-size: 16px; 49 | } -------------------------------------------------------------------------------- /WebRoot/css-mod/public/title_content.css: -------------------------------------------------------------------------------- 1 | 2 | .title_content_top{ 3 | /* 4 | height: 25px; 5 | padding: 6px; 6 | background-image:url(../../resources/img/public_01.gif) ; 7 | background-repeat: no-repeat; 8 | 9 | padding-top:5px; 10 | padding-left: 72px; 11 | position:absolute; 12 | */ 13 | font-size: 16px; 14 | font-weight: bold; 15 | color: #FFFFFF; 16 | 17 | } 18 | 19 | 20 | .title_content { 21 | font-size: 13px; 22 | color: #000000; 23 | } 24 | 25 | a { 26 | text-decoration : none; 27 | color: #333333; 28 | } 29 | 30 | .page_li{} -------------------------------------------------------------------------------- /WebRoot/css-mod/system/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 60px; 3 | padding-bottom: 40px; 4 | } 5 | 6 | .nav li { 7 | padding-top: 5px; 8 | } 9 | 10 | .leaderboard { 11 | padding: 60px; 12 | margin-bottom: 30px; 13 | background-image: url('/twitter-bootstrap/images/gridbg.gif'); 14 | background-repeat: repeat; 15 | -webkit-border-radius: 6px; 16 | -moz-border-radius: 6px; 17 | border-radius: 6px; 18 | } 19 | 20 | .leaderboard h1 { 21 | font-size: 40px; 22 | margin-bottom: 5px; 23 | line-height: 1; 24 | letter-spacing: -1px; 25 | color: #FF6600; 26 | } 27 | 28 | .leaderboard p { 29 | font-size: 18px; 30 | font-weight: 200; 31 | line-height: 27px; 32 | } -------------------------------------------------------------------------------- /WebRoot/css-mod/system/login.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-image: url('../../resources/img/banner1.jpg'); 3 | background-repeat:repeat; 4 | -webkit-background-size: cover; 5 | -moz-background-size: cover; 6 | -o-background-size: cover; 7 | background-size: cover; 8 | } 9 | 10 | body { 11 | padding-top: 40px; 12 | font-size: 16px; 13 | font-family: "Open Sans",serif; 14 | background: transparent; 15 | } 16 | .panel { 17 | background-color: rgba(255, 255, 255, 0.9); 18 | } 19 | 20 | .margin-base-vertical { 21 | margin: 40px 0; 22 | } -------------------------------------------------------------------------------- /WebRoot/css-mod/system/offcanvas.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Style twaks 3 | * -------------------------------------------------- 4 | */ 5 | body { 6 | padding-top: 70px; 7 | } 8 | footer { 9 | padding-left: 15px; 10 | padding-right: 15px; 11 | } 12 | 13 | /* 14 | * Off Canvas 15 | * -------------------------------------------------- 16 | */ 17 | @media screen and (max-width: 768px) { 18 | .row-offcanvas { 19 | position: relative; 20 | -webkit-transition: all 0.25s ease-out; 21 | -moz-transition: all 0.25s ease-out; 22 | transition: all 0.25s ease-out; 23 | } 24 | 25 | .row-offcanvas-right 26 | .sidebar-offcanvas { 27 | right: -50%; /* 6 columns */ 28 | } 29 | 30 | .row-offcanvas-left 31 | .sidebar-offcanvas { 32 | left: -50%; /* 6 columns */ 33 | } 34 | 35 | .row-offcanvas-right.active { 36 | right: 50%; /* 6 columns */ 37 | } 38 | 39 | .row-offcanvas-left.active { 40 | left: 50%; /* 6 columns */ 41 | } 42 | 43 | .sidebar-offcanvas { 44 | position: absolute; 45 | top: 0; 46 | width: 50%; /* 6 columns */ 47 | } 48 | } -------------------------------------------------------------------------------- /WebRoot/data/system/usertype.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id" : "AL", 4 | "text" : "Alabama" 5 | }, 6 | { 7 | "id" : "AK", 8 | "text" : "Alaska" 9 | }, { 10 | "id" : "AZ", 11 | "text" : "Arizona", 12 | "selected" : true 13 | }, { 14 | "id" : "AR", 15 | "text" : "Arkansas" 16 | }, { 17 | "id" : "CA", 18 | "text" : "California" 19 | } 20 | ] -------------------------------------------------------------------------------- /WebRoot/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
您没有获得授权
8 | -------------------------------------------------------------------------------- /WebRoot/html/error/404.html: -------------------------------------------------------------------------------- 1 | 2 |

405错误

3 | -------------------------------------------------------------------------------- /WebRoot/html/error/405.html: -------------------------------------------------------------------------------- 1 | 2 |

405错误

3 | -------------------------------------------------------------------------------- /WebRoot/html/error/500.html: -------------------------------------------------------------------------------- 1 | 2 |

405错误

3 | -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | My JSP 'index.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | This is my JSP page.
25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/js-mod/system/login.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $('#loginForm').bootstrapValidator({ 4 | message: 'This value is not valid', 5 | fields: { 6 | userName: { 7 | message: 'The username is not valid', 8 | validators: { 9 | notEmpty: { 10 | message: '用户名不能为空' 11 | }, 12 | emailAddress: { 13 | message: '请输入一个有效的邮箱地址' 14 | } 15 | } 16 | } 17 | } 18 | }); 19 | 20 | 21 | var options = { 22 | beforeSubmit : showRequest, //提交前处理 23 | success : showResponse, //处理完成 24 | clearForm: true, 25 | resetForm : true, 26 | timeout: 6000, 27 | dataType : 'json' 28 | }; 29 | 30 | 31 | $('#loginForm').submit(function() { 32 | $(this).ajaxSubmit(options); 33 | }); 34 | }); 35 | 36 | function showRequest(formData, jqForm, options) { 37 | var userName = $("#userName").val(); 38 | $("#userPwd").val($.md5($("#userPwd").val())); 39 | return true; 40 | } 41 | 42 | function showResponse(responseText, statusText) { 43 | $('#userPwd').val(""); 44 | } -------------------------------------------------------------------------------- /WebRoot/resources/css/bootstrapValidator.css: -------------------------------------------------------------------------------- 1 | /** 2 | * BootstrapValidator (https://github.com/nghuuphuoc/bootstrapvalidator) 3 | * 4 | * A jQuery plugin to validate form fields. Use with Bootstrap 3 5 | * 6 | * @author http://twitter.com/nghuuphuoc 7 | * @copyright (c) 2014 Nguyen Huu Phuoc 8 | * @license MIT 9 | */ 10 | .bootstrap-validator-form .help-block { 11 | margin-bottom: 0; } 12 | -------------------------------------------------------------------------------- /WebRoot/resources/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/chosen-sprite.png -------------------------------------------------------------------------------- /WebRoot/resources/css/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/chosen-sprite@2x.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/back.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/blank.gif -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/cancel.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/cut.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/edit_add.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/edit_remove.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/filesave.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/filter.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/help.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/mini_add.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/mini_edit.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/mini_refresh.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/no.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/ok.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/pencil.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/print.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/redo.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/reload.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/search.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/sum.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/tip.png -------------------------------------------------------------------------------- /WebRoot/resources/css/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/icons/undo.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/accordion_arrows.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/resources/css/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/calendar_arrows.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/combo_arrow.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/datagrid_icons.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/datebox_arrow.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/1_close.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/1_open.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/2.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/3.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/4.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/5.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/6.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/7.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/8.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/diy/9.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/layout_arrows.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/line_conn.gif -------------------------------------------------------------------------------- /WebRoot/resources/css/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/linkbutton_bg.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/resources/css/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/menu_arrows.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/messager_icons.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/pagination_icons.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/panel_tools.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/searchbox_button.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/slider_handle.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/spinner_arrows.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/tabs_icons.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/tree_icons.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/validatebox_warning.png -------------------------------------------------------------------------------- /WebRoot/resources/css/images/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/zTreeStandard.gif -------------------------------------------------------------------------------- /WebRoot/resources/css/images/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/css/images/zTreeStandard.png -------------------------------------------------------------------------------- /WebRoot/resources/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 60px; 3 | padding-bottom: 40px; 4 | } 5 | 6 | .nav li { 7 | padding-top: 5px; 8 | } 9 | 10 | .leaderboard { 11 | padding: 60px; 12 | margin-bottom: 30px; 13 | background-repeat: repeat; 14 | -webkit-border-radius: 6px; 15 | -moz-border-radius: 6px; 16 | border-radius: 6px; 17 | } 18 | 19 | .leaderboard h1 { 20 | font-size: 40px; 21 | margin-bottom: 5px; 22 | line-height: 1; 23 | letter-spacing: -1px; 24 | color: #FF6600; 25 | } 26 | 27 | .leaderboard p { 28 | font-size: 18px; 29 | font-weight: 200; 30 | line-height: 27px; 31 | } -------------------------------------------------------------------------------- /WebRoot/resources/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/resources/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/resources/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/resources/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/resources/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebRoot/resources/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebRoot/resources/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebRoot/resources/img/CategorizeMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/CategorizeMenu.png -------------------------------------------------------------------------------- /WebRoot/resources/img/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/arrow.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/arrow02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/arrow02.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/banner1.jpg -------------------------------------------------------------------------------- /WebRoot/resources/img/blocks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/blocks.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/content_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/content_top.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/digits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/digits.png -------------------------------------------------------------------------------- /WebRoot/resources/img/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/directory.png -------------------------------------------------------------------------------- /WebRoot/resources/img/index_middle_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/index_middle_t.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/layout-browser-hd-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/layout-browser-hd-bg.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/middle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/middle.jpg -------------------------------------------------------------------------------- /WebRoot/resources/img/middle_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/middle_01.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/middle_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/middle_02.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/middle_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/middle_03.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/middle_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/middle_04.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/nav_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/nav_link.png -------------------------------------------------------------------------------- /WebRoot/resources/img/page_bg_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/page_bg_center.jpg -------------------------------------------------------------------------------- /WebRoot/resources/img/public_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/public_01.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/public_index_backimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/public_index_backimage.jpg -------------------------------------------------------------------------------- /WebRoot/resources/img/right_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/right_1.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/right_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/right_2.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/right_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/right_3.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/right_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/right_4.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/right_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/right_5.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/tabicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/tabicons.png -------------------------------------------------------------------------------- /WebRoot/resources/img/tile_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/tile_bg.jpg -------------------------------------------------------------------------------- /WebRoot/resources/img/title_content_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/title_content_top.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/title_right_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/title_right_bg.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/tools-sprites-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/tools-sprites-trans.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/wszy_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/wszy_top.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/xs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/xs.gif -------------------------------------------------------------------------------- /WebRoot/resources/img/xxyd_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/img/xxyd_top.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/JMEditor.js: -------------------------------------------------------------------------------- 1 | /** 2 | * JMEditor 0.9 beta 3 | * http://www.jmeditor.com/ 4 | */ 5 | var JMEditor_BasePath = ""; 6 | var scriptEles=document.getElementsByTagName("script"); 7 | for(var i=0;i" + 17 | "" + 18 | "" 19 | ); 20 | 21 | var JMEditor = {}; 22 | $(document).ready(function(){ 23 | JMEditor = { 24 | versionCode : 1, 25 | versionName : "V0.9", 26 | ckEditor : CKEDITOR, 27 | jmeBasePath : JMEditor_BasePath, 28 | defaultFontSize : "20px", 29 | isEmpty : function(elementId){ 30 | return ($("#" + elementId).html()+"").replace(/(<[^>]*>|\s| )/ig,"").length < 1; 31 | }, 32 | html : function(elementId){ 33 | return $("#" + elementId).html(); 34 | } 35 | }; 36 | }); 37 | 38 | 39 | -------------------------------------------------------------------------------- /WebRoot/resources/js/ie8-responsive-file-warning.js: -------------------------------------------------------------------------------- 1 | // NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT 2 | // IT'S JUST JUNK FOR OUR DOCS! 3 | // ++++++++++++++++++++++++++++++++++++++++++ 4 | /*! 5 | * Copyright 2011-2014 Twitter, Inc. 6 | * 7 | * Licensed under the Creative Commons Attribution 3.0 Unported License. For 8 | * details, see http://creativecommons.org/licenses/by/3.0/. 9 | */ 10 | // Intended to prevent false-positive bug reports about responsive styling supposedly not working in IE8. 11 | if (window.location.protocol == 'file:') 12 | alert("ERROR: Bootstrap's responsive CSS is disabled!\nSee getbootstrap.com/getting-started/#respond-file-proto for details.") 13 | -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/js/Jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/js/Jplayer.swf -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/blue.monday/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/blue.monday/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/blue.monday/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/blue.monday/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/blue.monday/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/blue.monday/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/circle.skin/bgr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/circle.skin/bgr.jpg -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/circle.skin/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/circle.skin/buffer.png -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/circle.skin/controls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/circle.skin/controls.jpg -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/circle.skin/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/circle.skin/progress.png -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/circle.skin/progress_sprite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/circle.skin/progress_sprite.jpg -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/pink.flag/jplayer.pink.flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/pink.flag/jplayer.pink.flag.jpg -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/pink.flag/jplayer.pink.flag.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/pink.flag/jplayer.pink.flag.seeking.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/jPlay/skin/pink.flag/jplayer.pink.flag.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/jPlay/skin/pink.flag/jplayer.pink.flag.video.play.png -------------------------------------------------------------------------------- /WebRoot/resources/js/mathquill-0.9.1/font/Symbola.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/mathquill-0.9.1/font/Symbola.eot -------------------------------------------------------------------------------- /WebRoot/resources/js/mathquill-0.9.1/font/Symbola.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/mathquill-0.9.1/font/Symbola.otf -------------------------------------------------------------------------------- /WebRoot/resources/js/mathquill-0.9.1/font/Symbola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/mathquill-0.9.1/font/Symbola.ttf -------------------------------------------------------------------------------- /WebRoot/resources/js/mathquill-0.9.1/font/Symbola.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/mathquill-0.9.1/font/Symbola.woff -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/icons.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into CKEditor. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /WebRoot/resources/js/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/icons.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/close.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/lock.png -------------------------------------------------------------------------------- /WebRoot/resources/js/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/js/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /WebRoot/resources/userpic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/userpic/1.png -------------------------------------------------------------------------------- /WebRoot/resources/userpic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhezhi/springmvc/603d0cc3d0310250f75e5db56ecd02dcc9357539/WebRoot/resources/userpic/2.png -------------------------------------------------------------------------------- /src/com/baidu/channel/test/temp.java: -------------------------------------------------------------------------------- 1 | package com.baidu.channel.test; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import com.baidu.yun.core.utility.StringUtility; 7 | 8 | public class temp { 9 | 10 | public static void main(String[] args) { 11 | String ts = "10995021999621778018"; 12 | // Long v = Long.parseLong(ts); 13 | // System.out.println(v); 14 | 15 | String t1 = "{\"name\":\"lilei\", \"name2\":\"hanmeimei\"}"; 16 | System.out.println(t1); 17 | 18 | System.out.println("\"hello\"".replaceAll("\"", "\\\\\"")); 19 | 20 | List msgs = new ArrayList(); 21 | msgs.add("\"hello\""); 22 | msgs.add(t1); 23 | System.out.println(StringUtility.toJson(msgs)); 24 | 25 | String msg = "\"hello\""; 26 | msg = msg.replaceAll("\"", "\\\\\""); 27 | System.out.println(msg); 28 | 29 | System.out.println(t1.replaceAll("\"", "\\\\\"")); 30 | 31 | System.out.println(t1.replaceAll("\"", "\\\\\"").replaceAll("\\\\\"", 32 | "\"")); 33 | 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/auth/ChannelKeyPair.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.auth; 2 | 3 | public class ChannelKeyPair { 4 | 5 | private String apiKey; 6 | 7 | private String secretKey; 8 | 9 | public ChannelKeyPair(String apiKey, String secretKey) { 10 | this.apiKey = apiKey; 11 | this.secretKey = secretKey; 12 | } 13 | 14 | public String getApiKey() { 15 | return apiKey; 16 | } 17 | 18 | public void setApiKey(String apiKey) { 19 | this.apiKey = apiKey; 20 | } 21 | 22 | public String getSecretKey() { 23 | return secretKey; 24 | } 25 | 26 | public void setSecretKey(String secretKey) { 27 | this.secretKey = secretKey; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/exception/ChannelClientException.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.exception; 2 | 3 | public class ChannelClientException extends Exception { 4 | 5 | /** 6 | * 7 | */ 8 | private static final long serialVersionUID = 4666593066875898324L; 9 | 10 | public ChannelClientException(String msg) { 11 | super(msg); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/ChannelRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.channel.constants.BaiduChannelConstants; 4 | import com.baidu.yun.core.annotation.HttpParamKeyName; 5 | import com.baidu.yun.core.annotation.R; 6 | 7 | public abstract class ChannelRequest { 8 | 9 | @HttpParamKeyName(name = BaiduChannelConstants.VERSION, param = R.OPTIONAL) 10 | protected String v = null; 11 | 12 | @HttpParamKeyName(name = BaiduChannelConstants.TIMESTAMP, param = R.REQUIRE) 13 | protected Long timestamp = System.currentTimeMillis() / 1000L; 14 | 15 | @HttpParamKeyName(name = BaiduChannelConstants.EXPIRES, param = R.OPTIONAL) 16 | protected Long expires = null; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/ChannelResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | public abstract class ChannelResponse { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/DeleteAppIoscertRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | public class DeleteAppIoscertRequest extends ChannelRequest { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/DeleteTagRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.channel.constants.BaiduChannelConstants; 4 | import com.baidu.yun.core.annotation.HttpParamKeyName; 5 | import com.baidu.yun.core.annotation.R; 6 | import com.baidu.yun.core.annotation.RangeRestrict; 7 | 8 | public class DeleteTagRequest extends ChannelRequest { 9 | 10 | @HttpParamKeyName(name = BaiduChannelConstants.TAG_NAME, param = R.REQUIRE) 11 | @RangeRestrict(minLength = 1, maxLength = 128) 12 | private String tag; 13 | 14 | @HttpParamKeyName(name = BaiduChannelConstants.USER_ID, param = R.OPTIONAL) 15 | @RangeRestrict(minLength = 1, maxLength = 256) 16 | private String userId; 17 | 18 | public String getTag() { 19 | return tag; 20 | } 21 | 22 | public void setTag(String tag) { 23 | this.tag = tag; 24 | } 25 | 26 | public String getUserId() { 27 | return userId; 28 | } 29 | 30 | public void setUserId(String userId) { 31 | this.userId = userId; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/FetchMessageResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import java.util.LinkedList; 4 | import java.util.List; 5 | 6 | import com.baidu.yun.core.annotation.JSonPath; 7 | 8 | public class FetchMessageResponse extends ChannelResponse { 9 | 10 | @JSonPath(path = "response_params\\total_num") 11 | private int totalNum = 0; 12 | 13 | @JSonPath(path = "response_params\\messages") 14 | private List messages = new LinkedList(); 15 | 16 | public int getTotalNum() { 17 | return totalNum; 18 | } 19 | 20 | public void setTotalNum(int totalNum) { 21 | this.totalNum = totalNum; 22 | } 23 | 24 | public List getMessages() { 25 | return messages; 26 | } 27 | 28 | public void setMessages(List messages) { 29 | this.messages = messages; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/FetchTagRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.channel.constants.BaiduChannelConstants; 4 | import com.baidu.yun.core.annotation.HttpParamKeyName; 5 | import com.baidu.yun.core.annotation.R; 6 | 7 | public class FetchTagRequest extends ChannelRequest { 8 | 9 | @HttpParamKeyName(name = BaiduChannelConstants.TAG_NAME, param = R.OPTIONAL) 10 | private String name; 11 | 12 | @HttpParamKeyName(name = BaiduChannelConstants.START, param = R.OPTIONAL) 13 | private Integer start = new Integer(0); 14 | 15 | @HttpParamKeyName(name = BaiduChannelConstants.LIMIT, param = R.OPTIONAL) 16 | private Integer limit = new Integer(10); 17 | 18 | public String getName() { 19 | return name; 20 | } 21 | 22 | public void setName(String name) { 23 | this.name = name; 24 | } 25 | 26 | public Integer getStart() { 27 | return start; 28 | } 29 | 30 | public void setStart(Integer start) { 31 | this.start = start; 32 | } 33 | 34 | public Integer getLimit() { 35 | return limit; 36 | } 37 | 38 | public void setLimit(Integer limit) { 39 | this.limit = limit; 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/FetchTagResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import java.util.LinkedList; 4 | import java.util.List; 5 | 6 | import com.baidu.yun.core.annotation.JSonPath; 7 | 8 | public class FetchTagResponse extends ChannelResponse { 9 | 10 | @JSonPath(path = "response_params\\total_num") 11 | private int totalNum = 0; 12 | 13 | @JSonPath(path = "response_params\\amount") 14 | private int amount = 0; 15 | 16 | @JSonPath(path = "response_params\\tags") 17 | private List tags = new LinkedList(); 18 | 19 | public int getTotalNum() { 20 | return totalNum; 21 | } 22 | 23 | public void setTotalNum(int totalNum) { 24 | this.totalNum = totalNum; 25 | } 26 | 27 | public int getAmount() { 28 | return amount; 29 | } 30 | 31 | public void setAmount(int amount) { 32 | this.amount = amount; 33 | } 34 | 35 | public List getTags() { 36 | return tags; 37 | } 38 | 39 | public void setTags(List tags) { 40 | this.tags = tags; 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/PushBroadcastMessageResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.core.annotation.JSonPath; 4 | 5 | public class PushBroadcastMessageResponse extends ChannelResponse { 6 | 7 | @JSonPath(path = "response_params\\success_amount") 8 | private int successAmount = 0; 9 | 10 | public int getSuccessAmount() { 11 | return successAmount; 12 | } 13 | 14 | public void setSuccessAmount(int successAmount) { 15 | this.successAmount = successAmount; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/PushTagMessageResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.core.annotation.JSonPath; 4 | 5 | public class PushTagMessageResponse extends ChannelResponse { 6 | 7 | @JSonPath(path = "response_params\\success_amount") 8 | private int successAmount = 0; 9 | 10 | public int getSuccessAmount() { 11 | return successAmount; 12 | } 13 | 14 | public void setSuccessAmount(int successAmount) { 15 | this.successAmount = successAmount; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/PushUnicastMessageResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.core.annotation.JSonPath; 4 | 5 | public class PushUnicastMessageResponse extends ChannelResponse { 6 | 7 | @JSonPath(path = "response_params\\success_amount") 8 | private int successAmount = 0; 9 | 10 | public int getSuccessAmount() { 11 | return successAmount; 12 | } 13 | 14 | public void setSuccessAmount(int successAmount) { 15 | this.successAmount = successAmount; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/QueryAppIoscertRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | public class QueryAppIoscertRequest extends ChannelRequest { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/QueryBindListResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import java.util.LinkedList; 4 | import java.util.List; 5 | 6 | import com.baidu.yun.core.annotation.JSonPath; 7 | 8 | public class QueryBindListResponse extends ChannelResponse { 9 | 10 | @JSonPath(path = "response_params\\total_num") 11 | private int totalNum; 12 | 13 | @JSonPath(path = "response_params\\binds") 14 | private List binds = new LinkedList(); 15 | 16 | public int getTotalNum() { 17 | return totalNum; 18 | } 19 | 20 | public void setTotalNum(int totalNum) { 21 | this.totalNum = totalNum; 22 | } 23 | 24 | public List getBinds() { 25 | return binds; 26 | } 27 | 28 | public void setBinds(List binds) { 29 | this.binds = binds; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/QueryDeviceTypeRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.core.annotation.HttpPathKeyName; 4 | import com.baidu.yun.core.annotation.R; 5 | 6 | public class QueryDeviceTypeRequest extends ChannelRequest { 7 | 8 | @HttpPathKeyName(param = R.OPTIONAL) 9 | private Long channelId = null; 10 | 11 | public Long getChannelId() { 12 | return channelId; 13 | } 14 | 15 | public void setChannelId(Long channelId) { 16 | this.channelId = channelId; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/QueryDeviceTypeResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.core.annotation.JSonPath; 4 | 5 | public class QueryDeviceTypeResponse extends ChannelResponse { 6 | 7 | @JSonPath(path = "response_params\\device_type") 8 | private long deviceType; 9 | 10 | public long getDeviceType() { 11 | return deviceType; 12 | } 13 | 14 | public void setDeviceType(long deviceType) { 15 | this.deviceType = deviceType; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/QueryUserTagsRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.channel.constants.BaiduChannelConstants; 4 | import com.baidu.yun.core.annotation.HttpParamKeyName; 5 | import com.baidu.yun.core.annotation.R; 6 | 7 | public class QueryUserTagsRequest extends ChannelRequest { 8 | 9 | @HttpParamKeyName(name = BaiduChannelConstants.USER_ID, param = R.REQUIRE) 10 | private String userId = null; 11 | 12 | public String getUserId() { 13 | return userId; 14 | } 15 | 16 | public void setUserId(String userId) { 17 | this.userId = userId; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/QueryUserTagsResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import java.util.LinkedList; 4 | import java.util.List; 5 | 6 | import com.baidu.yun.core.annotation.JSonPath; 7 | 8 | public class QueryUserTagsResponse extends ChannelResponse { 9 | 10 | @JSonPath(path = "response_params\\tag_num") 11 | private int tagNum; 12 | 13 | @JSonPath(path = "response_params\\tags") 14 | private List tags = new LinkedList(); 15 | 16 | public int getTagNum() { 17 | return tagNum; 18 | } 19 | 20 | public void setTagNum(int tagNum) { 21 | this.tagNum = tagNum; 22 | } 23 | 24 | public List getTags() { 25 | return tags; 26 | } 27 | 28 | public void setTags(List tags) { 29 | this.tags = tags; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/com/baidu/yun/channel/model/SetTagRequest.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.channel.model; 2 | 3 | import com.baidu.yun.channel.constants.BaiduChannelConstants; 4 | import com.baidu.yun.core.annotation.HttpParamKeyName; 5 | import com.baidu.yun.core.annotation.R; 6 | import com.baidu.yun.core.annotation.RangeRestrict; 7 | 8 | public class SetTagRequest extends ChannelRequest { 9 | 10 | @HttpParamKeyName(name = BaiduChannelConstants.TAG_NAME, param = R.REQUIRE) 11 | @RangeRestrict(minLength = 1, maxLength = 128) 12 | private String tag; 13 | 14 | @HttpParamKeyName(name = BaiduChannelConstants.USER_ID, param = R.OPTIONAL) 15 | @RangeRestrict(minLength = 1, maxLength = 256) 16 | private String userId; 17 | 18 | public String getTag() { 19 | return tag; 20 | } 21 | 22 | public void setTag(String tag) { 23 | this.tag = tag; 24 | } 25 | 26 | public String getUserId() { 27 | return userId; 28 | } 29 | 30 | public void setUserId(String userId) { 31 | this.userId = userId; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/CollectionRestrict.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 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 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.FIELD) 10 | public @interface CollectionRestrict { 11 | 12 | public int minLength() default Integer.MIN_VALUE; 13 | 14 | public int maxLength() default Integer.MAX_VALUE; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/HttpParamKeyName.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 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 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.FIELD) 10 | public @interface HttpParamKeyName { 11 | 12 | public String name(); 13 | 14 | public R param(); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/HttpPathKeyName.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 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 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.FIELD) 10 | public @interface HttpPathKeyName { 11 | 12 | public R param(); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/JSonPath.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 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 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.FIELD) 10 | public @interface JSonPath { 11 | 12 | public String path(); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/R.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 2 | 3 | public enum R { 4 | REQUIRE, OPTIONAL; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/RangeRestrict.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 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 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.FIELD) 10 | public @interface RangeRestrict { 11 | 12 | public long minLength() default Long.MIN_VALUE; 13 | 14 | public long maxLength() default Long.MAX_VALUE; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/annotation/RegexRestrict.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.annotation; 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 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.FIELD) 10 | public @interface RegexRestrict { 11 | 12 | public String regex(); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/callback/YunHttpObservable.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.callback; 2 | 3 | import java.util.List; 4 | 5 | import com.baidu.yun.core.event.YunHttpEvent; 6 | 7 | public interface YunHttpObservable { 8 | 9 | public void addHttpCallback(YunHttpObserver callback); 10 | 11 | public void addBatchHttpCallBack(List callbacks); 12 | 13 | public void removeCallBack(YunHttpObserver callback); 14 | 15 | public void notifyAndCallback(YunHttpEvent event); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/callback/YunHttpObserver.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.callback; 2 | 3 | import com.baidu.yun.core.event.YunHttpEvent; 4 | 5 | public interface YunHttpObserver { 6 | 7 | public void onHandle(YunHttpEvent event); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/config/HttpConfigure.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.config; 2 | 3 | /** 4 | * 5 | * @author renjie 6 | * 7 | */ 8 | public class HttpConfigure { 9 | 10 | public static final int DEFAULT_MAX_RETRY_TIMES = 3; 11 | 12 | public static final int DEFAULT_MAX_TIMEOUT = 10000; // ms 13 | 14 | private int maxRetryTimes = DEFAULT_MAX_RETRY_TIMES; 15 | 16 | private int maxTimeout = DEFAULT_MAX_TIMEOUT; 17 | 18 | private boolean relocationable = true; 19 | 20 | public int getMaxRetryTimes() { 21 | return maxRetryTimes; 22 | } 23 | 24 | public void setMaxRetryTimes(int maxRetryTimes) { 25 | this.maxRetryTimes = maxRetryTimes; 26 | } 27 | 28 | public int getMaxTimeout() { 29 | return maxTimeout; 30 | } 31 | 32 | public void setMaxTimeout(int maxTimeout) { 33 | this.maxTimeout = maxTimeout; 34 | } 35 | 36 | public boolean isRelocationable() { 37 | return relocationable; 38 | } 39 | 40 | public void setRelocationable(boolean relocationable) { 41 | this.relocationable = relocationable; 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/exception/YunHttpClientException.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.exception; 2 | 3 | public class YunHttpClientException extends Exception { 4 | 5 | /** 6 | * 7 | */ 8 | private static final long serialVersionUID = -6129408500549568294L; 9 | 10 | public YunHttpClientException(String msg) { 11 | super(msg); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/filter/CollectionRestrictFilter.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.filter; 2 | 3 | import java.lang.reflect.Field; 4 | import java.util.Map; 5 | 6 | public class CollectionRestrictFilter implements IFieldFilter { 7 | 8 | @Override 9 | public void validate(Field field, Object obj) throws Exception { 10 | // TODO Auto-generated method stub 11 | 12 | } 13 | 14 | @Override 15 | public void mapping(Field field, Object obj, Map map) 16 | throws Exception { 17 | // TODO Auto-generated method stub 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/filter/HttpPathKeyNameFilter.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.filter; 2 | 3 | import java.lang.reflect.Field; 4 | import java.util.Map; 5 | 6 | import com.baidu.yun.core.annotation.HttpPathKeyName; 7 | import com.baidu.yun.core.annotation.R; 8 | 9 | public class HttpPathKeyNameFilter implements IFieldFilter { 10 | 11 | @Override 12 | public void validate(Field field, Object req) throws Exception { 13 | 14 | if (field.isAnnotationPresent(HttpPathKeyName.class)) { 15 | Object obj = field.get(req); 16 | if (obj == null) { 17 | HttpPathKeyName annotation = field 18 | .getAnnotation(HttpPathKeyName.class); 19 | if (annotation.param() == R.REQUIRE) { 20 | throw new Exception(field.getName() 21 | + " is null, default require"); 22 | } 23 | } 24 | } 25 | 26 | } 27 | 28 | @Override 29 | public void mapping(Field field, Object obj, Map map) { 30 | 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/filter/IFieldFilter.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.filter; 2 | 3 | import java.lang.reflect.Field; 4 | import java.util.Map; 5 | 6 | public interface IFieldFilter { 7 | 8 | public void validate(Field field, Object obj) throws Exception; 9 | 10 | public void mapping(Field field, Object obj, Map map) 11 | throws Exception; 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/filter/RangeRestrictFilter.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.filter; 2 | 3 | import java.lang.reflect.Field; 4 | import java.util.Map; 5 | 6 | public class RangeRestrictFilter implements IFieldFilter { 7 | 8 | @Override 9 | public void validate(Field field, Object obj) { 10 | // TODO Auto-generated method stub 11 | 12 | } 13 | 14 | @Override 15 | public void mapping(Field field, Object obj, Map map) { 16 | // TODO Auto-generated method stub 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/filter/RegexRestrictFilter.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.filter; 2 | 3 | import java.lang.reflect.Field; 4 | import java.util.Map; 5 | 6 | public class RegexRestrictFilter implements IFieldFilter { 7 | 8 | @Override 9 | public void validate(Field field, Object obj) { 10 | // TODO Auto-generated method stub 11 | } 12 | 13 | @Override 14 | public void mapping(Field field, Object obj, Map map) { 15 | // TODO Auto-generated method stub 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/log/DefaultYunLogHandler.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.log; 2 | 3 | import java.util.logging.Level; 4 | import java.util.logging.Logger; 5 | 6 | public class DefaultYunLogHandler implements YunLogHandler { 7 | 8 | private Logger logger = Logger.getLogger(DefaultYunLogHandler.class 9 | .getName()); 10 | 11 | public void onHandle(YunLogEvent event) { 12 | // TODO Auto-generated method stub 13 | if (event.getLevel() == YunLogEvent.FATAL) { 14 | logger.log(Level.SEVERE, event.getMessage()); 15 | } else if (event.getLevel() == YunLogEvent.WARNING) { 16 | logger.log(Level.WARNING, event.getMessage()); 17 | } else if (event.getLevel() == YunLogEvent.NOTICE) { 18 | logger.log(Level.INFO, event.getMessage()); 19 | } 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/log/NullYunLogHandler.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.log; 2 | 3 | public class NullYunLogHandler implements YunLogHandler { 4 | 5 | public void onHandle(YunLogEvent event) { 6 | // to nothing 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/log/YunLogEvent.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.log; 2 | 3 | public class YunLogEvent { 4 | 5 | public static final int FATAL = 0; 6 | public static final int WARNING = 1; 7 | public static final int NOTICE = 2; 8 | public static final int INFO = 3; 9 | public static final int DEBUG = 4; 10 | 11 | private int level; 12 | 13 | private String message; 14 | 15 | public YunLogEvent(int level, String message) { 16 | this.level = level; 17 | this.message = message; 18 | } 19 | 20 | public int getLevel() { 21 | return level; 22 | } 23 | 24 | public void setLevel(int level) { 25 | this.level = level; 26 | } 27 | 28 | public String getMessage() { 29 | return message; 30 | } 31 | 32 | public void setMessage(String message) { 33 | this.message = message; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/log/YunLogHandler.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.log; 2 | 3 | public interface YunLogHandler { 4 | 5 | public void onHandle(YunLogEvent event); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/model/BCMSKeyPair.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.model; 2 | 3 | public class BCMSKeyPair { 4 | 5 | private String accessKey; 6 | 7 | private String secretKey; 8 | 9 | public BCMSKeyPair(String accessKey, String secretKey) { 10 | this.accessKey = accessKey; 11 | this.secretKey = secretKey; 12 | } 13 | 14 | public String getAccessKey() { 15 | return accessKey; 16 | } 17 | 18 | public void setAccessKey(String accessKey) { 19 | this.accessKey = accessKey; 20 | } 21 | 22 | public String getSecretKey() { 23 | return secretKey; 24 | } 25 | 26 | public void setSecretKey(String secretKey) { 27 | this.secretKey = secretKey; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/model/HttpRestResponse.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.model; 2 | 3 | public class HttpRestResponse { 4 | 5 | private int httpStatusCode; 6 | 7 | private String jsonResponse; 8 | 9 | public int getHttpStatusCode() { 10 | return httpStatusCode; 11 | } 12 | 13 | public void setHttpStatusCode(int httpStatusCode) { 14 | this.httpStatusCode = httpStatusCode; 15 | } 16 | 17 | public String getJsonResponse() { 18 | return jsonResponse; 19 | } 20 | 21 | public void setJsonResponse(String jsonResponse) { 22 | this.jsonResponse = jsonResponse; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/utility/ReflectionUtility.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.utility; 2 | 3 | public class ReflectionUtility { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/com/baidu/yun/core/utility/YunCommonUtility.java: -------------------------------------------------------------------------------- 1 | package com.baidu.yun.core.utility; 2 | 3 | import java.text.ParseException; 4 | import java.text.SimpleDateFormat; 5 | import java.util.Date; 6 | 7 | public class YunCommonUtility { 8 | 9 | public static long currentTimeSeconds() { 10 | return System.currentTimeMillis() / 1000; 11 | } 12 | 13 | public static String formatFromDate(Date date, String format) { 14 | SimpleDateFormat sdf = new SimpleDateFormat(format); 15 | return sdf.format(date); 16 | } 17 | 18 | public static String formatFromDate(Date date) { 19 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 20 | return sdf.format(date); 21 | } 22 | 23 | public static Date formatFromString(String date) { 24 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 25 | try { 26 | return sdf.parse(date); 27 | } catch (ParseException e) { 28 | // e.printStackTrace(); 29 | } 30 | return null; 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/ehcache/ehcache.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /src/log4j.properties: -------------------------------------------------------------------------------- 1 | #将ibatis log4j运行级别调到DEBUG可以在控制台打印出ibatis运行的sql语句 2 | log4j.rootLogger=debug,stdout,logfile 3 | ### 把日志信息输出到控制台 ### 4 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 5 | #log4j.appender.stdout.Target=System.err 6 | log4j.appender.stdout.layout=org.apache.log4j.SimpleLayout 7 | ### 把日志信息输出到文件:jbit.log ### 8 | log4j.appender.logfile=org.apache.log4j.FileAppender 9 | log4j.appender.logfile.File=D:/springmvc.log 10 | log4j.appender.logfile.layout=org.apache.log4j.PatternLayout 11 | log4j.appender.logfile.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %F %p %m%n 12 | 13 | ###显示SQL语句部分 14 | log4j.logger.com.ibatis=DEBUG 15 | #log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG 16 | #log4j.logger.com.ibatis.common.jdbc.ScriptRunner=DEBUG 17 | #log4j.logger.com.ibatis.sqlmap.engine.impl.SqlMapClientDelegate=DEBUG 18 | #log4j.logger.java.sql.Connection=DEBUG 19 | #log4j.logger.java.sql.Statement=DEBUG 20 | #log4j.logger.java.sql.PreparedStatement=DEBUG -------------------------------------------------------------------------------- /src/mail.properties: -------------------------------------------------------------------------------- 1 | mail.host =smtp.126.com 2 | mail.username =tangzhezi@126.com 3 | mail.password =307032749 4 | -------------------------------------------------------------------------------- /src/org/tang/jpa/controller/lucene/ContentController.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.controller.lucene; 2 | 3 | import org.springframework.stereotype.Controller; 4 | 5 | @Controller("contentController") 6 | public class ContentController { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/org/tang/jpa/controller/system/RegisterController.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.controller.system; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | 6 | 7 | @Controller("registerController") 8 | @RequestMapping("register") 9 | public class RegisterController { 10 | 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/attendance/AttendanceStateDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.attendance; 3 | 4 | import java.util.List; 5 | 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.attendance.AttendanceState; 8 | import org.tang.jpa.dto.attendance.AttendanceStateDTO; 9 | import org.tang.jpa.utils.Page; 10 | 11 | @Repository 12 | public interface AttendanceStateDao { 13 | 14 | public int insertAttendanceState(AttendanceStateDTO dto); 15 | 16 | public int insertRoleAttendanceState(AttendanceStateDTO dto); 17 | 18 | public int updateAttendanceState(AttendanceStateDTO dto); 19 | 20 | public int deleteAttendanceState(String id); 21 | 22 | public Page selectAttendanceStateAll(Page page); 23 | 24 | public List selectAttendanceState(AttendanceStateDTO dto); 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/attendance/AttendanceStateDetailDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.attendance; 3 | 4 | import java.util.List; 5 | 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.attendance.AttendanceStateDetailDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface AttendanceStateDetailDao { 12 | 13 | public int insertAttendanceStateDetail(AttendanceStateDetailDTO dto); 14 | 15 | public int insertRoleAttendanceStateDetail(AttendanceStateDetailDTO dto); 16 | 17 | public int updateAttendanceStateDetail(AttendanceStateDetailDTO dto); 18 | 19 | public int deleteAttendanceStateDetail(String id); 20 | 21 | public Page selectAttendanceStateDetailAll(Page page); 22 | 23 | public List selectAttendanceStateDetail(AttendanceStateDetailDTO dto); 24 | } 25 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/exam/ExamDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.exam; 3 | 4 | import java.util.List; 5 | 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.exam.UserexamDTO; 8 | import org.tang.jpa.dto.exam.UserexamdetailsDTO; 9 | import org.tang.jpa.dto.system.TreeDTO; 10 | import org.tang.jpa.dto.system.UserDTO; 11 | import org.tang.jpa.utils.Page; 12 | 13 | @Repository 14 | public interface ExamDao { 15 | 16 | public List findExamTree(UserDTO dto); 17 | 18 | public int insertUserExam(UserexamDTO userexamDTO); 19 | 20 | public int insertUserExamDetails(List uList); 21 | 22 | public String findUserExamId(UserexamDTO userexamDTO); 23 | 24 | public int updateUserExamDetails(List uList); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/exam/OptionsDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.exam; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.exam.OptionsDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface OptionsDao { 12 | 13 | public int insertOptions(OptionsDTO dto); 14 | 15 | public int updateOptions(OptionsDTO dto); 16 | 17 | public int deleteOptions(String optionsId); 18 | 19 | public Page selectOptionsAll(Page page); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/exam/UserexamDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.exam; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.exam.UserexamDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface UserexamDao { 12 | 13 | public int insertUserexam(UserexamDTO dto); 14 | 15 | public int insertRoleUserexam(UserexamDTO dto); 16 | 17 | public int updateUserexam(UserexamDTO dto); 18 | 19 | public int deleteUserexam(String userexamId); 20 | 21 | public Page selectUserexamAll(Page page); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/exam/UserexamdetailsDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.exam; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.exam.UserexamdetailsDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface UserexamdetailsDao { 12 | 13 | public int insertUserexamdetails(UserexamdetailsDTO dto); 14 | 15 | public int insertRoleUserexamdetails(UserexamdetailsDTO dto); 16 | 17 | public int updateUserexamdetails(UserexamdetailsDTO dto); 18 | 19 | public int deleteUserexamdetails(String userexamdetailsId); 20 | 21 | public Page selectUserexamdetailsAll(Page page); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/mobile/AttendanceDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.mobile; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.mobile.AttendanceDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface AttendanceDao { 12 | 13 | public int insertAttendance(AttendanceDTO dto); 14 | 15 | public int insertRoleAttendance(AttendanceDTO dto); 16 | 17 | public int updateAttendance(AttendanceDTO dto); 18 | 19 | public int deleteAttendance(AttendanceDTO dto); 20 | 21 | public Page selectAttendanceAll(Page page); 22 | 23 | public List selectAttendance(AttendanceDTO dto); 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/mobile/AttendanceGraphDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.mobile; 3 | 4 | import java.util.List; 5 | import org.springframework.stereotype.Repository; 6 | import org.tang.jpa.dto.mobile.AttendanceGraphDTO; 7 | import org.tang.jpa.utils.Page; 8 | 9 | @Repository 10 | public interface AttendanceGraphDao { 11 | 12 | public int insertAttendance(AttendanceGraphDTO dto); 13 | 14 | public int insertRoleAttendance(AttendanceGraphDTO dto); 15 | 16 | public int updateAttendance(AttendanceGraphDTO dto); 17 | 18 | public int deleteAttendance(AttendanceGraphDTO dto); 19 | 20 | public Page selectAttendanceAll(Page page); 21 | 22 | public List selectAttendance(AttendanceGraphDTO dto); 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/mobile/ChatMsgDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.mobile; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.mobile.ChatMsgDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface ChatMsgDao { 12 | 13 | public int insertChatMsg(ChatMsgDTO dto); 14 | 15 | public int insertRoleChatMsg(ChatMsgDTO dto); 16 | 17 | public int updateChatMsg(ChatMsgDTO dto); 18 | 19 | public int deleteChatMsg(String chatMsgId); 20 | 21 | public Page selectChatMsgAll(Page page); 22 | 23 | public List selectChatMsgWaitPush(); 24 | 25 | public List selectPushMachine(ChatMsgDTO dto); 26 | } 27 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/mobile/MobileUserDao.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dao.mobile; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.stereotype.Repository; 6 | import org.tang.jpa.dto.mobile.MobileUserDTO; 7 | import org.tang.jpa.dto.mobile.UserInfoDTO; 8 | 9 | @Repository 10 | public interface MobileUserDao { 11 | 12 | public MobileUserDTO selectMobileUserLoginInfo(MobileUserDTO dto); 13 | 14 | public List queryContactUserInfo(MobileUserDTO udto); 15 | 16 | public int addPushInfo(UserInfoDTO udto); 17 | } 18 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/mobile/TaskWeeklyDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.mobile; 3 | import java.util.List; 4 | 5 | import org.springframework.stereotype.Repository; 6 | import org.tang.jpa.dto.mobile.TaskWeeklyDTO; 7 | import org.tang.jpa.utils.Page; 8 | 9 | @Repository 10 | public interface TaskWeeklyDao { 11 | 12 | public int insertTaskWeekly(TaskWeeklyDTO dto); 13 | 14 | public int insertRoleTaskWeekly(TaskWeeklyDTO dto); 15 | 16 | public int updateTaskWeekly(TaskWeeklyDTO dto); 17 | 18 | public int deleteTaskWeekly(String noticeId); 19 | 20 | public Page selectTaskWeeklyAll(Page page); 21 | 22 | public List queryTaskWeekly(TaskWeeklyDTO udto); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/publicInformation/ArticleDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.publicInformation; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.publicInformation.ArticleDTO; 8 | import org.tang.jpa.dto.publicInformation.PictureDTO; 9 | import org.tang.jpa.utils.Page; 10 | 11 | @Repository 12 | public interface ArticleDao { 13 | 14 | public int insertArticle(ArticleDTO dto); 15 | 16 | public int insertRoleArticle(ArticleDTO dto); 17 | 18 | public int updateArticle(ArticleDTO dto); 19 | 20 | public int deleteArticle(String articleId); 21 | 22 | public Page selectArticleAll(Page page); 23 | 24 | public List showArticleInformationTopFive(String articleType); 25 | 26 | public List previewArticle(ArticleDTO rdto); 27 | 28 | public int insertPics(List picdtoList); 29 | 30 | public List showPicInformationTopFive(); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/publicInformation/EmailDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.publicInformation; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.publicInformation.EmailDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface EmailDao { 12 | 13 | public int insertEmail(EmailDTO dto); 14 | 15 | public int insertRoleEmail(EmailDTO dto); 16 | 17 | public int updateEmail(EmailDTO dto); 18 | 19 | public int deleteEmail(String emailId); 20 | 21 | public Page selectEmailAll(Page page); 22 | 23 | public List selectEmailAllUnSend(EmailDTO dto); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/publicInformation/OpinionDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.publicInformation; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.publicInformation.OpinionDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface OpinionDao { 12 | 13 | public int insertOpinion(OpinionDTO dto); 14 | 15 | public int insertRoleOpinion(OpinionDTO dto); 16 | 17 | public int updateOpinion(OpinionDTO dto); 18 | 19 | public int deleteOpinion(String opinionId); 20 | 21 | public Page selectOpinionAll(Page page); 22 | 23 | public OpinionDTO selectOpinion(String opinionid); 24 | 25 | public int updateApproveOpinion(OpinionDTO rdto); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/publicInformation/VideoDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.publicInformation; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.publicInformation.VideoDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface VideoDao { 12 | 13 | public int insertVideo(VideoDTO dto); 14 | 15 | public int insertRoleVideo(VideoDTO dto); 16 | 17 | public int updateVideo(VideoDTO dto); 18 | 19 | public int deleteVideo(String videoId); 20 | 21 | public Page selectVideoAll(Page page); 22 | 23 | public List findVideoTree(); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/CommonDao.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dao.system; 2 | 3 | import org.springframework.stereotype.Repository; 4 | import org.tang.jpa.utils.Page; 5 | 6 | @Repository 7 | public interface CommonDao { 8 | 9 | public Page selectDictory(Page page) ; 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/DepartmentDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.system; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.system.DepartmentDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface DepartmentDao { 12 | 13 | public int insertDepartment(DepartmentDTO dto); 14 | 15 | public int insertRoleDepartment(DepartmentDTO dto); 16 | 17 | public int updateDepartment(DepartmentDTO dto); 18 | 19 | public int deleteDepartment(String departmentId); 20 | 21 | public Page selectDepartmentAll(Page page); 22 | 23 | public Page queryUpperDepartment(Page page); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/LoginLogDao.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dao.system; 2 | 3 | import org.springframework.stereotype.Repository; 4 | import org.tang.jpa.dto.system.LoginLogDTO; 5 | import org.tang.jpa.utils.Page; 6 | 7 | @Repository 8 | public interface LoginLogDao { 9 | 10 | public int insertLoginLog(LoginLogDTO dto); 11 | 12 | public Page selectLoginLogDTO(Page page); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/NoticeDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.system; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | 7 | import org.springframework.stereotype.Repository; 8 | import org.tang.jpa.dto.system.NoticeDTO; 9 | import org.tang.jpa.utils.Page; 10 | 11 | @Repository 12 | public interface NoticeDao { 13 | 14 | public int insertNotice(NoticeDTO dto); 15 | 16 | public int insertRoleNotice(NoticeDTO dto); 17 | 18 | public int updateNotice(NoticeDTO dto); 19 | 20 | public int deleteNotice(String noticeId); 21 | 22 | public Page selectNoticeAll(Page page); 23 | 24 | public List queryNotice(NoticeDTO udto); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/OperateLogDao.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dao.system; 2 | 3 | import org.springframework.stereotype.Repository; 4 | import org.tang.jpa.dto.system.OperateLogDTO; 5 | import org.tang.jpa.utils.Page; 6 | 7 | @Repository 8 | public interface OperateLogDao { 9 | 10 | public int insertOperateLog(OperateLogDTO dto); 11 | 12 | public Page selectOperateLogDTO(Page page); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/OrganizationDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.system; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.system.OrganizationDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface OrganizationDao { 12 | 13 | public int insertOrganization(OrganizationDTO dto); 14 | 15 | public int insertRoleOrganization(OrganizationDTO dto); 16 | 17 | public int updateOrganization(OrganizationDTO dto); 18 | 19 | public int deleteOrganization(String organizationId); 20 | 21 | public Page selectOrganizationAll(Page page); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/ResourceDao.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dao.system; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.stereotype.Repository; 6 | import org.tang.jpa.dto.system.ResourceDTO; 7 | import org.tang.jpa.dto.system.UserDTO; 8 | import org.tang.jpa.utils.Page; 9 | 10 | @Repository 11 | public interface ResourceDao { 12 | 13 | public int insertResource(ResourceDTO dto); 14 | 15 | public int insertRoleResource(ResourceDTO dto); 16 | 17 | public int updateResource(ResourceDTO dto); 18 | 19 | public int deleteResource(String resourceid); 20 | 21 | public Page selectResourceAll(Page page); 22 | 23 | public List selectResourceOfUser(ResourceDTO dto); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/RoleDao.java: -------------------------------------------------------------------------------- 1 | 2 | package org.tang.jpa.dao.system; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | import org.springframework.stereotype.Repository; 7 | import org.tang.jpa.dto.system.RoleDTO; 8 | import org.tang.jpa.dto.system.TreeDTO; 9 | import org.tang.jpa.dto.system.UserDTO; 10 | import org.tang.jpa.utils.Page; 11 | 12 | @Repository 13 | public interface RoleDao { 14 | 15 | public int insertRole(RoleDTO dto); 16 | 17 | public int insertRoleRole(RoleDTO dto); 18 | 19 | public int updateRole(RoleDTO dto); 20 | 21 | public int deleteRole(String roleId); 22 | 23 | public Page selectRoleAll(Page page); 24 | 25 | public List findRoleAuthTree(UserDTO dto); 26 | 27 | public int saveRoleAuth(List l); 28 | 29 | public int deleteRoleAuth(String roleid); 30 | 31 | } 32 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dao/system/UserDao.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dao.system; 2 | 3 | import org.springframework.stereotype.Repository; 4 | import org.tang.jpa.dto.system.UserDTO; 5 | import org.tang.jpa.utils.Page; 6 | 7 | @Repository 8 | public interface UserDao { 9 | 10 | public int insertUser(UserDTO dto); 11 | 12 | public int insertUserRole(UserDTO dto); 13 | 14 | public int updateUser(UserDTO dto); 15 | 16 | public int updateUserRole(UserDTO dto); 17 | 18 | public int deleteUser(String userId); 19 | 20 | public int deleteUserRole(String userId); 21 | 22 | public Page selectUserAll(Page page); 23 | 24 | public UserDTO selectUserLoginInfo(UserDTO dto); 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/lucene/FileStuff.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.lucene; 2 | /** 3 | * 文件资料 4 | * @author alex 5 | * 6 | */ 7 | public class FileStuff extends Stuff{ 8 | private String filePath; 9 | private String contentFieldName; 10 | public String getContentFieldName() { 11 | return contentFieldName; 12 | } 13 | 14 | public void setContentFieldName(String contentFieldName) { 15 | this.contentFieldName = contentFieldName; 16 | } 17 | 18 | public String getFilePath() { 19 | return filePath; 20 | } 21 | 22 | public void setFilePath(String filePath) { 23 | this.filePath = filePath; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/lucene/Stuff.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.lucene; 2 | 3 | import java.util.Map; 4 | /** 5 | * 文档库资料对象的基类 6 | * @author alex 7 | * 8 | */ 9 | public class Stuff { 10 | private Map attacheData; 11 | 12 | public Map getAttacheData() { 13 | return attacheData; 14 | } 15 | 16 | public void setAttacheData(Map attacheData) { 17 | this.attacheData = attacheData; 18 | }; 19 | 20 | } -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/mobile/MobileBaseRepDTO.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.mobile; 2 | 3 | public class MobileBaseRepDTO { 4 | 5 | private String sessionKey; 6 | private int msgFlag; 7 | private String response; 8 | 9 | public String getSessionKey() { 10 | return sessionKey; 11 | } 12 | public void setSessionKey(String sessionKey) { 13 | this.sessionKey = sessionKey; 14 | } 15 | public int getMsgFlag() { 16 | return msgFlag; 17 | } 18 | public void setMsgFlag(int msgFlag) { 19 | this.msgFlag = msgFlag; 20 | } 21 | public String getResponse() { 22 | return response; 23 | } 24 | public void setResponse(String response) { 25 | this.response = response; 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/system/DictoryDTO.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.system; 2 | 3 | public class DictoryDTO { 4 | private String id; 5 | private String name; 6 | private String code; 7 | public String getId() { 8 | return id; 9 | } 10 | public void setId(String id) { 11 | this.id = id; 12 | } 13 | public String getName() { 14 | return name; 15 | } 16 | public void setName(String name) { 17 | this.name = name; 18 | } 19 | public String getCode() { 20 | return code; 21 | } 22 | public void setCode(String code) { 23 | this.code = code; 24 | } 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/system/RoleDTO.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.system; 2 | 3 | 4 | public class RoleDTO { 5 | 6 | private String roleId; 7 | 8 | private String roleName; 9 | 10 | private String orgId; 11 | 12 | private String orgName; 13 | 14 | public String getOrgId() { 15 | return orgId; 16 | } 17 | public void setOrgId(String orgId) { 18 | this.orgId = orgId; 19 | } 20 | public String getOrgName() { 21 | return orgName; 22 | } 23 | public void setOrgName(String orgName) { 24 | this.orgName = orgName; 25 | } 26 | public String getRoleId() { 27 | return roleId; 28 | } 29 | public void setRoleId(String roleId) { 30 | this.roleId = roleId; 31 | } 32 | public String getRoleName() { 33 | return roleName; 34 | } 35 | public void setRoleName(String roleName) { 36 | this.roleName = roleName; 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/system/RoleResourceDTO.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.system; 2 | 3 | 4 | public class RoleResourceDTO { 5 | 6 | private String currentroleid; 7 | 8 | private String roleid; 9 | 10 | private String resourceid; 11 | 12 | public String getRoleid() { 13 | return roleid; 14 | } 15 | 16 | public void setRoleid(String roleid) { 17 | this.roleid = roleid; 18 | } 19 | 20 | public String getResourceid() { 21 | return resourceid; 22 | } 23 | 24 | public void setResourceid(String resourceid) { 25 | this.resourceid = resourceid; 26 | } 27 | 28 | public String getCurrentroleid() { 29 | return currentroleid; 30 | } 31 | 32 | public void setCurrentroleid(String currentroleid) { 33 | this.currentroleid = currentroleid; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/org/tang/jpa/dto/system/TreeDTO.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.dto.system; 2 | 3 | public class TreeDTO { 4 | private String id; 5 | private String pid; 6 | private String name; 7 | private String checked; 8 | private String iconSkin; 9 | private String url; 10 | private String bak; 11 | 12 | public String getId() { 13 | return id; 14 | } 15 | public void setId(String id) { 16 | this.id = id; 17 | } 18 | public String getPid() { 19 | return pid; 20 | } 21 | public void setPid(String pid) { 22 | this.pid = pid; 23 | } 24 | public String getName() { 25 | return name; 26 | } 27 | public void setName(String name) { 28 | this.name = name; 29 | } 30 | public String getChecked() { 31 | return checked; 32 | } 33 | public void setChecked(String checked) { 34 | this.checked = checked; 35 | } 36 | public String getIconSkin() { 37 | return iconSkin; 38 | } 39 | public void setIconSkin(String iconSkin) { 40 | this.iconSkin = iconSkin; 41 | } 42 | public String getUrl() { 43 | return url; 44 | } 45 | public void setUrl(String url) { 46 | this.url = url; 47 | } 48 | public String getBak() { 49 | return bak; 50 | } 51 | public void setBak(String bak) { 52 | this.bak = bak; 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /src/org/tang/jpa/interceptor/LoginInterceptor.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.interceptor; 2 | 3 | import org.springframework.ui.ModelMap; 4 | import org.springframework.web.context.request.WebRequest; 5 | import org.springframework.web.context.request.WebRequestInterceptor; 6 | 7 | public class LoginInterceptor implements WebRequestInterceptor { 8 | 9 | /** 10 | * 在请求处理之前执行,该方法主要是用于准备资源数据的,然后可以把它们当做请求属性放到WebRequest中 11 | */ 12 | @Override 13 | public void preHandle(WebRequest request) throws Exception { 14 | System.out.println("Login..............................."); 15 | 16 | } 17 | 18 | /** 19 | * 该方法将在Controller执行之后,返回视图之前执行,ModelMap表示请求Controller处理之后返回的Model对象,所以可以在 20 | * 这个方法中修改ModelMap的属性,从而达到改变返回的模型的效果。 21 | */ 22 | @Override 23 | public void postHandle(WebRequest request, ModelMap map) throws Exception { 24 | for (String key:map.keySet()) 25 | System.out.println(key + "-------------------------");; 26 | } 27 | 28 | /** 29 | * 该方法将在整个请求完成之后,也就是说在视图渲染之后进行调用,主要用于进行一些资源的释放 30 | */ 31 | @Override 32 | public void afterCompletion(WebRequest request, Exception exception) 33 | throws Exception { 34 | System.out.println(exception + "-=-=--=--=-=-=-=-=-=-=-=-==-=--=-=-=-="); 35 | } 36 | 37 | } -------------------------------------------------------------------------------- /src/org/tang/jpa/service/system/CommonService.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.service.system; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.stereotype.Service; 5 | import org.tang.jpa.dao.system.CommonDao; 6 | import org.tang.jpa.utils.Page; 7 | @Service 8 | public class CommonService { 9 | @Autowired 10 | private CommonDao commonDao; 11 | 12 | public Page queryDictory(Page page) { 13 | Page pageList = (Page) commonDao.selectDictory(page); 14 | if(pageList!=null && pageList.getResults().size() > 0 ){ 15 | pageList.setPageNo(page.getPageNo()); 16 | pageList.setPageSize(page.getPageSize()); 17 | pageList.setTotalPage(page.getTotalPage()); 18 | pageList.setTotalRecord(page.getTotalRecord()); 19 | } 20 | return pageList; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/org/tang/jpa/test/Test.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.test; 2 | 3 | public class Test { 4 | 5 | /** 6 | * @param args 7 | */ 8 | public static void main(String[] args) { 9 | String date = "20140123"; 10 | 11 | System.out.println(date.substring(6, 8)); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/Constants.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | public class Constants { 4 | public static final String CURRENT_USER = "user"; 5 | } 6 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/CurrentUser.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2007 the original author or authors. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package org.tang.jpa.utils; 18 | 19 | import java.lang.annotation.*; 20 | 21 | 22 | /** 23 | *

绑定当前登录的用户

24 | *

不同于@ModelAttribute

25 | */ 26 | @Target({ElementType.PARAMETER}) 27 | @Retention(RetentionPolicy.RUNTIME) 28 | @Documented 29 | public @interface CurrentUser { 30 | 31 | /** 32 | * 当前用户在request中的名字 33 | * 34 | * @return 35 | */ 36 | String value() default Constants.CURRENT_USER; 37 | 38 | } 39 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/Dialect.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | /** 4 | * @author xdwang 5 | * 6 | * @ceate 2012-12-19 下午7:45:24 7 | * 8 | * @description 数据库方言接口 9 | * 10 | */ 11 | 12 | public interface Dialect { 13 | 14 | public static enum Type { 15 | MYSQL { 16 | public String getValue() { 17 | return "mysql"; 18 | } 19 | }, 20 | MSSQL { 21 | public String getValue() { 22 | return "sqlserver"; 23 | } 24 | }, 25 | ORACLE { 26 | public String getValue() { 27 | return "oracle"; 28 | } 29 | } 30 | } 31 | 32 | /** 33 | * @descrption 获取分页SQL 34 | * @author xdwang 35 | * @create 2012-12-19下午7:48:44 36 | * @param sql 37 | * 原始查询SQL 38 | * @param offset 39 | * 开始记录索引(从零开始) 40 | * @param limit 41 | * 每页记录大小 42 | * @return 返回数据库相关的分页SQL语句 43 | */ 44 | public abstract String getPageSql(String sql, int offset, int limit); 45 | 46 | } 47 | 48 | 49 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/MyConstants.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | public enum MyConstants { 4 | 5 | SUCCESS("操作成功"), FAIL("操作失败"), 6 | ADDSUCCESS("添加成功"), ADDFAIL("添加失败"), 7 | MODIFYSUCCESS("修改成功"), MODIFYFAIL("修改失败"), 8 | DELSUCCESS("删除成功"), DELFAIL("删除失败"), 9 | AUTHSUCCESS("授权成功"), AUTHFAIL("授权失败"), 10 | EXIST("已经存成"), 11 | HADAPPROVAL("已经审核,不能修改或者删除"), 12 | APPROVALSUCCESS("审核通过"), 13 | APPROVALFAIL("审核不成功"), 14 | MALE("男"), FEMALE("女"); 15 | 16 | private final String name; 17 | 18 | private MyConstants(String name) { 19 | this.name = name; 20 | } 21 | 22 | public String getName() { 23 | return this.name; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/MySql5Dialect.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | /** 4 | * @author xdwang 5 | * 6 | * @ceate 2012-12-19 下午7:50:44 7 | * 8 | * @description MySQL数据库实现 9 | * 10 | */ 11 | public class MySql5Dialect implements Dialect { 12 | 13 | protected static final String SQL_END_DELIMITER = ";"; 14 | 15 | public String getPageSql(String sql, boolean hasOffset) { 16 | return MySql5PageHepler.getPageSql(sql, -1, -1); 17 | } 18 | 19 | public String getPageSql(String sql, int offset, int limit) { 20 | return MySql5PageHepler.getPageSql(sql, offset, limit); 21 | } 22 | 23 | public boolean supportsLimit() { 24 | return true; 25 | } 26 | } -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/OracleDialect.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | /** 4 | * @author xdwang 5 | * 6 | * @ceate 2012-12-19 下午7:54:56 7 | * 8 | * @description Oracle数据库实现 9 | * 10 | */ 11 | public class OracleDialect implements Dialect { 12 | 13 | public String getPageSql(String sql, int offset, int limit) { 14 | sql = sql.trim(); 15 | boolean isForUpdate = false; 16 | if (sql.toLowerCase().endsWith(" for update")) { 17 | sql = sql.substring(0, sql.length() - 11); 18 | isForUpdate = true; 19 | } 20 | 21 | StringBuffer pageSql = new StringBuffer(sql.length() + 100); 22 | pageSql.append("select * from ( select row_.*, rownum rownum_ from ( "); 23 | pageSql.append(sql); 24 | pageSql.append(" ) row_ ) where rownum_ > " + offset + " and rownum_ <= " + (offset + limit)); 25 | if (isForUpdate) { 26 | pageSql.append(" for update"); 27 | } 28 | return pageSql.toString(); 29 | } 30 | 31 | } 32 | 33 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/SQLServerDialect.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | /** 4 | * @author xdwang 5 | * 6 | * @ceate 2012-12-19 下午7:53:14 7 | * 8 | * @description SQLServer数据库实现 9 | * 10 | */ 11 | public class SQLServerDialect implements Dialect { 12 | 13 | public String getPageSql(String sql, int offset, int limit) { 14 | sql = sql.trim(); 15 | StringBuffer pageSql = new StringBuffer(sql.length() + 100); 16 | // 其实这里还是有一点问题的,就是排序问题,指定死了,有解决的提供一下,等复习到Hibernate看看Hibernat内部是如何实现的。 17 | pageSql.append("select * from(select a.*,row_number() over (order by id desc) rownum from( "); 18 | pageSql.append(sql); 19 | pageSql.append(") a )b where rownum> " + offset + " and rownum <= " + (offset + limit)); 20 | return pageSql.toString(); 21 | } 22 | 23 | } 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/org/tang/jpa/utils/UploadFile.java: -------------------------------------------------------------------------------- 1 | package org.tang.jpa.utils; 2 | 3 | import org.springframework.web.multipart.commons.CommonsMultipartFile; 4 | 5 | public class UploadFile { 6 | 7 | private String name; 8 | private CommonsMultipartFile upload; 9 | private String filePath; 10 | 11 | public CommonsMultipartFile getUpload() { 12 | return upload; 13 | } 14 | public void setUpload(CommonsMultipartFile upload) { 15 | this.upload = upload; 16 | } 17 | public String getName() { 18 | return name; 19 | } 20 | public void setName(String name) { 21 | this.name = name; 22 | } 23 | public String getFilePath() { 24 | return filePath; 25 | } 26 | public void setFilePath(String filePath) { 27 | this.filePath = filePath; 28 | } 29 | } --------------------------------------------------------------------------------