实例介绍
Shiro的简单登录,如若没有足够积分下载可留下邮箱或者私信我,直接发到你们邮箱,文章链接:https://blog.csdn.net/sutongxuevip/article/details/80584607
【实例截图】
【核心代码】
shiro
├── Doc
│ └── shiro.sql
├── mvnw
├── mvnw.cmd
├── pom.xml
├── shiro.iml
└── src
├── main
│ ├── java
│ │ └── com
│ │ └── springboot
│ │ └── shiro
│ │ ├── ShiroApplication.java
│ │ ├── app
│ │ │ ├── controller
│ │ │ │ ├── PageController.java
│ │ │ │ └── UserController.java
│ │ │ └── util
│ │ │ └── EncryptAes256.java
│ │ ├── common
│ │ │ ├── Logs.java
│ │ │ └── ServiceException.java
│ │ ├── configurator
│ │ │ ├── MyShiroRealm.java
│ │ │ └── ShiroConfiguration.java
│ │ ├── mapper
│ │ │ ├── PermissionMapper.java
│ │ │ ├── RoleMapper.java
│ │ │ └── UserMapper.java
│ │ ├── model
│ │ │ ├── Permission.java
│ │ │ ├── PermissionExample.java
│ │ │ ├── Role.java
│ │ │ ├── RoleExample.java
│ │ │ ├── User.java
│ │ │ └── UserExample.java
│ │ └── service
│ │ ├── UserImpl.java
│ │ └── UserService.java
│ └── resources
│ ├── application.yml
│ ├── generatorConfig.xml
│ ├── mapper
│ │ ├── PermissionMapper.xml
│ │ ├── RoleMapper.xml
│ │ └── UserMapper.xml
│ ├── static
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── agile_board.html
│ │ ├── article.html
│ │ ├── badges_labels.html
│ │ ├── basic_gallery.html
│ │ ├── blog.html
│ │ ├── blueimp.html
│ │ ├── buttons.html
│ │ ├── calendar.html
│ │ ├── carousel.html
│ │ ├── chat_view.html
│ │ ├── clients.html
│ │ ├── code_editor.html
│ │ ├── contacts.html
│ │ ├── css
│ │ │ ├── animate.css
│ │ │ ├── bootstrap-rtl.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrapValidator.min.css
│ │ │ ├── daterangepicker.css
│ │ │ ├── demo
│ │ │ │ └── webuploader-demo.css
│ │ │ ├── font-awesome.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── login.css
│ │ │ ├── patterns
│ │ │ │ ├── header-profile-skin-1.png
│ │ │ │ ├── header-profile-skin-3.png
│ │ │ │ ├── header-profile.png
│ │ │ │ └── shattered.png
│ │ │ ├── plugins
│ │ │ │ ├── awesome-bootstrap-checkbox
│ │ │ │ │ └── awesome-bootstrap-checkbox.css
│ │ │ │ ├── blueimp
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── blueimp-gallery-indicator.css
│ │ │ │ │ │ ├── blueimp-gallery-video.css
│ │ │ │ │ │ ├── blueimp-gallery.css
│ │ │ │ │ │ ├── blueimp-gallery.min.css
│ │ │ │ │ │ └── demo.css
│ │ │ │ │ └── img
│ │ │ │ │ ├── error.png
│ │ │ │ │ ├── error.svg
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── play-pause.png
│ │ │ │ │ ├── play-pause.svg
│ │ │ │ │ ├── video-play.png
│ │ │ │ │ └── video-play.svg
│ │ │ │ ├── bootstrap-table
│ │ │ │ │ └── bootstrap-table.min.css
│ │ │ │ ├── chosen
│ │ │ │ │ ├── chosen-sprite.png
│ │ │ │ │ ├── chosen-sprite@2x.png
│ │ │ │ │ └── chosen.css
│ │ │ │ ├── clockpicker
│ │ │ │ │ └── clockpicker.css
│ │ │ │ ├── codemirror
│ │ │ │ │ ├── ambiance.css
│ │ │ │ │ └── codemirror.css
│ │ │ │ ├── colorpicker
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── bootstrap-colorpicker.min.css
│ │ │ │ │ └── img
│ │ │ │ │ └── bootstrap-colorpicker
│ │ │ │ │ ├── alpha-horizontal.png
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ ├── cropper
│ │ │ │ │ └── cropper.min.css
│ │ │ │ ├── dataTables
│ │ │ │ │ └── dataTables.bootstrap.css
│ │ │ │ ├── datapicker
│ │ │ │ │ └── datepicker3.css
│ │ │ │ ├── dropzone
│ │ │ │ │ ├── basic.css
│ │ │ │ │ └── dropzone.css
│ │ │ │ ├── duallistbox
│ │ │ │ │ └── bootstrap-duallistbox.css
│ │ │ │ ├── footable
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── footable.eot
│ │ │ │ │ │ ├── footable.svg
│ │ │ │ │ │ ├── footable.ttf
│ │ │ │ │ │ └── footable.woff
│ │ │ │ │ └── footable.core.css
│ │ │ │ ├── fullcalendar
│ │ │ │ │ ├── fullcalendar.css
│ │ │ │ │ └── fullcalendar.print.css
│ │ │ │ ├── iCheck
│ │ │ │ │ ├── custom.css
│ │ │ │ │ ├── green.png
│ │ │ │ │ └── green@2x.png
│ │ │ │ ├── images
│ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ ├── sprite-skin-flat.png
│ │ │ │ │ ├── spritemap.png
│ │ │ │ │ └── spritemap@2x.png
│ │ │ │ ├── ionRangeSlider
│ │ │ │ │ ├── ion.rangeSlider.css
│ │ │ │ │ └── ion.rangeSlider.skinFlat.css
│ │ │ │ ├── jQueryUI
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ └── ui-icons_888888_256x240.png
│ │ │ │ │ └── jquery-ui-1.10.4.custom.min.css
│ │ │ │ ├── jasny
│ │ │ │ │ └── jasny-bootstrap.min.css
│ │ │ │ ├── jqgrid
│ │ │ │ │ └── ui.jqgrid.css
│ │ │ │ ├── jsTree
│ │ │ │ │ ├── 32px.png
│ │ │ │ │ ├── style.min.css
│ │ │ │ │ └── throbber.gif
│ │ │ │ ├── markdown
│ │ │ │ │ └── bootstrap-markdown.min.css
│ │ │ │ ├── morris
│ │ │ │ │ └── morris-0.4.3.min.css
│ │ │ │ ├── multiselect
│ │ │ │ │ └── bootstrap-multiselect.css
│ │ │ │ ├── nouslider
│ │ │ │ │ └── jquery.nouislider.css
│ │ │ │ ├── plyr
│ │ │ │ │ ├── plyr.css
│ │ │ │ │ └── sprite.svg
│ │ │ │ ├── simditor
│ │ │ │ │ └── simditor.css
│ │ │ │ ├── steps
│ │ │ │ │ └── jquery.steps.css
│ │ │ │ ├── summernote
│ │ │ │ │ ├── summernote-bs3.css
│ │ │ │ │ └── summernote.css
│ │ │ │ ├── sweetalert
│ │ │ │ │ └── sweetalert.css
│ │ │ │ ├── switchery
│ │ │ │ │ └── switchery.css
│ │ │ │ ├── toastr
│ │ │ │ │ └── toastr.min.css
│ │ │ │ ├── treeview
│ │ │ │ │ └── bootstrap-treeview.css
│ │ │ │ └── webuploader
│ │ │ │ └── webuploader.css
│ │ │ └── style.css
│ │ ├── css_animation.html
│ │ ├── diff.html
│ │ ├── docs
│ │ │ ├── img
│ │ │ │ ├── index_4.png
│ │ │ │ ├── page.png
│ │ │ │ ├── preview.png
│ │ │ │ └── rtl_support.png
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ ├── prettify.css
│ │ │ └── prettify.js
│ │ ├── draggable_panels.html
│ │ ├── empty_page.html
│ │ ├── faq.html
│ │ ├── favicon.ico
│ │ ├── file_manager.html
│ │ ├── fontawesome.html
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── form_advanced.html
│ │ ├── form_avatar.html
│ │ ├── form_basic.html
│ │ ├── form_builder.html
│ │ ├── form_editors.html
│ │ ├── form_file_upload.html
│ │ ├── form_markdown.html
│ │ ├── form_simditor.html
│ │ ├── form_validate.html
│ │ ├── form_webuploader.html
│ │ ├── form_wizard.html
│ │ ├── forum_main.html
│ │ ├── fullavatareditor
│ │ │ ├── asp
│ │ │ │ ├── Upload.asp
│ │ │ │ └── Upload.asp.cls
│ │ │ ├── asp.net
│ │ │ │ ├── c#
│ │ │ │ │ ├── Upload.aspx
│ │ │ │ │ ├── Upload.aspx.cs
│ │ │ │ │ └── bin
│ │ │ │ │ └── Newtonsoft.Json.dll
│ │ │ │ └── vb
│ │ │ │ ├── Upload.aspx
│ │ │ │ ├── Upload.aspx.vb
│ │ │ │ └── bin
│ │ │ │ └── Newtonsoft.Json.dll
│ │ │ ├── crossdomain.xml
│ │ │ ├── expressInstall.swf
│ │ │ ├── fullAvatarEditor.swf
│ │ │ ├── jsp
│ │ │ │ ├── WEB-INF
│ │ │ │ │ └── lib
│ │ │ │ │ ├── commons-fileupload-1.3.jar
│ │ │ │ │ └── fastjson-1.1.9.jar
│ │ │ │ └── upload.jsp
│ │ │ ├── php
│ │ │ │ └── upload.php
│ │ │ ├── scripts
│ │ │ │ ├── fullAvatarEditor.js
│ │ │ │ ├── jQuery.Cookie.js
│ │ │ │ ├── jQuery.Drag.js
│ │ │ │ ├── jQuery.Resize.js
│ │ │ │ ├── jQuery.dialog.js
│ │ │ │ ├── swfobject.js
│ │ │ │ └── test.js
│ │ │ └── simpleDemo.html
│ │ ├── glyphicons.html
│ │ ├── graph_echarts.html
│ │ ├── graph_flot.html
│ │ ├── graph_metrics.html
│ │ ├── graph_morris.html
│ │ ├── graph_peity.html
│ │ ├── graph_rickshaw.html
│ │ ├── graph_sparkline.html
│ │ ├── grid_options.html
│ │ ├── iconfont.html
│ │ ├── ie.html
│ │ ├── images
│ │ │ ├── 1.png
│ │ │ ├── 11401.jpg
│ │ │ ├── 11402.jpg
│ │ │ ├── 11403.jpg
│ │ │ ├── bbg.jpg
│ │ │ ├── black_opac.png
│ │ │ ├── btn.jpg
│ │ │ ├── code_n.jpg
│ │ │ ├── dudu.jpg
│ │ │ ├── em
│ │ │ │ └── _add.png
│ │ │ ├── gallery
│ │ │ │ ├── image-1.jpg
│ │ │ │ ├── image-2.jpg
│ │ │ │ ├── image-3.jpg
│ │ │ │ ├── image-4.jpg
│ │ │ │ ├── image-5.jpg
│ │ │ │ ├── image-6.jpg
│ │ │ │ ├── thumb-1.jpg
│ │ │ │ ├── thumb-2.jpg
│ │ │ │ ├── thumb-3.jpg
│ │ │ │ ├── thumb-4.jpg
│ │ │ │ ├── thumb-5.jpg
│ │ │ │ └── thumb-6.jpg
│ │ │ ├── gongzhon.png
│ │ │ ├── icon_passw.png
│ │ │ ├── icon_user.png
│ │ │ ├── login_n.png
│ │ │ ├── login_n_1.png
│ │ │ ├── login_n_1_1.png
│ │ │ ├── logintop.png
│ │ │ ├── logo.png
│ │ │ ├── owl-login-arm.png
│ │ │ ├── owl-login-arm@2x.png
│ │ │ ├── owl-login.png
│ │ │ ├── owl-login@2x.png
│ │ │ ├── pass_n.jpg
│ │ │ ├── ph-owl-arm.png
│ │ │ ├── ph-owl-arm@2x.png
│ │ │ ├── ph-owl-arml.png
│ │ │ ├── ph-owl-arml@2x.png
│ │ │ ├── qq.png
│ │ │ ├── signup-arm.png
│ │ │ ├── signup-arm@2x.png
│ │ │ ├── uploadpic.png
│ │ │ ├── user_n.jpg
│ │ │ └── white_opac.png
│ │ ├── img
│ │ │ ├── a1.jpg
│ │ │ ├── a2.jpg
│ │ │ ├── a3.jpg
│ │ │ ├── a4.jpg
│ │ │ ├── a5.jpg
│ │ │ ├── a6.jpg
│ │ │ ├── a7.jpg
│ │ │ ├── a8.jpg
│ │ │ ├── a9.jpg
│ │ │ ├── bg.png
│ │ │ ├── browser.png
│ │ │ ├── browser.psd
│ │ │ ├── iconfont-logo.png
│ │ │ ├── icons.png
│ │ │ ├── index.jpg
│ │ │ ├── index_4.jpg
│ │ │ ├── loading-upload.gif
│ │ │ ├── locked.png
│ │ │ ├── login-background.jpg
│ │ │ ├── p1.jpg
│ │ │ ├── p2.jpg
│ │ │ ├── p3.jpg
│ │ │ ├── p_big1.jpg
│ │ │ ├── p_big2.jpg
│ │ │ ├── p_big3.jpg
│ │ │ ├── pay.png
│ │ │ ├── profile.jpg
│ │ │ ├── profile_big.jpg
│ │ │ ├── profile_small.jpg
│ │ │ ├── progress.png
│ │ │ ├── qr_code.png
│ │ │ ├── sprite-skin-flat.png
│ │ │ ├── success.png
│ │ │ ├── user.png
│ │ │ ├── webuploader.png
│ │ │ └── wenku_logo.png
│ │ ├── index.html
│ │ ├── index_v1.html
│ │ ├── index_v2.html
│ │ ├── index_v3.html
│ │ ├── index_v4.html
│ │ ├── index_v5.html
│ │ ├── invoice.html
│ │ ├── invoice_print.html
│ │ ├── js
│ │ │ ├── base.js
│ │ │ ├── bootstrap-table-en-US.min.js
│ │ │ ├── bootstrap-table-ja-JP.min.js
│ │ │ ├── bootstrap-table-ko-KR.min.js
│ │ │ ├── bootstrap-table-zh-CN.min.js
│ │ │ ├── bootstrap-table-zh-TW.min.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── bootstrapValidator.min.js
│ │ │ ├── contabs.js
│ │ │ ├── content.js
│ │ │ ├── daterangepicker-en-US.js
│ │ │ ├── daterangepicker-zh-CN.js
│ │ │ ├── daterangepicker.js
│ │ │ ├── demo
│ │ │ │ ├── bootstrap-table-demo.js
│ │ │ │ ├── bootstrap_table_test.json
│ │ │ │ ├── bootstrap_table_test2.json
│ │ │ │ ├── echarts-demo.js
│ │ │ │ ├── flot-demo.js
│ │ │ │ ├── form-advanced-demo.js
│ │ │ │ ├── form-validate-demo.js
│ │ │ │ ├── layer-demo.js
│ │ │ │ ├── morris-demo.js
│ │ │ │ ├── peity-demo.js
│ │ │ │ ├── photos.json
│ │ │ │ ├── rickshaw-demo.js
│ │ │ │ ├── sparkline-demo.js
│ │ │ │ ├── table_base.json
│ │ │ │ ├── treeview-demo.js
│ │ │ │ └── webuploader-demo.js
│ │ │ ├── hplus.js
│ │ │ ├── jquery-ui-1.10.4.min.js
│ │ │ ├── jquery-ui.custom.min.js
│ │ │ ├── jquery.i18n.properties-1.0.9.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.min.map
│ │ │ ├── jquery.serializejson.min.js
│ │ │ ├── moment-with-locales.min.js
│ │ │ ├── moment.min.js
│ │ │ ├── pageLogin.js
│ │ │ ├── plugins
│ │ │ │ ├── beautifyhtml
│ │ │ │ │ └── beautifyhtml.js
│ │ │ │ ├── blueimp
│ │ │ │ │ └── jquery.blueimp-gallery.min.js
│ │ │ │ ├── bootstrap-table
│ │ │ │ │ ├── bootstrap-table-mobile.min.js
│ │ │ │ │ ├── bootstrap-table.min.js
│ │ │ │ │ └── locale
│ │ │ │ │ ├── bootstrap-table-zh-CN.js
│ │ │ │ │ └── bootstrap-table-zh-CN.min.js
│ │ │ │ ├── chartJs
│ │ │ │ │ └── Chart.min.js
│ │ │ │ ├── chosen
│ │ │ │ │ └── chosen.jquery.js
│ │ │ │ ├── clockpicker
│ │ │ │ │ └── clockpicker.js
│ │ │ │ ├── codemirror
│ │ │ │ │ ├── codemirror.js
│ │ │ │ │ └── mode
│ │ │ │ │ ├── apl
│ │ │ │ │ │ ├── apl.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── asterisk
│ │ │ │ │ │ ├── asterisk.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── clike
│ │ │ │ │ │ ├── clike.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── scala.html
│ │ │ │ │ ├── clojure
│ │ │ │ │ │ ├── clojure.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── cobol
│ │ │ │ │ │ ├── cobol.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── coffeescript
│ │ │ │ │ │ ├── coffeescript.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── commonlisp
│ │ │ │ │ │ ├── commonlisp.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── css.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── less.html
│ │ │ │ │ │ ├── less_test.js
│ │ │ │ │ │ ├── scss.html
│ │ │ │ │ │ ├── scss_test.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── cypher
│ │ │ │ │ │ ├── cypher.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── d
│ │ │ │ │ │ ├── d.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── dart
│ │ │ │ │ │ ├── dart.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── diff
│ │ │ │ │ │ ├── diff.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── django
│ │ │ │ │ │ ├── django.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── dockerfile
│ │ │ │ │ │ ├── dockerfile.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── dtd
│ │ │ │ │ │ ├── dtd.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── dylan
│ │ │ │ │ │ ├── dylan.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── ebnf
│ │ │ │ │ │ ├── ebnf.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── ecl
│ │ │ │ │ │ ├── ecl.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── eiffel
│ │ │ │ │ │ ├── eiffel.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── erlang
│ │ │ │ │ │ ├── erlang.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── fortran
│ │ │ │ │ │ ├── fortran.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── gas
│ │ │ │ │ │ ├── gas.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── gfm
│ │ │ │ │ │ ├── gfm.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── gherkin
│ │ │ │ │ │ ├── gherkin.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── go
│ │ │ │ │ │ ├── go.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── groovy
│ │ │ │ │ │ ├── groovy.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── haml
│ │ │ │ │ │ ├── haml.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── haskell
│ │ │ │ │ │ ├── haskell.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── haxe
│ │ │ │ │ │ ├── haxe.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── htmlembedded
│ │ │ │ │ │ ├── htmlembedded.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── htmlmixed
│ │ │ │ │ │ ├── htmlmixed.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── http
│ │ │ │ │ │ ├── http.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── idl
│ │ │ │ │ │ ├── idl.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── jade
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jade.js
│ │ │ │ │ ├── javascript
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ ├── json-ld.html
│ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ └── typescript.html
│ │ │ │ │ ├── jinja2
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jinja2.js
│ │ │ │ │ ├── julia
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── julia.js
│ │ │ │ │ ├── kotlin
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── kotlin.js
│ │ │ │ │ ├── livescript
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── livescript.js
│ │ │ │ │ ├── lua
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── lua.js
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── markdown.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── meta.js
│ │ │ │ │ ├── mirc
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── mirc.js
│ │ │ │ │ ├── mllike
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── mllike.js
│ │ │ │ │ ├── modelica
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── modelica.js
│ │ │ │ │ ├── nginx
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── nginx.js
│ │ │ │ │ ├── ntriples
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── ntriples.js
│ │ │ │ │ ├── octave
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── octave.js
│ │ │ │ │ ├── pascal
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── pascal.js
│ │ │ │ │ ├── pegjs
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── pegjs.js
│ │ │ │ │ ├── perl
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── perl.js
│ │ │ │ │ ├── php
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── php.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── pig
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── pig.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── properties.js
│ │ │ │ │ ├── puppet
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── puppet.js
│ │ │ │ │ ├── python
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── python.js
│ │ │ │ │ ├── q
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── q.js
│ │ │ │ │ ├── r
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── r.js
│ │ │ │ │ ├── rpm
│ │ │ │ │ │ ├── changes
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── rpm.js
│ │ │ │ │ ├── rst
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── rst.js
│ │ │ │ │ ├── ruby
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── ruby.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── rust
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── rust.js
│ │ │ │ │ ├── sass
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── sass.js
│ │ │ │ │ ├── scheme
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── scheme.js
│ │ │ │ │ ├── shell
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── shell.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── sieve
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── sieve.js
│ │ │ │ │ ├── slim
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── slim.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── smalltalk
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── smalltalk.js
│ │ │ │ │ ├── smarty
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── smarty.js
│ │ │ │ │ ├── smartymixed
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── smartymixed.js
│ │ │ │ │ ├── solr
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── solr.js
│ │ │ │ │ ├── soy
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── soy.js
│ │ │ │ │ ├── sparql
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── sparql.js
│ │ │ │ │ ├── spreadsheet
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── spreadsheet.js
│ │ │ │ │ ├── sql
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── sql.js
│ │ │ │ │ ├── stex
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── stex.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── tcl
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── tcl.js
│ │ │ │ │ ├── textile
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ └── textile.js
│ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ │ └── tiddlywiki.js
│ │ │ │ │ ├── tiki
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── tiki.css
│ │ │ │ │ │ └── tiki.js
│ │ │ │ │ ├── toml
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── toml.js
│ │ │ │ │ ├── tornado
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── tornado.js
│ │ │ │ │ ├── turtle
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── turtle.js
│ │ │ │ │ ├── vb
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── vb.js
│ │ │ │ │ ├── vbscript
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── vbscript.js
│ │ │ │ │ ├── velocity
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── velocity.js
│ │ │ │ │ ├── verilog
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ └── verilog.js
│ │ │ │ │ ├── xml
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ └── xml.js
│ │ │ │ │ ├── xquery
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ └── xquery.js
│ │ │ │ │ ├── yaml
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── yaml.js
│ │ │ │ │ └── z80
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── z80.js
│ │ │ │ ├── colorpicker
│ │ │ │ │ └── bootstrap-colorpicker.min.js
│ │ │ │ ├── cropper
│ │ │ │ │ └── cropper.min.js
│ │ │ │ ├── dataTables
│ │ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ │ └── jquery.dataTables.js
│ │ │ │ ├── datapicker
│ │ │ │ │ └── bootstrap-datepicker.js
│ │ │ │ ├── diff_match_patch
│ │ │ │ │ └── diff_match_patch.js
│ │ │ │ ├── dropzone
│ │ │ │ │ └── dropzone.js
│ │ │ │ ├── duallistbox
│ │ │ │ │ └── jquery.bootstrap-duallistbox.js
│ │ │ │ ├── easypiechart
│ │ │ │ │ └── jquery.easypiechart.js
│ │ │ │ ├── echarts
│ │ │ │ │ └── echarts-all.js
│ │ │ │ ├── fancybox
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── fancybox_loading.gif
│ │ │ │ │ ├── fancybox_loading@2x.gif
│ │ │ │ │ ├── fancybox_overlay.png
│ │ │ │ │ ├── fancybox_sprite.png
│ │ │ │ │ ├── fancybox_sprite@2x.png
│ │ │ │ │ ├── jquery.fancybox.css
│ │ │ │ │ └── jquery.fancybox.js
│ │ │ │ ├── flot
│ │ │ │ │ ├── curvedLines.js
│ │ │ │ │ ├── jquery.flot.js
│ │ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ │ ├── jquery.flot.spline.js
│ │ │ │ │ ├── jquery.flot.symbol.js
│ │ │ │ │ └── jquery.flot.tooltip.min.js
│ │ │ │ ├── footable
│ │ │ │ │ └── footable.all.min.js
│ │ │ │ ├── fullcalendar
│ │ │ │ │ ├── fullcalendar.min.js
│ │ │ │ │ └── moment.min.js
│ │ │ │ ├── gritter
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── gritter-light.png
│ │ │ │ │ │ ├── gritter.png
│ │ │ │ │ │ └── ie-spacer.gif
│ │ │ │ │ ├── jquery.gritter.css
│ │ │ │ │ └── jquery.gritter.min.js
│ │ │ │ ├── iCheck
│ │ │ │ │ └── icheck.min.js
│ │ │ │ ├── ionRangeSlider
│ │ │ │ │ ├── ion.rangeSlider.min.js
│ │ │ │ │ └── jasny
│ │ │ │ │ └── jasny-bootstrap.min.js
│ │ │ │ ├── jasny
│ │ │ │ │ └── jasny-bootstrap.min.js
│ │ │ │ ├── jeditable
│ │ │ │ │ └── jquery.jeditable.js
│ │ │ │ ├── jqgrid
│ │ │ │ │ ├── i18n
│ │ │ │ │ │ └── grid.locale-cn.js
│ │ │ │ │ └── jquery.jqGrid.min.js
│ │ │ │ ├── jquery-ui
│ │ │ │ │ └── jquery-ui.min.js
│ │ │ │ ├── jsKnob
│ │ │ │ │ └── jquery.knob.js
│ │ │ │ ├── jsTree
│ │ │ │ │ ├── jstree.js
│ │ │ │ │ └── jstree.min.js
│ │ │ │ ├── jvectormap
│ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── extend
│ │ │ │ │ │ └── layer.ext.js
│ │ │ │ │ ├── laydate
│ │ │ │ │ │ ├── laydate.js
│ │ │ │ │ │ ├── need
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── skins
│ │ │ │ │ │ └── default
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ ├── layer.min.js
│ │ │ │ │ ├── layim
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── chatlog.json
│ │ │ │ │ │ │ ├── friend.json
│ │ │ │ │ │ │ ├── group.json
│ │ │ │ │ │ │ └── groups.json
│ │ │ │ │ │ ├── layim.css
│ │ │ │ │ │ ├── layim.js
│ │ │ │ │ │ └── loading.gif
│ │ │ │ │ └── skin
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── icon_ext.png
│ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ ├── loading-2.gif
│ │ │ │ │ │ ├── textbg.png
│ │ │ │ │ │ ├── xubox_ico0.png
│ │ │ │ │ │ ├── xubox_loading0.gif
│ │ │ │ │ │ ├── xubox_loading1.gif
│ │ │ │ │ │ ├── xubox_loading2.gif
│ │ │ │ │ │ ├── xubox_loading3.gif
│ │ │ │ │ │ └── xubox_title0.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── layer.ext.css
│ │ │ │ │ └── moon
│ │ │ │ │ ├── default.png
│ │ │ │ │ └── style.css
│ │ │ │ ├── markdown
│ │ │ │ │ ├── bootstrap-markdown.js
│ │ │ │ │ ├── bootstrap-markdown.zh.js
│ │ │ │ │ ├── markdown.js
│ │ │ │ │ └── to-markdown.js
│ │ │ │ ├── metisMenu
│ │ │ │ │ └── jquery.metisMenu.js
│ │ │ │ ├── morris
│ │ │ │ │ ├── morris.js
│ │ │ │ │ └── raphael-2.1.0.min.js
│ │ │ │ ├── multiselect
│ │ │ │ │ └── bootstrap-multiselect.js
│ │ │ │ ├── nestable
│ │ │ │ │ └── jquery.nestable.js
│ │ │ │ ├── nouslider
│ │ │ │ │ └── jquery.nouislider.min.js
│ │ │ │ ├── pace
│ │ │ │ │ └── pace.min.js
│ │ │ │ ├── peity
│ │ │ │ │ └── jquery.peity.min.js
│ │ │ │ ├── plyr
│ │ │ │ │ └── plyr.js
│ │ │ │ ├── preetyTextDiff
│ │ │ │ │ └── jquery.pretty-text-diff.min.js
│ │ │ │ ├── prettyfile
│ │ │ │ │ └── bootstrap-prettyfile.js
│ │ │ │ ├── rickshaw
│ │ │ │ │ ├── rickshaw.min.js
│ │ │ │ │ └── vendor
│ │ │ │ │ └── d3.v3.js
│ │ │ │ ├── simditor
│ │ │ │ │ ├── hotkeys.js
│ │ │ │ │ ├── hotkeys.min.js
│ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ ├── module.js
│ │ │ │ │ ├── module.min.js
│ │ │ │ │ ├── simditor.js
│ │ │ │ │ ├── simditor.min.js
│ │ │ │ │ ├── uploader.js
│ │ │ │ │ └── uploader.min.js
│ │ │ │ ├── slimscroll
│ │ │ │ │ └── jquery.slimscroll.min.js
│ │ │ │ ├── sparkline
│ │ │ │ │ └── jquery.sparkline.min.js
│ │ │ │ ├── staps
│ │ │ │ │ └── jquery.steps.min.js
│ │ │ │ ├── suggest
│ │ │ │ │ ├── bootstrap-suggest.min.js
│ │ │ │ │ └── data.json
│ │ │ │ ├── summernote
│ │ │ │ │ ├── summernote-zh-CN.js
│ │ │ │ │ └── summernote.min.js
│ │ │ │ ├── sweetalert
│ │ │ │ │ └── sweetalert.min.js
│ │ │ │ ├── switchery
│ │ │ │ │ └── switchery.js
│ │ │ │ ├── toastr
│ │ │ │ │ ├── showToastr.js
│ │ │ │ │ └── toastr.min.js
│ │ │ │ ├── treeview
│ │ │ │ │ └── bootstrap-treeview.js
│ │ │ │ ├── validate
│ │ │ │ │ ├── additional-methods.min.js
│ │ │ │ │ ├── jquery.validate.min.js
│ │ │ │ │ └── messages_zh.min.js
│ │ │ │ └── webuploader
│ │ │ │ ├── README.md
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.custom.js
│ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ ├── webuploader.fis.js
│ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ ├── webuploader.html5only.js
│ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ ├── webuploader.js
│ │ │ │ ├── webuploader.min.js
│ │ │ │ ├── webuploader.noimage.js
│ │ │ │ ├── webuploader.noimage.min.js
│ │ │ │ ├── webuploader.nolog.js
│ │ │ │ ├── webuploader.nolog.min.js
│ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ └── welcome.js
│ │ ├── jstree.html
│ │ ├── layer.html
│ │ ├── layerdate.html
│ │ ├── layouts.html
│ │ ├── lockscreen.html
│ │ ├── login
│ │ │ ├── jq22.css
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ └── jquery.messager.js
│ │ ├── login.html
│ │ ├── login_v2.html
│ │ ├── mail_compose.html
│ │ ├── mail_detail.html
│ │ ├── mailbox.html
│ │ ├── modal_window.html
│ │ ├── nestable_list.html
│ │ ├── notifications.html
│ │ ├── pin_board.html
│ │ ├── plyr.html
│ │ ├── profile.html
│ │ ├── project_detail.html
│ │ ├── projects.html
│ │ ├── register.html
│ │ ├── search_results.html
│ │ ├── social_feed.html
│ │ ├── spinners.html
│ │ ├── suggest.html
│ │ ├── sweetalert.html
│ │ ├── table_basic.html
│ │ ├── table_bootstrap.html
│ │ ├── table_data_tables.html
│ │ ├── table_foo_table.html
│ │ ├── table_jqgrid.html
│ │ ├── tabs_panels.html
│ │ ├── teams_board.html
│ │ ├── timeline.html
│ │ ├── timeline_v2.html
│ │ ├── toastr_notifications.html
│ │ ├── tree_view.html
│ │ ├── typography.html
│ │ ├── webim.html
│ │ └── widgets.html
│ └── templates
│ ├── index.html
│ └── login.html
└── test
└── java
└── com
└── springboot
└── shiro
└── ShiroApplicationTests.java
255 directories, 729 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论