├── .gitignore ├── dem ├── demo-shiro-interface ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── xinwei │ ├── common │ └── page │ │ ├── Columns.java │ │ ├── DynamicSpecifications.java │ │ ├── Order.java │ │ ├── Pagination.java │ │ ├── PaginationResult.java │ │ ├── Search.java │ │ └── SpecificationUtil.java │ ├── service │ ├── EntityService.java │ ├── ShiroRoleService.java │ └── ShiroUserService.java │ ├── shirofunction │ ├── Function.java │ ├── FunctionService.java │ ├── FunctionTreeBean.java │ ├── RoleService.java │ ├── ShiroRole.java │ ├── ShiroUser.java │ └── UserRoleListCheck.java │ └── utils │ ├── ArraysUtil.java │ ├── Collections3.java │ ├── Constants.java │ ├── ConvertUtils.java │ ├── Digests.java │ ├── Encodes.java │ ├── Exceptions.java │ ├── GFString.java │ ├── Hibernates.java │ ├── ObjectToObject.java │ ├── ReflectionUtils.java │ ├── Reflections.java │ ├── ResponseJson.java │ ├── SearchFilter.java │ └── StringUtil.java ├── demo-shiro-service ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── xinwei │ ├── dao │ ├── BaseDao.java │ ├── FunctionDao.java │ ├── ShiroRoleDao.java │ └── ShiroUserDao.java │ └── service │ └── impl │ ├── EntityServiceImpl.java │ ├── FunctionServiceImpl.java │ ├── ShiroRoleServiceImpl.java │ └── ShiroUserServiceImpl.java ├── demo-shiro-web ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── xinwei │ │ ├── ServerApplication.java │ │ ├── common │ │ ├── RedisConfig.java │ │ └── RedisUtil.java │ │ ├── control │ │ ├── SysController.java │ │ └── UserController.java │ │ └── shiro │ │ ├── AjaxAuthorizationFilter.java │ │ ├── CustomShiroSessionDAO.java │ │ ├── FreemarkerConfiguration.java │ │ ├── JedisShiroSessionRepository.java │ │ ├── MShiroFilterFactoryBean.java │ │ ├── MyShiroRealm.java │ │ ├── RedisCache.java │ │ ├── RedisCacheManager.java │ │ ├── ShiroConfiguration.java │ │ ├── ShiroSessionRepository.java │ │ ├── ShiroTagFreeMarkerConfigurer.java │ │ └── tag │ │ ├── AuthenticatedTag.java │ │ ├── GuestTag.java │ │ ├── HasAnyRolesTag.java │ │ ├── HasPermissionTag.java │ │ ├── HasRoleTag.java │ │ ├── LacksPermissionTag.java │ │ ├── LacksRoleTag.java │ │ ├── NotAuthenticatedTag.java │ │ ├── PermissionTag.java │ │ ├── PrincipalTag.java │ │ ├── RoleTag.java │ │ ├── SecureTag.java │ │ ├── ShiroTags.java │ │ ├── UserTag.java │ │ └── UsernameTag.java │ └── resources │ ├── application.properties │ ├── application.yml │ ├── ehcache.xml │ ├── log4j.properties │ ├── static │ └── media │ │ ├── admin │ │ └── sysFunctionManager │ │ │ ├── function-manager.js │ │ │ └── role-manager.js │ │ ├── bootstrap-3.3.4 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── css │ │ ├── DT_bootstrap.css │ │ ├── about-us.css │ │ ├── animate.css │ │ ├── blog.css │ │ ├── blue.css │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap-modal.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap-responsive1.min.css │ │ ├── bootstrap-tag.css │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap-toggle-buttons.css │ │ ├── bootstrap-tree.css │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap.min.css │ │ ├── brown.css │ │ ├── chosen.css │ │ ├── clockface.css │ │ ├── colorpicker.css │ │ ├── coming-soon.css │ │ ├── common.css │ │ ├── datepicker.css │ │ ├── daterangepicker.css │ │ ├── datetimepicker.css │ │ ├── default.css │ │ ├── dropzone.css │ │ ├── email.css │ │ ├── error.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── forgetpwd.css │ │ ├── fullcalendar.css │ │ ├── glyphicons.css │ │ ├── grey.css │ │ ├── halflings.css │ │ ├── inbox.css │ │ ├── invoice.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery.easy-pie-chart.css │ │ ├── jquery.fancybox.css │ │ ├── jquery.fileupload-ui.css │ │ ├── jquery.gritter.css │ │ ├── jquery.nestable.css │ │ ├── jquery.tagsinput.css │ │ ├── jquery.ui.slider.css │ │ ├── jqvmap.css │ │ ├── light.css │ │ ├── lock.css │ │ ├── login-2016-10-13.css │ │ ├── login-soft.css │ │ ├── login.css │ │ ├── multi-select-metro.css │ │ ├── news.css │ │ ├── pricing-tables.css │ │ ├── print.css │ │ ├── profile.css │ │ ├── promo.css │ │ ├── purple.css │ │ ├── regist.css │ │ ├── search.css │ │ ├── select2_metro.css │ │ ├── style-metro.css │ │ ├── style-non-responsive.css │ │ ├── style-responsive.css │ │ ├── style.css │ │ ├── timeline.css │ │ ├── timepicker.css │ │ └── uniform.default.css │ │ ├── image │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ ├── KwPYo.jpg │ │ ├── alpha.png │ │ ├── amazon.png │ │ ├── animated-overlay.gif │ │ ├── avatar.png │ │ ├── avatar1.jpg │ │ ├── avatar1_small.jpg │ │ ├── avatar2.jpg │ │ ├── avatar3.jpg │ │ ├── behance.png │ │ ├── bg-input-focus.png │ │ ├── bg-input.png │ │ ├── bg-opacity.png │ │ ├── bg-white-lock.png │ │ ├── bg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ │ ├── blank.gif │ │ ├── blogger.png │ │ ├── bstree-halflings.png │ │ ├── chosen-sprite.png │ │ ├── common │ │ │ ├── icons.png │ │ │ ├── it1.jpg │ │ │ ├── it3.jpg │ │ │ ├── itbg.jpg │ │ │ ├── itbg0.jpg │ │ │ ├── logo.jpg │ │ │ └── logo.png │ │ ├── css │ │ ├── datatable-row-openclose.png │ │ ├── deviantart.png │ │ ├── dribbble.png │ │ ├── dropbox.png │ │ ├── earth.jpg │ │ ├── evernote.png │ │ ├── facebook.png │ │ ├── fancybox_loading.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ ├── favicon.ico │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── forrst.png │ │ ├── github.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── glyphicons-regular.eot │ │ ├── glyphicons-regular.svg │ │ ├── glyphicons-regular.ttf │ │ ├── glyphicons-regular.woff │ │ ├── glyphicons-white.png │ │ ├── glyphicons-white.svg │ │ ├── glyphicons.png │ │ ├── glyphicons_halflings-white.png │ │ ├── glyphicons_halflings-white.svg │ │ ├── glyphicons_halflings.png │ │ ├── glyphicons_halflings.svg │ │ ├── glyphiconshalflings-regular.eot │ │ ├── glyphiconshalflings-regular.svg │ │ ├── glyphiconshalflings-regular.ttf │ │ ├── glyphiconshalflings-regular.woff │ │ ├── googleplus.png │ │ ├── gritter-light.png │ │ ├── gritter.png │ │ ├── hor-menu-search-close-white.png │ │ ├── hor-menu-search-close.png │ │ ├── hor-menu-search.png │ │ ├── hue.png │ │ ├── icon-color-close.png │ │ ├── icon-color.png │ │ ├── icon-img-down.png │ │ ├── icon-img-up.png │ │ ├── ie-spacer.gif │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ ├── img1.png │ │ ├── img1_2.png │ │ ├── img2.png │ │ ├── img3.png │ │ ├── img4.png │ │ ├── inbox-nav-arrow-blue.png │ │ ├── instagram.png │ │ ├── iphone.png │ │ ├── item_img.jpg │ │ ├── item_img1.jpg │ │ ├── jolicloud.png │ │ ├── js │ │ ├── last-fm.png │ │ ├── linkedin.png │ │ ├── loading.gif │ │ ├── logo-big.png │ │ ├── logo.png │ │ ├── logo_azteca.jpg │ │ ├── logo_conquer.jpg │ │ ├── logo_metronic.jpg │ │ ├── menu-toggler.png │ │ ├── overlay-icon.png │ │ ├── photo1.jpg │ │ ├── photo2.jpg │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── photo5.jpg │ │ ├── photo6.jpg │ │ ├── picasa.png │ │ ├── pintrest.png │ │ ├── portlet-collapse-icon-white.png │ │ ├── portlet-collapse-icon.png │ │ ├── portlet-config-icon-white.png │ │ ├── portlet-config-icon.png │ │ ├── portlet-expand-icon-white.png │ │ ├── portlet-expand-icon.png │ │ ├── portlet-reload-icon-white.png │ │ ├── portlet-reload-icon.png │ │ ├── portlet-remove-icon-white.png │ │ ├── portlet-remove-icon.png │ │ ├── preview_02.png │ │ ├── preview_03.png │ │ ├── preview_04.png │ │ ├── preview_05.png │ │ ├── preview_06.png │ │ ├── preview_07.png │ │ ├── preview_08.png │ │ ├── preview_09.png │ │ ├── preview_10.png │ │ ├── preview_11.png │ │ ├── preview_12.png │ │ ├── preview_13.png │ │ ├── preview_14.png │ │ ├── preview_15.png │ │ ├── preview_16.png │ │ ├── preview_17.png │ │ ├── profile-img.png │ │ ├── profile.jpg │ │ ├── progressbar.gif │ │ ├── remove-icon-small.png │ │ ├── rss.png │ │ ├── saturation.png │ │ ├── search-icon.png │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ ├── select2x2.png │ │ ├── sidebar-menu-arrow.png │ │ ├── sidebar-search-close.png │ │ ├── sidebar-toggler.jpg │ │ ├── skype.png │ │ ├── social_facebook.png │ │ ├── social_googleplus.png │ │ ├── social_linkedin.png │ │ ├── social_rss.png │ │ ├── social_twitter.png │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── sort_desc_disabled.png │ │ ├── spotify.png │ │ ├── sprite.png │ │ ├── spritemap.png │ │ ├── spritemap@2x.png │ │ ├── stumbleupon.png │ │ ├── switch.png │ │ ├── syncfusion-icons-white.png │ │ ├── syncfusion-icons.png │ │ ├── tumblr.png │ │ ├── twitter.png │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── vimeo.png │ │ ├── vk.png │ │ ├── walmart.png │ │ ├── wordpress.png │ │ ├── xing.png │ │ ├── yahoo.png │ │ └── youtube.png │ │ ├── js │ │ ├── DT_bootstrap.js │ │ ├── additional-methods.min.js │ │ ├── app.js │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-datetimepicker.js │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-modalmanager.js │ │ ├── bootstrap-rtl.min.js │ │ ├── bootstrap-tag.js │ │ ├── bootstrap-timepicker.js │ │ ├── bootstrap-tree.js │ │ ├── bootstrap-wysihtml5.js │ │ ├── bootstrap.min.js │ │ ├── breakpoints.js │ │ ├── breakpoints.min.js │ │ ├── calendar.js │ │ ├── canvas-to-blob.min.js │ │ ├── charts.js │ │ ├── chosen.jquery.min.js │ │ ├── ckeditor.js │ │ ├── clockface.js │ │ ├── coming-soon.js │ │ ├── common.js │ │ ├── contact-us.js │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── extensions │ │ │ │ ├── AutoFill │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ ├── ColReorder │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_save.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ ├── ColVis │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ ├── FixedColumns │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ ├── FixedHeader │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ ├── KeyTable │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ └── simple.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ ├── Responsive │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ ├── Scroller │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ └── TableTools │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ ├── examples │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── button_text.html │ │ │ │ │ ├── collection.html │ │ │ │ │ ├── defaults.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ ├── plug-in.html │ │ │ │ │ ├── select_column.html │ │ │ │ │ ├── select_multi.html │ │ │ │ │ ├── select_os.html │ │ │ │ │ ├── select_single.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── swf_path.html │ │ │ │ │ ├── images │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ │ ├── js │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.css │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.dataTables_themeroller.css │ │ ├── date.js │ │ ├── daterangepicker.js │ │ ├── dropzone.js │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── forget-password.js │ │ ├── form-components.js │ │ ├── form-fileupload.js │ │ ├── form-samples.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── fullcalendar.min.js │ │ ├── gallery.js │ │ ├── gmaps.js │ │ ├── inbox.js │ │ ├── index.js │ │ ├── information.js │ │ ├── jquery-1.10.1.min.js │ │ ├── jquery-1.8.3.min.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-migrate-1.2.1.min.js │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-validate │ │ │ ├── images │ │ │ │ ├── checked.gif │ │ │ │ └── unchecked.gif │ │ │ ├── jquery.validate.css │ │ │ ├── jquery.validate.min.js │ │ │ └── messages_cn.js │ │ ├── jquery.backstretch.min.js │ │ ├── jquery.blockui.min.js │ │ ├── jquery.bootpag.min.js │ │ ├── jquery.bootstrap.wizard.min.js │ │ ├── jquery.cookie.min.js │ │ ├── jquery.countdown.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.easy-pie-chart.js │ │ ├── jquery.fancybox.pack.js │ │ ├── jquery.fileupload-fp.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.gritter.js │ │ ├── jquery.iframe-transport.js │ │ ├── jquery.input-ip-address-control-1.0.min.js │ │ ├── jquery.inputmask.bundle.min.js │ │ ├── jquery.knob.js │ │ ├── jquery.multi-select.js │ │ ├── jquery.nestable.js │ │ ├── jquery.pulsate.min.js │ │ ├── jquery.slimscroll.min.js │ │ ├── jquery.sparkline.min.js │ │ ├── jquery.tagsinput.min.js │ │ ├── jquery.toggle.buttons.js │ │ ├── jquery.ui.widget.js │ │ ├── jquery.uniform.min.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.vmap.europe.js │ │ ├── jquery.vmap.germany.js │ │ ├── jquery.vmap.js │ │ ├── jquery.vmap.russia.js │ │ ├── jquery.vmap.sampledata.js │ │ ├── jquery.vmap.usa.js │ │ ├── jquery.vmap.world.js │ │ ├── jquery.xdr-transport.js │ │ ├── layer │ │ │ ├── extend │ │ │ │ └── layer.ext.js │ │ │ ├── layer.js │ │ │ └── skin │ │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ │ ├── layer.css │ │ │ │ └── layer.ext.css │ │ ├── load-image.min.js │ │ ├── lock.js │ │ ├── login-soft.js │ │ ├── login.js │ │ ├── loginfo.js │ │ ├── maps-google.js │ │ ├── maps-vector.js │ │ ├── moment.js │ │ ├── portlet-draggable.js │ │ ├── respond.js │ │ ├── respond.min.js │ │ ├── scada-plc-dcs-bak.js │ │ ├── search.js │ │ ├── select2.min.js │ │ ├── table-advanced.js │ │ ├── table-editable.js │ │ ├── table-managed-bak.js │ │ ├── table-managed.js │ │ ├── tmpl.min.js │ │ ├── ui-general.js │ │ ├── ui-jqueryui.js │ │ ├── ui-modals.js │ │ ├── ui-nestable.js │ │ ├── ui-sliders.js │ │ ├── ui-tree.js │ │ ├── validation │ │ │ ├── bootstrapValidator.js │ │ │ └── bootstrapValidator.min.js │ │ └── wysihtml5-0.3.0.js │ │ ├── kindeditor │ │ ├── kindeditor-all-min.js │ │ ├── kindeditor-all.js │ │ ├── lang │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ ├── ko.js │ │ │ ├── ru.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── plugins │ │ │ ├── anchor │ │ │ │ └── anchor.js │ │ │ ├── autoheight │ │ │ │ └── autoheight.js │ │ │ ├── baidumap │ │ │ │ ├── baidumap.js │ │ │ │ ├── index.html │ │ │ │ └── map.html │ │ │ ├── clearhtml │ │ │ │ └── clearhtml.js │ │ │ ├── code │ │ │ │ ├── code.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── emoticons │ │ │ │ ├── emoticons.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ ├── 99.gif │ │ │ │ │ └── static.gif │ │ │ ├── filemanager │ │ │ │ ├── filemanager.js │ │ │ │ └── images │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ └── go-up.gif │ │ │ ├── fixtoolbar │ │ │ │ └── fixtoolbar.js │ │ │ ├── flash │ │ │ │ └── flash.js │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ ├── align_top.gif │ │ │ │ │ └── refresh.png │ │ │ ├── insertfile │ │ │ │ └── insertfile.js │ │ │ ├── lineheight │ │ │ │ └── lineheight.js │ │ │ ├── link │ │ │ │ └── link.js │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── map.js │ │ │ ├── media │ │ │ │ └── media.js │ │ │ ├── multiimage │ │ │ │ ├── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ ├── select-files-zh-CN.png │ │ │ │ │ └── swfupload.swf │ │ │ │ └── multiimage.js │ │ │ ├── pagebreak │ │ │ │ └── pagebreak.js │ │ │ ├── plainpaste │ │ │ │ └── plainpaste.js │ │ │ ├── preview │ │ │ │ └── preview.js │ │ │ ├── quickformat │ │ │ │ └── quickformat.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ ├── template │ │ │ │ ├── html │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ └── 3.html │ │ │ │ └── template.js │ │ │ └── wordpaste │ │ │ │ └── wordpaste.js │ │ └── themes │ │ │ ├── common │ │ │ ├── anchor.gif │ │ │ ├── blank.gif │ │ │ ├── flash.gif │ │ │ ├── loading.gif │ │ │ ├── media.gif │ │ │ └── rm.gif │ │ │ ├── default │ │ │ ├── background.png │ │ │ ├── default.css │ │ │ └── default.png │ │ │ ├── qq │ │ │ ├── editor.gif │ │ │ └── qq.css │ │ │ └── simple │ │ │ └── simple.css │ │ ├── validate │ │ ├── css │ │ │ ├── bootstrapValidator.css │ │ │ └── bootstrapValidator.min.css │ │ └── js │ │ │ ├── bootstrapValidator.js │ │ │ └── bootstrapValidator.min.js │ │ └── zTree │ │ ├── css │ │ ├── awesomeStyle │ │ │ ├── awesome.css │ │ │ ├── awesome.less │ │ │ ├── fa.less │ │ │ └── img │ │ │ │ └── loading.gif │ │ ├── demo.css │ │ ├── metroStyle │ │ │ ├── img │ │ │ │ ├── line_conn.png │ │ │ │ ├── loading.gif │ │ │ │ ├── metro.gif │ │ │ │ └── metro.png │ │ │ └── metroStyle.css │ │ └── zTreeStyle │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ └── zTreeStyle.css │ │ └── js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery.ztree.core.js │ │ └── jquery.ztree.excheck.js │ └── templates │ ├── admin │ ├── addUser.ftl │ ├── sysFunctionManager │ │ ├── addFunction.ftl │ │ ├── addRole.ftl │ │ ├── addUserRole.ftl │ │ ├── editFunction.ftl │ │ ├── editRole.ftl │ │ ├── function_manager.ftl │ │ ├── function_manager2.ftl │ │ ├── function_tree.ftl │ │ ├── role_function_tree.ftl │ │ └── role_manager.ftl │ ├── table_managed.ftl │ └── user │ │ └── password.ftl │ ├── common │ ├── footer.ftl │ ├── header.ftl │ └── sidebar.ftl │ ├── log4j.properties │ └── login.ftl ├── pom.xml ├── springboot-shiro-configure ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── xinwei │ └── spring │ └── boot │ └── autoconfigure │ └── shiro │ ├── FormSignInFilter.java │ ├── RetryLimitHashedCredentialsMatcher.java │ ├── ShiroAutoConfiguration.java │ ├── ShiroConfiguration.java │ ├── ShiroCookieProperties.java │ ├── ShiroJdbcRealmProperties.java │ ├── ShiroProperties.java │ ├── ShiroSessionProperties.java │ ├── ShiroSignInProperties.java │ ├── ShiroWebMvcConfigurerAdapter.java │ └── annotation │ ├── EnableShiroWebSupport.java │ ├── SessionUser.java │ └── SessionUserArgumentResolver.java └── sql ├── shiro_function.sql ├── shiro_role.sql ├── shiro_role_function.sql ├── shiro_user.sql └── shiro_user_role.sql /.gitignore: -------------------------------------------------------------------------------- 1 | demo-shiro-interface/target/ 2 | demo-shiro-service/target/ 3 | demo-shiro-web/target/ 4 | springboot-shiro-configure/target/ 5 | .classpath 6 | .idea 7 | .project 8 | .settings 9 | /bin 10 | */bin 11 | *.iml 12 | */*.iml 13 | -------------------------------------------------------------------------------- /dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/dem -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/common/page/Columns.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.common.page; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Columns implements Serializable { 6 | /** 7 | * 8 | */ 9 | private static final long serialVersionUID = 1L; 10 | private String data; 11 | private boolean searchable; 12 | 13 | public boolean isSearchable() { 14 | return searchable; 15 | } 16 | 17 | public void setSearchable(boolean searchable) { 18 | this.searchable = searchable; 19 | } 20 | 21 | public String getData() { 22 | return data; 23 | } 24 | 25 | public void setData(String data) { 26 | this.data = data; 27 | } 28 | } -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/common/page/Order.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.common.page; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Order implements Serializable { 6 | /** 7 | * 8 | */ 9 | private static final long serialVersionUID = 1L; 10 | private int column;//排序字段属性编号0,1,2,,, 11 | private String columnName;//排序字段属性名称 12 | private String dir; 13 | 14 | public int getColumn() { 15 | return column; 16 | } 17 | 18 | public void setColumn(int column) { 19 | this.column = column; 20 | } 21 | 22 | public String getDir() { 23 | return dir; 24 | } 25 | 26 | public void setDir(String dir) { 27 | this.dir = dir; 28 | } 29 | 30 | public String getColumnName() { 31 | return columnName; 32 | } 33 | 34 | public void setColumnName(String columnName) { 35 | this.columnName = columnName; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/common/page/Search.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.common.page; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Search implements Serializable { 6 | /** 7 | * 8 | */ 9 | private static final long serialVersionUID = 1L; 10 | private String value; 11 | private boolean regex; 12 | 13 | public String getValue() { 14 | return value; 15 | } 16 | 17 | public void setValue(String value) { 18 | this.value = value; 19 | } 20 | 21 | public boolean isRegex() { 22 | return regex; 23 | } 24 | 25 | public void setRegex(boolean regex) { 26 | this.regex = regex; 27 | } 28 | 29 | } -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/service/EntityService.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.service; 2 | 3 | import java.io.Serializable; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import org.springframework.data.domain.Page; 8 | import org.springframework.data.domain.Sort; 9 | 10 | public interface EntityService { 11 | T get(PK var1); 12 | 13 | void delete(PK var1); 14 | 15 | void delete(Iterable var1); 16 | 17 | void delete(T var1); 18 | 19 | void save(T var1); 20 | 21 | Iterable getAll(); 22 | 23 | Page search(Map var1, int var2, int var3, String var4); 24 | 25 | List findAll(Map var1); 26 | 27 | List findAll(Map var1, Sort var2); 28 | } -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/service/ShiroRoleService.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.service; 2 | 3 | import java.util.List; 4 | 5 | import com.xinwei.common.page.Pagination; 6 | import com.xinwei.common.page.PaginationResult; 7 | import com.xinwei.shirofunction.ShiroRole; 8 | 9 | 10 | public interface ShiroRoleService extends EntityService{ 11 | 12 | public ShiroRole findByRoleName(String rolename); 13 | 14 | public ShiroRole findById(Integer id); 15 | 16 | public List findRoleList(); 17 | 18 | public PaginationResult findAllByPage(Pagination pagination); 19 | 20 | } 21 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/shirofunction/Function.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shirofunction; 2 | 3 | import java.util.Date; 4 | 5 | import javax.persistence.Entity; 6 | import javax.persistence.GeneratedValue; 7 | import javax.persistence.GenerationType; 8 | import javax.persistence.Id; 9 | import javax.persistence.Table; 10 | 11 | import lombok.Data; 12 | 13 | /** 14 | * 系统功能目录 15 | * @author ouburikou 16 | * 17 | */ 18 | @Entity 19 | @Table(name = "shiro_function") 20 | @Data 21 | public class Function implements java.io.Serializable { 22 | 23 | @Id 24 | @GeneratedValue(strategy = GenerationType.IDENTITY) 25 | private Integer id; 26 | 27 | private String functionName; 28 | private Date createTime; 29 | 30 | private Integer pid; 31 | 32 | private String permissionName;//securityApply:templetUpload 33 | 34 | } 35 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/shirofunction/FunctionService.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shirofunction; 2 | 3 | import java.util.List; 4 | 5 | import com.xinwei.common.page.Pagination; 6 | import com.xinwei.common.page.PaginationResult; 7 | import com.xinwei.service.EntityService; 8 | 9 | public interface FunctionService extends EntityService{ 10 | 11 | public PaginationResult findAllByPage(Pagination pagination); 12 | public List findList(); 13 | 14 | public Function findById(Integer id); 15 | 16 | public Function findByPermissionName(String permissionName); 17 | 18 | public Function findByPid(Integer pid); 19 | 20 | 21 | public List findListByPid(Integer pid); 22 | } 23 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/shirofunction/FunctionTreeBean.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shirofunction; 2 | 3 | import lombok.Data; 4 | import lombok.extern.slf4j.Slf4j; 5 | 6 | /** 7 | * 展示功能Tree时使用。 8 | * @author ouburikou 9 | * 10 | */ 11 | @Slf4j 12 | @Data 13 | public class FunctionTreeBean { 14 | 15 | private Integer id; 16 | private Integer pId; 17 | private String name; 18 | private boolean checked=false; 19 | private boolean open=true; 20 | 21 | 22 | } 23 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/shirofunction/RoleService.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shirofunction; 2 | 3 | import com.xinwei.common.page.Pagination; 4 | import com.xinwei.common.page.PaginationResult; 5 | import com.xinwei.service.EntityService; 6 | 7 | public interface RoleService extends EntityService{ 8 | 9 | public PaginationResult findAllByPage(Pagination pagination); 10 | } 11 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/shirofunction/UserRoleListCheck.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shirofunction; 2 | 3 | import lombok.Data; 4 | import lombok.extern.slf4j.Slf4j; 5 | 6 | /** 7 | * 给用户添加role时使用。 8 | * @author ouburikou 9 | * 10 | */ 11 | @Slf4j 12 | @Data 13 | public class UserRoleListCheck { 14 | 15 | private String username; 16 | private String roleName; 17 | private boolean check=false; 18 | 19 | 20 | } 21 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/utils/Constants.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.utils; 2 | 3 | public class Constants { 4 | 5 | 6 | public static String userStatus_0="0";//注册用户未审核 7 | public static String userStatus_1="1";//注册用户已审核 8 | public static String userStatus_2="2";//注册用户被锁定 9 | 10 | 11 | 12 | public static String initPassword="111111";// 管理员在后台添加用户初始密码 111111 13 | 14 | 15 | 16 | /*****************************************shiro redis 管理设置 start*********************************************************/ 17 | /** 18 | * redis cache 前缀 19 | */ 20 | public final static String REDIS_SHIRO_CACHE = "shiro-cache:"; 21 | 22 | /** 23 | * redis session 前缀 24 | */ 25 | public final static String REDIS_SHIRO_SESSION = "shiro-session:"; 26 | /*****************************************shiro redis 管理设置 end*********************************************************/ 27 | 28 | 29 | 30 | 31 | 32 | } 33 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/utils/ObjectToObject.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.utils; 2 | 3 | import java.lang.reflect.Field; 4 | 5 | public class ObjectToObject { 6 | public static void mergeObject(T origin, T destination) { 7 | if (origin == null || destination == null) 8 | return; 9 | if (!origin.getClass().equals(destination.getClass())) 10 | return; 11 | 12 | Field[] fields = origin.getClass().getDeclaredFields(); 13 | for (int i = 0; i < fields.length; i++) { 14 | try { 15 | fields[i].setAccessible(true); 16 | Object value = fields[i].get(origin); 17 | if (null != value) { 18 | fields[i].set(destination, value); 19 | } 20 | fields[i].setAccessible(false); 21 | } catch (Exception e) { 22 | } 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /demo-shiro-interface/src/main/java/com/xinwei/utils/ResponseJson.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.utils; 2 | 3 | import lombok.Data; 4 | 5 | @Data 6 | public class ResponseJson { 7 | 8 | public String msg; 9 | public String url; 10 | public String returnStr; 11 | public boolean success=true; 12 | 13 | public String getMsg() { 14 | return msg; 15 | } 16 | 17 | public void setMsg(String msg) { 18 | this.msg = msg; 19 | } 20 | 21 | public String getUrl() { 22 | return url; 23 | } 24 | 25 | public void setUrl(String url) { 26 | this.url = url; 27 | } 28 | 29 | public String getReturnStr() { 30 | return returnStr; 31 | } 32 | 33 | public void setReturnStr(String returnStr) { 34 | this.returnStr = returnStr; 35 | } 36 | 37 | public boolean isSuccess() { 38 | return success; 39 | } 40 | 41 | public void setSuccess(boolean success) { 42 | this.success = success; 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /demo-shiro-service/src/main/java/com/xinwei/dao/BaseDao.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.dao; 2 | 3 | import java.io.Serializable; 4 | 5 | import org.springframework.data.jpa.repository.JpaSpecificationExecutor; 6 | import org.springframework.data.repository.NoRepositoryBean; 7 | import org.springframework.data.repository.PagingAndSortingRepository; 8 | 9 | @NoRepositoryBean 10 | public interface BaseDao extends PagingAndSortingRepository, 11 | JpaSpecificationExecutor { 12 | } 13 | -------------------------------------------------------------------------------- /demo-shiro-service/src/main/java/com/xinwei/dao/FunctionDao.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.dao; 2 | 3 | import java.util.List; 4 | 5 | import javax.transaction.Transactional; 6 | 7 | import org.springframework.data.jpa.repository.Query; 8 | import org.springframework.stereotype.Service; 9 | 10 | import com.xinwei.shirofunction.Function; 11 | @Transactional 12 | @Service 13 | public interface FunctionDao extends BaseDao { 14 | 15 | @Query("from Function") 16 | public List findList(); 17 | 18 | public Function findByPermissionName(String permissionName); 19 | 20 | 21 | public Function findByPid(Integer pid); 22 | @Query("from Function where pid=?") 23 | public List findListByPid(Integer pid); 24 | } -------------------------------------------------------------------------------- /demo-shiro-service/src/main/java/com/xinwei/dao/ShiroRoleDao.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.dao; 2 | 3 | import java.util.List; 4 | 5 | import javax.transaction.Transactional; 6 | 7 | import org.springframework.data.jpa.repository.Query; 8 | import org.springframework.stereotype.Service; 9 | 10 | import com.xinwei.shirofunction.ShiroRole; 11 | 12 | @Transactional 13 | @Service 14 | public interface ShiroRoleDao extends BaseDao { 15 | 16 | @Query("from ShiroRole") 17 | public List findRoleList(); 18 | 19 | 20 | public ShiroRole findByRoleName(String roleName); 21 | 22 | 23 | } -------------------------------------------------------------------------------- /demo-shiro-service/src/main/java/com/xinwei/dao/ShiroUserDao.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.dao; 2 | 3 | import org.springframework.data.domain.Page; 4 | import org.springframework.data.domain.Pageable; 5 | import org.springframework.data.jpa.domain.Specification; 6 | import org.springframework.data.jpa.repository.Query; 7 | import org.springframework.data.repository.query.Param; 8 | import org.springframework.stereotype.Service; 9 | 10 | import com.xinwei.shirofunction.ShiroUser; 11 | 12 | @Service 13 | public interface ShiroUserDao extends BaseDao { 14 | public ShiroUser findByUsername(String userName); 15 | 16 | 17 | @Query(value = "select j from ShiroUser j where j.username = :username ") 18 | public ShiroUser findByUsernameForUpdate(@Param("username") String username); 19 | 20 | // 动态sql分页查询 21 | Page findAll(Specification spec, Pageable pageable); 22 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/ServerApplication.java: -------------------------------------------------------------------------------- 1 | package com.xinwei; 2 | 3 | 4 | import org.springframework.boot.CommandLineRunner; 5 | import org.springframework.boot.SpringApplication; 6 | import org.springframework.boot.autoconfigure.SpringBootApplication; 7 | import org.springframework.context.annotation.ComponentScan; 8 | import org.springframework.data.jpa.repository.config.EnableJpaRepositories; 9 | 10 | import lombok.extern.slf4j.Slf4j; 11 | 12 | @Slf4j 13 | @SpringBootApplication 14 | @ComponentScan(basePackages = {"com.xinwei"}) 15 | @EnableJpaRepositories("com.xinwei.dao") 16 | public class ServerApplication implements CommandLineRunner { 17 | 18 | @Override 19 | public void run(String... args) { 20 | log.info("初始化系统..."); 21 | 22 | } 23 | 24 | 25 | 26 | 27 | public static void main(String[] args) throws Exception { 28 | SpringApplication.run(ServerApplication.class, args); 29 | } 30 | } 31 | 32 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/ShiroSessionRepository.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro; 2 | 3 | import java.io.Serializable; 4 | import java.util.Collection; 5 | 6 | import org.apache.shiro.session.Session; 7 | 8 | public interface ShiroSessionRepository { 9 | void saveSession(Session session); 10 | 11 | void deleteSession(Serializable sessionId); 12 | 13 | Session getSession(Serializable sessionId); 14 | 15 | Collection getAllSessions(); 16 | } 17 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/ShiroTagFreeMarkerConfigurer.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro; 2 | 3 | import java.io.IOException; 4 | 5 | import org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer; 6 | 7 | import com.xinwei.shiro.tag.ShiroTags; 8 | 9 | import freemarker.template.TemplateException; 10 | 11 | public class ShiroTagFreeMarkerConfigurer extends FreeMarkerConfigurer{ 12 | @Override 13 | public void afterPropertiesSet() throws IOException, TemplateException { 14 | super.afterPropertiesSet(); 15 | this.getConfiguration().setSharedVariable("shiro", new ShiroTags()); 16 | } 17 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/tag/HasPermissionTag.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro.tag; 2 | 3 | /** 4 | *

5 | * Equivalent to {@link org.apache.shiro.web.tags.HasPermissionTag} 6 | *

7 | * 8 | * @since 0.1 9 | */ 10 | public class HasPermissionTag extends PermissionTag { 11 | protected boolean showTagBody(String p) { 12 | return isPermitted(p); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/tag/HasRoleTag.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro.tag; 2 | 3 | /** 4 | *

5 | * Equivalent to {@link org.apache.shiro.web.tags.HasRoleTag} 6 | *

7 | */ 8 | public class HasRoleTag extends RoleTag { 9 | protected boolean showTagBody(String roleName) { 10 | return getSubject() != null && getSubject().hasRole(roleName); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/tag/LacksPermissionTag.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro.tag; 2 | 3 | /** 4 | *

5 | * Equivalent to {@link org.apache.shiro.web.tags.LacksPermissionTag} 6 | *

7 | */ 8 | public class LacksPermissionTag extends PermissionTag { 9 | protected boolean showTagBody(String p) { 10 | return !isPermitted(p); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/tag/LacksRoleTag.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro.tag; 2 | 3 | /** 4 | *

5 | * Equivalent to {@link org.apache.shiro.web.tags.LacksRoleTag} 6 | *

7 | */ 8 | public class LacksRoleTag extends RoleTag { 9 | protected boolean showTagBody(String roleName) { 10 | boolean hasRole = getSubject() != null && getSubject().hasRole(roleName); 11 | return !hasRole; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/tag/RoleTag.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro.tag; 2 | 3 | import freemarker.core.Environment; 4 | import freemarker.template.TemplateDirectiveBody; 5 | import freemarker.template.TemplateException; 6 | import java.io.IOException; 7 | import java.util.Map; 8 | 9 | /** 10 | *

11 | * Equivalent to {@link org.apache.shiro.web.tags.RoleTag} 12 | *

13 | */ 14 | public abstract class RoleTag extends SecureTag { 15 | String getName(Map params) { 16 | return getParam(params, "name"); 17 | } 18 | 19 | @Override 20 | public void render(Environment env, Map params, TemplateDirectiveBody body) throws IOException, TemplateException { 21 | boolean show = showTagBody(getName(params)); 22 | if (show) { 23 | renderBody(env, body); 24 | } 25 | } 26 | 27 | protected abstract boolean showTagBody(String roleName); 28 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/java/com/xinwei/shiro/tag/ShiroTags.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.shiro.tag; 2 | 3 | import freemarker.template.SimpleHash; 4 | 5 | /** 6 | * Shortcut for injecting the tags into Freemarker 7 | * 8 | *

9 | * Usage: cfg.setSharedVeriable("shiro", new ShiroTags()); 10 | *

11 | */ 12 | public class ShiroTags extends SimpleHash { 13 | public ShiroTags() { 14 | put("authenticated", new AuthenticatedTag()); 15 | put("guest", new GuestTag()); 16 | put("hasAnyRoles", new HasAnyRolesTag()); 17 | put("hasPermission", new HasPermissionTag()); 18 | put("hasRole", new HasRoleTag()); 19 | put("lacksPermission", new LacksPermissionTag()); 20 | put("lacksRole", new LacksRoleTag()); 21 | put("notAuthenticated", new NotAuthenticatedTag()); 22 | put("principal", new PrincipalTag()); 23 | put("user", new UserTag()); 24 | put("username", new UsernameTag()); 25 | } 26 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | shiro: 2 | realm-class: com.xinwei.shiro.MyShiroRealm 3 | custom-authc-filter-class: com.xinwei.shiro.AjaxAuthorizationFilter 4 | login-url: /login 5 | success-url: /admin/sysFunctionManager/role_manager 6 | retry-max: 5 7 | retry-expire-time-redis: 5 8 | authorization-expire-time-redis: 10 9 | hash-iterations: 1024 10 | hash-algorithm-name: MD5 11 | stored-credentials-hex-encoded: false 12 | session: 13 | global-session-timeout: 180000 14 | validation-interval: 1000 15 | validation-scheduler-enabled: true 16 | filter-chain-definitions: 17 | /media/**: anon 18 | /admin/**: authc 19 | 20 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/ehcache.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=DEBUG, console 2 | #log4j.rootLogger=INFO, console, file 3 | 4 | log4j.appender.console=org.apache.log4j.ConsoleAppender 5 | log4j.appender.console.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.console.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSS} [%p]-[%c] %m%n 7 | 8 | log4j.appender.file=org.apache.log4j.DailyRollingFileAppender 9 | log4j.appender.file.File=logs/thirdparty.log 10 | log4j.appender.file.DatePattern='.'yyyy-MM-dd 11 | log4j.appender.file.layout=org.apache.log4j.PatternLayout 12 | log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSS} [%p]-[%c] %m%n 13 | 14 | 15 | log4j.logger.com.ibatis=DEBUG 16 | log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG 17 | log4j.logger.com.ibatis.common.jdbc.ScriptRunner=DEBUG 18 | log4j.logger.com.ibatis.sqlmap.engine.impl.SqlMapClientDelegate=DEBUG 19 | log4j.logger.java.sql.Connection=DEBUG 20 | log4j.logger.java.sql.Statement=DEBUG 21 | log4j.logger.java.sql.PreparedStatement=DEBUG -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/bootstrap-3.3.4/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/about-us.css: -------------------------------------------------------------------------------- 1 | /*** 2 | Anout Us Page 3 | ***/ 4 | 5 | .meet-our-team h3 { 6 | margin-bottom: 0; 7 | padding: 0 10px 10px; 8 | background: #fcfcfc; 9 | } 10 | 11 | .meet-our-team small { 12 | display:block; 13 | font-size:12px; 14 | } 15 | 16 | .meet-our-team .team-info { 17 | padding: 10px; 18 | overflow: hidden; 19 | background: #fafafa; 20 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/bootstrap-responsive1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/css/bootstrap-responsive1.min.css -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/email.css: -------------------------------------------------------------------------------- 1 | /*** 2 | Email Template Page 3 | ***/ 4 | .mail-template ul { 5 | padding:0px; 6 | margin: 0px; 7 | list-style:none; 8 | } 9 | 10 | .mail-template li { 11 | margin:0 5px; 12 | cursor:pointer; 13 | list-style:none; 14 | border:solid 2px #fff; 15 | } 16 | 17 | .mail-template li:hover { 18 | border:solid 2px #aaa; 19 | } 20 | 21 | .mail-template li a{ 22 | display:block; 23 | padding:25px; 24 | } 25 | 26 | .mail-template li a:hover { 27 | text-decoration: none; 28 | } 29 | 30 | .mail-template li.color-black { 31 | background:#1f1f1f; 32 | } 33 | 34 | .mail-template li.color-darkblue { 35 | background:#1570a6; 36 | } 37 | 38 | .mail-template li.color-lightblue { 39 | background:#4aabf9; 40 | } 41 | 42 | .mail-template li.color-red { 43 | background:#eb4d41; 44 | } 45 | 46 | .mail-template li.color-green { 47 | background:#28b779; 48 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/invoice.css: -------------------------------------------------------------------------------- 1 | /*** 2 | Invoice page 3 | ***/ 4 | .invoice table { 5 | margin:30px 0 30px; 6 | } 7 | 8 | .invoice .invoice-logo { 9 | margin-bottom:20px; 10 | } 11 | 12 | .invoice .invoice-logo p { 13 | padding:5px 0; 14 | font-size:26px; 15 | line-height:28px; 16 | text-align:right; 17 | } 18 | 19 | .invoice .invoice-logo p span { 20 | display:block; 21 | font-size:14px; 22 | } 23 | 24 | .invoice .invoice-logo-space { 25 | margin-bottom:15px; 26 | } 27 | 28 | .invoice .invoice-payment strong { 29 | margin-right:5px; 30 | } 31 | 32 | .invoice .invoice-block { 33 | text-align:right; 34 | } 35 | 36 | .invoice .invoice-block .amounts { 37 | margin-top: 20px; 38 | font-size: 14px; 39 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/jquery-ui-1.10.1.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/css/jquery-ui-1.10.1.custom.min.css -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/jquery.tagsinput.css: -------------------------------------------------------------------------------- 1 | div.tagsinput { border:1px solid #CCC; background: #FFF; padding:5px; width:300px; height:100px; overflow-y: auto;} 2 | div.tagsinput span.tag { border: 1px solid #a5d24a; -moz-border-radius:2px; -webkit-border-radius:2px; display: block; float: left; padding: 5px; text-decoration:none; background: #cde69c; color: #638421; margin-right: 5px; margin-bottom:5px;font-family: helvetica; font-size:13px;} 3 | div.tagsinput span.tag a { font-weight: bold; color: #82ad2b; text-decoration:none; font-size: 11px; } 4 | div.tagsinput input { width:80px; margin:0px; font-family: helvetica; font-size: 13px; border:1px solid transparent; padding:5px; background: transparent; color: #000; outline:0px; margin-right:5px; margin-bottom:5px; } 5 | div.tagsinput div { display:block; float: left; } 6 | .tags_clear { clear: both; width: 100%; height: 0px; } 7 | .not_valid {background: #FBD8DB !important; color: #90111A !important;} 8 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/css/jquery.ui.slider.css -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/print.css: -------------------------------------------------------------------------------- 1 | /*** 2 | Import fonts 3 | ***/ 4 | .header { 5 | display: none; 6 | } 7 | 8 | .page-sidebar { 9 | display: none; 10 | } 11 | 12 | .color-panel { 13 | display: none; 14 | } 15 | 16 | .hidden-print { 17 | display: none; 18 | } 19 | 20 | .footer { 21 | display: none; 22 | } 23 | 24 | .no-page-break { 25 | page-break-after: avoid; 26 | } 27 | 28 | .page-container { 29 | margin: 0px; 30 | padding: 0px; 31 | } 32 | 33 | .page-content { 34 | min-height: auto !important; 35 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/css/promo.css: -------------------------------------------------------------------------------- 1 | /*** 2 | Promo Page 3 | ***/ 4 | 5 | .promo-page { 6 | padding-left: 0; 7 | padding-right: 0; 8 | min-height: 650px; 9 | } 10 | 11 | .promo-page h1, .promo-page h2 { 12 | font-size: 50px; 13 | line-height: 60px; 14 | } 15 | 16 | .promo-page .btn.xlarge { 17 | font-size: 22px; 18 | padding: 7px 25px; 19 | margin: 5px 0; 20 | } 21 | 22 | .promo-page input.m-wrap { 23 | background: #fff; 24 | } 25 | 26 | /*page row options*/ 27 | 28 | .promo-page .block-transparent { 29 | min-height: 350px; 30 | padding: 50px 20px 30px 20px; 31 | } 32 | 33 | .promo-page .block-grey { 34 | min-height: 350px; 35 | padding: 50px 20px 30px 20px; 36 | background: #eeedf2; 37 | } 38 | 39 | .promo-page .block-yellow { 40 | min-height: 350px; 41 | padding: 50px 20px 30px 20px; 42 | background: #ffd800; 43 | } 44 | 45 | .promo-page .block-footer { 46 | padding: 30px 20px 30px 20px; 47 | background: #eeedf2; 48 | } 49 | 50 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/10.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/11.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/2.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/3.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/4.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/5.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/6.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/7.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/8.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/9.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/KwPYo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/KwPYo.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/alpha.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/amazon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/animated-overlay.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/avatar.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/avatar1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/avatar1_small.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/avatar2.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/avatar3.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/behance.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg-input-focus.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg-input.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg-opacity.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg-white-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg-white-lock.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg/1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg/2.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg/3.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bg/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bg/4.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/blank.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/blogger.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/bstree-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/bstree-halflings.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/chosen-sprite.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/icons.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/it1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/it1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/it3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/it3.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/itbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/itbg.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/itbg0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/itbg0.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/logo.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/common/logo.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/css -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/datatable-row-openclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/datatable-row-openclose.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/deviantart.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/dribbble.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/dropbox.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/earth.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/evernote.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/facebook.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/fancybox_loading.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/fancybox_overlay.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/fancybox_sprite.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/favicon.ico -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/fontawesome-webfont.woff -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/forrst.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/github.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons-halflings.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons-regular.eot -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons-regular.ttf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons-regular.woff -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons_halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons_halflings-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphicons_halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphicons_halflings.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphiconshalflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphiconshalflings-regular.eot -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphiconshalflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphiconshalflings-regular.ttf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/glyphiconshalflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/glyphiconshalflings-regular.woff -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/googleplus.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/gritter-light.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/gritter.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/hor-menu-search-close-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/hor-menu-search-close-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/hor-menu-search-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/hor-menu-search-close.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/hor-menu-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/hor-menu-search.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/hue.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/icon-color-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/icon-color-close.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/icon-color.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/icon-img-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/icon-img-down.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/icon-img-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/icon-img-up.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ie-spacer.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/image1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/image2.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/image3.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/image4.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/image5.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/img1.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/img1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/img1_2.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/img2.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/img3.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/img4.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/inbox-nav-arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/inbox-nav-arrow-blue.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/instagram.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/iphone.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/item_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/item_img.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/item_img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/item_img1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/jolicloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/jolicloud.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/js: -------------------------------------------------------------------------------- 1 | alert("The Google Maps API server rejected your request. The \x22sensor\x22 parameter specified in the request must be set to either \x22true\x22 or \x22false\x22.") -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/last-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/last-fm.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/linkedin.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/loading.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/logo-big.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/logo.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/logo_azteca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/logo_azteca.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/logo_conquer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/logo_conquer.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/logo_metronic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/logo_metronic.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/menu-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/menu-toggler.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/overlay-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/overlay-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/photo1.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/photo2.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/photo3.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/photo4.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/photo5.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/photo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/photo6.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/picasa.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/pintrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/pintrest.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-collapse-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-collapse-icon-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-collapse-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-collapse-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-config-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-config-icon-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-config-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-config-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-expand-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-expand-icon-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-expand-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-expand-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-reload-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-reload-icon-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-reload-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-reload-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-remove-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-remove-icon-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/portlet-remove-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/portlet-remove-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_02.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_03.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_04.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_05.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_06.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_07.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_08.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_09.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_10.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_11.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_12.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_13.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_14.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_15.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_16.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/preview_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/preview_17.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/profile-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/profile-img.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/profile.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/progressbar.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/remove-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/remove-icon-small.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/rss.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/saturation.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/search-icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/select2-spinner.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/select2.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/select2x2.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sidebar-menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sidebar-menu-arrow.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sidebar-search-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sidebar-search-close.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sidebar-toggler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sidebar-toggler.jpg -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/skype.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/social_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/social_facebook.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/social_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/social_googleplus.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/social_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/social_linkedin.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/social_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/social_rss.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/social_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/social_twitter.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sort_asc.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sort_asc_disabled.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sort_both.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sort_desc.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sort_desc_disabled.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/spotify.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/sprite.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/spritemap.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/spritemap@2x.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/stumbleupon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/switch.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/syncfusion-icons-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/syncfusion-icons-white.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/syncfusion-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/syncfusion-icons.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/tumblr.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/twitter.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/vimeo.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/vk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/vk.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/walmart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/walmart.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/wordpress.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/xing.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/yahoo.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/image/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/image/youtube.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/bootstrap-rtl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/bootstrap-rtl.min.js -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/canvas-to-blob.min.js: -------------------------------------------------------------------------------- 1 | (function(a){"use strict";var b=a.HTMLCanvasElement&&a.HTMLCanvasElement.prototype,c=a.Blob&&function(){try{return Boolean(new Blob)}catch(a){return!1}}(),d=c&&a.Uint8Array&&function(){try{return(new Blob([new Uint8Array(100)])).size===100}catch(a){return!1}}(),e=a.BlobBuilder||a.WebKitBlobBuilder||a.MozBlobBuilder||a.MSBlobBuilder,f=(c||e)&&a.atob&&a.ArrayBuffer&&a.Uint8Array&&function(a){var b,f,g,h,i,j;a.split(",")[0].indexOf("base64")>=0?b=atob(a.split(",")[1]):b=decodeURIComponent(a.split(",")[1]),f=new ArrayBuffer(b.length),g=new Uint8Array(f);for(h=0;hLoop, Inc. 795 Park Ave, Suite 120
San Francisco, CA 94107" 19 | } 20 | }); 21 | 22 | marker.infoWindow.open(map, marker); 23 | }); 24 | } 25 | }; 26 | 27 | }(); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css: -------------------------------------------------------------------------------- 1 | 2 | button.ColVis_Button, 3 | ul.ColVis_collection li { 4 | padding: 0.5em; 5 | } 6 | 7 | ul.ColVis_collection { 8 | margin: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | z-index: 2002; 12 | } 13 | 14 | ul.ColVis_collection li { 15 | clear: both; 16 | display: block; 17 | text-align: left; 18 | margin: -1px 0 0 0; 19 | } 20 | 21 | ul.ColVis_collection li span { 22 | display: inline-block; 23 | padding-left: 0.5em; 24 | cursor: pointer; 25 | } 26 | 27 | div.ColVis_collectionBackground { 28 | position: fixed; 29 | top: 0; 30 | left: 0; 31 | height: 100%; 32 | width: 100%; 33 | background-color: black; 34 | z-index: 1100; 35 | } 36 | 37 | 38 | div.ColVis_catcher { 39 | position: absolute; 40 | z-index: 1101; 41 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/Scroller/css/dataTables.scroller.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Namespace: DTS (DataTables Scroller) 4 | */ 5 | 6 | div.DTS tbody th, 7 | div.DTS tbody td { 8 | white-space: nowrap; 9 | } 10 | 11 | div.DTS tbody tr.even { 12 | background-color: white; 13 | } 14 | 15 | div.DTS div.DTS_Loading { 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | width: 200px; 20 | height: 20px; 21 | margin-top: -20px; 22 | margin-left: -100px; 23 | z-index: 1; 24 | 25 | border: 1px solid #999; 26 | padding: 20px 0; 27 | text-align: center; 28 | background-color: white; 29 | background-color: rgba(255, 255, 255, 0.5); 30 | } 31 | 32 | div.DTS div.dataTables_scrollHead, 33 | div.DTS div.dataTables_scrollFoot { 34 | background-color: white; 35 | } 36 | 37 | div.DTS div.dataTables_scrollBody { 38 | z-index: 2; 39 | } 40 | 41 | div.DTS div.dataTables_scroll { 42 | background: url('../images/loading-background.png') repeat 0 0; 43 | } 44 | 45 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_both.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/excanvas.js -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/gallery.js: -------------------------------------------------------------------------------- 1 | var Gallery = function () { 2 | 3 | return { 4 | //main function to initiate the module 5 | init: function () { 6 | 7 | App.initFancybox(); 8 | 9 | } 10 | 11 | }; 12 | 13 | }(); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/jquery-validate/images/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/jquery-validate/images/checked.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/jquery-validate/images/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/jquery-validate/images/unchecked.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/jquery-validate/jquery.validate.css: -------------------------------------------------------------------------------- 1 | label.error { 2 | color: red; 3 | font-weight: bold; 4 | background: transparent url(images/unchecked.gif) no-repeat scroll 0 0; 5 | padding-left: 18px; 6 | } 7 | 8 | label.checked { 9 | background: transparent url(images/checked.gif) no-repeat scroll 0 0; 10 | } 11 | 12 | input.error{ 13 | border: dashed 1px red; 14 | } -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/jquery-validate/messages_cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for the jQuery validation plugin. 3 | * Locale: CN 4 | */ 5 | jQuery.extend(jQuery.validator.messages, { 6 | required: "此字段不能为空", 7 | remote: "请修正该字段", 8 | email: "请输入正确格式的电子邮件", 9 | url: "请输入合法的网址", 10 | date: "请输入合法的日期", 11 | dateISO: "请输入合法的日期 (ISO).", 12 | number: "请输入合法的数字", 13 | digits: "只能输入整数", 14 | creditcard: "请输入合法的信用卡号", 15 | equalTo: "请再次输入相同的值", 16 | accept: "请输入拥有合法后缀名的字符", 17 | maxlength: jQuery.validator.format("请输入一个长度最多是 {0} 的字符"), 18 | minlength: jQuery.validator.format("请输入一个长度最少是 {0} 的字符"), 19 | rangelength: jQuery.validator.format("请输入一个长度介于 {0} 和 {1} 之间的字符"), 20 | range: jQuery.validator.format("请输入一个介于 {0} 和 {1} 之间的值"), 21 | max: jQuery.validator.format("请输入一个最大为 {0} 的值"), 22 | min: jQuery.validator.format("请输入一个最小为 {0} 的值") 23 | }); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/icon.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/lock.js: -------------------------------------------------------------------------------- 1 | var Lock = function () { 2 | 3 | return { 4 | //main function to initiate the module 5 | init: function () { 6 | 7 | $.backstretch([ 8 | "assets/img/bg/1.jpg", 9 | "assets/img/bg/2.jpg", 10 | "assets/img/bg/3.jpg", 11 | "assets/img/bg/4.jpg" 12 | ], { 13 | fade: 1000, 14 | duration: 8000 15 | }); 16 | } 17 | 18 | }; 19 | 20 | }(); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/portlet-draggable.js: -------------------------------------------------------------------------------- 1 | var PortletDraggable = function () { 2 | 3 | return { 4 | //main function to initiate the module 5 | init: function () { 6 | 7 | if (!jQuery().sortable) { 8 | return; 9 | } 10 | 11 | $("#sortable_portlets").sortable({ 12 | connectWith: ".portlet", 13 | items: ".portlet", 14 | opacity: 0.8, 15 | coneHelperSize: true, 16 | placeholder: 'sortable-box-placeholder round-all', 17 | forcePlaceholderSize: true, 18 | tolerance: "pointer" 19 | }); 20 | 21 | $(".column").disableSelection(); 22 | 23 | } 24 | 25 | }; 26 | 27 | }(); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/js/respond.js -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/search.js: -------------------------------------------------------------------------------- 1 | var Search = function () { 2 | 3 | return { 4 | //main function to initiate the module 5 | init: function () { 6 | if (jQuery().datepicker) { 7 | $('.date-picker').datepicker(); 8 | } 9 | 10 | App.initFancybox(); 11 | } 12 | 13 | }; 14 | 15 | }(); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/js/tmpl.min.js: -------------------------------------------------------------------------------- 1 | (function(a){"use strict";var b=function(a,c){var d=/[^\w\-\.:]/.test(a)?new Function(b.arg+",tmpl","var _e=tmpl.encode"+b.helper+",_s='"+a.replace(b.regexp,b.func)+"';return _s;"):b.cache[a]=b.cache[a]||b(b.load(a));return c?d(c,b):function(a){return d(a,b)}};b.cache={},b.load=function(a){return document.getElementById(a).innerHTML},b.regexp=/([\s'\\])(?![^%]*%\})|(?:\{%(=|#)([\s\S]+?)%\})|(\{%)|(%\})/g,b.func=function(a,b,c,d,e,f){if(b)return{"\n":"\\n","\r":"\\r","\t":"\\t"," ":" "}[a]||"\\"+a;if(c)return c==="="?"'+_e("+d+")+'":"'+("+d+"||'')+'";if(e)return"';";if(f)return"_s+='"},b.encReg=/[<>&"'\x00]/g,b.encMap={"<":"<",">":">","&":"&",'"':""","'":"'"},b.encode=function(a){return String(a||"").replace(b.encReg,function(a){return b.encMap[a]||""})},b.arg="o",b.helper=",print=function(s,e){_s+=e&&(s||'')||_e(s);},include=function(s,d){_s+=tmpl(s,d);}",typeof define=="function"&&define.amd?define(function(){return b}):a.tmpl=b})(this); -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/code/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} 2 | 3 | pre.prettyprint { 4 | border: 0; 5 | border-left: 3px solid rgb(204, 204, 204); 6 | margin-left: 2em; 7 | padding: 0.5em; 8 | font-size: 110%; 9 | display: block; 10 | font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; 11 | margin: 1em 0px; 12 | white-space: pre; 13 | } 14 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/select-files-zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/select-files-zh-CN.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 27 | 28 | 29 | 32 | 35 | 36 | 37 |
14 |

标题1

15 |
17 |

标题1

18 |
22 | 内容1 23 | 25 | 内容2 26 |
30 | 内容3 31 | 33 | 内容4 34 |
38 |

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

10 |
    11 |
  1. 12 | 描述1 13 |
  2. 14 |
  3. 15 | 描述2 16 |
  4. 17 |
  5. 18 | 描述3 19 |
  6. 20 |
21 |

22 | 在此处输入内容 23 |

24 |
    25 |
  • 26 | 描述1 27 |
  • 28 |
  • 29 | 描述2 30 |
  • 31 |
  • 32 | 描述3 33 |
  • 34 |
35 | 36 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/blank.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/flash.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/loading.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/media.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/common/rm.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/default/background.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/default/default.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/kindeditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/kindeditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/validate/css/bootstrapValidator.css: -------------------------------------------------------------------------------- 1 | /** 2 | * BootstrapValidator (http://bootstrapvalidator.com) 3 | * 4 | * The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3 5 | * 6 | * @author http://twitter.com/nghuuphuoc 7 | * @copyright (c) 2013 - 2014 Nguyen Huu Phuoc 8 | * @license MIT 9 | */ 10 | 11 | .bv-form .help-block { 12 | margin-bottom: 0; 13 | } 14 | .nav-tabs li.bv-tab-success > a { 15 | color: #3c763d; 16 | } 17 | .nav-tabs li.bv-tab-error > a { 18 | color: #a94442; 19 | } 20 | -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/validate/css/bootstrapValidator.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * BootstrapValidator (http://bootstrapvalidator.com) 3 | * 4 | * The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3 5 | * 6 | * @version v0.4.5 7 | * @author https://twitter.com/nghuuphuoc 8 | * @copyright (c) 2013 - 2014 Nguyen Huu Phuoc 9 | * @license MIT 10 | */ 11 | 12 | 13 | .bv-form .help-block{margin-bottom:0}.nav-tabs li.bv-tab-success>a{color:#3c763d}.nav-tabs li.bv-tab-error>a{color:#a94442} -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/awesomeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/awesomeStyle/img/loading.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzjgn/shiro-freemaker-springboot-redis-mysql/80e500977ad6f07a57569afb86698e1ccd53b840/demo-shiro-web/src/main/resources/static/media/zTree/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /demo-shiro-web/src/main/resources/templates/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=INFO, console 2 | #log4j.rootLogger=INFO, console, file 3 | 4 | log4j.appender.console=org.apache.log4j.ConsoleAppender 5 | log4j.appender.console.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.console.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSS} [%p]-[%c] %m%n 7 | 8 | log4j.appender.file=org.apache.log4j.DailyRollingFileAppender 9 | log4j.appender.file.File=logs/thirdparty.log 10 | log4j.appender.file.DatePattern='.'yyyy-MM-dd 11 | log4j.appender.file.layout=org.apache.log4j.PatternLayout 12 | log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSS} [%p]-[%c] %m%n 13 | 14 | 15 | log4j.logger.com.ibatis=DEBUG 16 | log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG 17 | log4j.logger.com.ibatis.common.jdbc.ScriptRunner=DEBUG 18 | log4j.logger.com.ibatis.sqlmap.engine.impl.SqlMapClientDelegate=DEBUG 19 | log4j.logger.java.sql.Connection=DEBUG 20 | log4j.logger.java.sql.Statement=DEBUG 21 | log4j.logger.java.sql.PreparedStatement=DEBUG -------------------------------------------------------------------------------- /springboot-shiro-configure/src/main/java/com/xinwei/spring/boot/autoconfigure/shiro/ShiroWebMvcConfigurerAdapter.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.spring.boot.autoconfigure.shiro; 2 | 3 | import org.springframework.context.annotation.Configuration; 4 | import org.springframework.web.method.support.HandlerMethodArgumentResolver; 5 | import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; 6 | 7 | import com.xinwei.spring.boot.autoconfigure.shiro.annotation.SessionUserArgumentResolver; 8 | 9 | import java.util.List; 10 | 11 | /** 12 | * This guy is lazy, nothing left. 13 | * 14 | * @author John Zhang 15 | */ 16 | @Configuration 17 | public class ShiroWebMvcConfigurerAdapter extends WebMvcConfigurerAdapter { 18 | 19 | @Override 20 | public void addArgumentResolvers(List argumentResolvers) { 21 | argumentResolvers.add(new SessionUserArgumentResolver()); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /springboot-shiro-configure/src/main/java/com/xinwei/spring/boot/autoconfigure/shiro/annotation/SessionUser.java: -------------------------------------------------------------------------------- 1 | package com.xinwei.spring.boot.autoconfigure.shiro.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 获取Shiro当前用户 7 | * @author 张劲航 8 | * @see SessionUserArgumentResolver 9 | */ 10 | @Target({ElementType.PARAMETER}) 11 | @Retention(RetentionPolicy.RUNTIME) 12 | @Documented 13 | public @interface SessionUser { 14 | } 15 | -------------------------------------------------------------------------------- /sql/shiro_role.sql: -------------------------------------------------------------------------------- 1 | /* 2 | -- Query: SELECT * FROM shiroDemo.shiro_role 3 | LIMIT 0, 1000 4 | 5 | -- Date: 2018-02-08 16:41 6 | */ 7 | INSERT INTO `shiro_role` (`id`,`create_time`,`role_name`) VALUES (1,'2018-02-05 11:22:09','管理员'); 8 | -------------------------------------------------------------------------------- /sql/shiro_user.sql: -------------------------------------------------------------------------------- 1 | /* 2 | -- Query: SELECT * FROM shiroDemo.shiro_user 3 | LIMIT 0, 1000 4 | 5 | -- Date: 2018-02-08 16:41 6 | */ 7 | INSERT INTO `shiro_user` (`id`,`create_time`,`password`,`status`,`username`) VALUES (2,NULL,'5VIGn1Yz66kevrJEWjT4pw==','1','admin'); 8 | INSERT INTO `shiro_user` (`id`,`create_time`,`password`,`status`,`username`) VALUES (47,'2018-02-05 17:05:02','cSbmvFebb1glkQvPG02RgA==','1','test'); 9 | -------------------------------------------------------------------------------- /sql/shiro_user_role.sql: -------------------------------------------------------------------------------- 1 | /* 2 | -- Query: SELECT * FROM shiroDemo.shiro_user_role 3 | LIMIT 0, 1000 4 | 5 | -- Date: 2018-02-08 16:42 6 | */ 7 | INSERT INTO `shiro_user_role` (`user_id`,`role_id`) VALUES (2,1); 8 | INSERT INTO `shiro_user_role` (`user_id`,`role_id`) VALUES (47,1); 9 | --------------------------------------------------------------------------------