├── src ├── main │ ├── resources │ │ ├── favicon.ico │ │ ├── static │ │ │ ├── img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 1_.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── aa.jpg │ │ │ │ ├── bg.jpg │ │ │ │ ├── book1.jpg │ │ │ │ ├── book2.jpg │ │ │ │ ├── book3.jpg │ │ │ │ ├── book4.jpg │ │ │ │ ├── photo.jpg │ │ │ │ ├── book1_.jpg │ │ │ │ ├── book2_.jpg │ │ │ │ ├── book3_.jpg │ │ │ │ ├── secured.jpg │ │ │ │ └── success.jpg │ │ │ ├── ckeditor │ │ │ │ ├── plugins │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── anchor.js │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ ├── widget │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── handle.png │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── about.js │ │ │ │ │ ├── balloonpanel │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ ├── moono │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── close.png │ │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── close.png │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── imagebase │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── imagebase.css │ │ │ │ │ ├── scayt │ │ │ │ │ │ ├── skins │ │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ │ │ └── scayt.css │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ └── LICENSE.md │ │ │ │ │ ├── balloontoolbar │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ ├── moono-lisa │ │ │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ │ │ ├── kama │ │ │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ │ │ ├── moono │ │ │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ │ │ └── default.css │ │ │ │ │ ├── easyimage │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── easyimagealt.js │ │ │ │ │ ├── specialchar │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ └── fr-ca.js │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ │ └── ja.js │ │ │ │ │ │ │ └── a11yhelp.js │ │ │ │ │ ├── wsc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── skins │ │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ │ │ └── wsc.css │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ │ └── tmpFrameset.html │ │ │ │ │ │ └── LICENSE.md │ │ │ │ │ └── tableselection │ │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── samples │ │ │ │ │ ├── img │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ ├── navigation-tip.png │ │ │ │ │ │ └── header-separator.png │ │ │ │ │ ├── old │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── uilanguages │ │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ │ └── outputxhtml │ │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ └── outputforflash.swf │ │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ ├── appendto.html │ │ │ │ │ │ ├── tabindex.html │ │ │ │ │ │ ├── uicolor.html │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ └── readonly.html │ │ │ │ │ ├── toolbarconfigurator │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ ├── fontello.eot │ │ │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ │ │ ├── fontello.woff │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ │ └── fontello.svg │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── codemirror │ │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── fontello.css │ │ │ │ │ └── js │ │ │ │ │ │ └── sample.js │ │ │ │ ├── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ ├── spinner.gif │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ │ └── lock-open.png │ │ │ │ │ │ └── lock-open.png │ │ │ │ │ │ └── readme.md │ │ │ │ ├── config.js │ │ │ │ ├── README.md │ │ │ │ └── adapters │ │ │ │ │ └── jquery.js │ │ │ ├── bootstrap │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ └── npm.js │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ ├── style3.css │ │ │ │ ├── style2.css │ │ │ │ ├── style4.css │ │ │ │ ├── base.css │ │ │ │ ├── adminStyle.css │ │ │ │ └── page.css │ │ │ └── js │ │ │ │ ├── messages_zh.js │ │ │ │ └── check.js │ │ ├── log4j.properties │ │ ├── templates │ │ │ ├── footer.html │ │ │ ├── failed.html │ │ │ ├── frontPage │ │ │ │ ├── topicFailed.html │ │ │ │ ├── noAuth.html │ │ │ │ ├── topicSuccess.html │ │ │ │ ├── home.html │ │ │ │ ├── addTopic.html │ │ │ │ ├── editTopic.html │ │ │ │ └── update.html │ │ │ ├── videoPlay.html │ │ │ ├── news.html │ │ │ ├── header.html │ │ │ ├── admin │ │ │ │ ├── uploadSuccess.html │ │ │ │ ├── user │ │ │ │ │ └── updateAdminPassword.html │ │ │ │ ├── adminLogin.html │ │ │ │ └── news │ │ │ │ │ ├── addNews.html │ │ │ │ │ └── editNews.html │ │ │ ├── about.html │ │ │ ├── register.html │ │ │ └── login.html │ │ ├── mybatis │ │ │ ├── mapper │ │ │ │ ├── VideoMapper.xml │ │ │ │ ├── SourceMapper.xml │ │ │ │ ├── AnswerMapper.xml │ │ │ │ ├── NewsMapper.xml │ │ │ │ ├── UserMapper.xml │ │ │ │ └── TopicMapper.xml │ │ │ └── mybatis_config.xml │ │ └── application.yml │ └── java │ │ └── com │ │ └── wulaobo │ │ ├── mapper │ │ ├── AdminMapper.java │ │ ├── VideoMapper.java │ │ ├── SourceMapper.java │ │ ├── NewsMapper.java │ │ ├── AnswerMapper.java │ │ ├── TopicMapper.java │ │ └── UserMapper.java │ │ ├── service │ │ ├── VideoService.java │ │ ├── SourceService.java │ │ ├── NewService.java │ │ ├── AnswerService.java │ │ ├── UserService.java │ │ ├── AdminService.java │ │ ├── TopicService.java │ │ └── impl │ │ │ ├── VideoServiceImpl.java │ │ │ ├── SourceServiceImpl.java │ │ │ ├── NewServiceImpl.java │ │ │ ├── AnswerServiceImpl.java │ │ │ ├── UserServiceImpl.java │ │ │ ├── AdminServiceImpl.java │ │ │ └── TopicServiceImpl.java │ │ ├── config │ │ ├── DruidConfiguration.java │ │ ├── interceptors │ │ │ └── LoginInterceptor.java │ │ └── WebConfigurer.java │ │ ├── utils │ │ ├── DateUtil.java │ │ └── MD5Utils.java │ │ ├── ExcellentcourseSpringbootApplication.java │ │ ├── bean │ │ ├── News.java │ │ ├── Source.java │ │ ├── Video.java │ │ ├── Answer.java │ │ ├── Topic.java │ │ └── User.java │ │ └── controller │ │ ├── AnswerController.java │ │ └── IndexController.java └── test │ └── java │ └── com │ └── wulaobo │ └── ExcellentcourseSpringbootApplicationTests.java ├── README.md └── .gitignore /src/main/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/1_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/1_.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/aa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/aa.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/photo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book1_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book1_.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book2_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book2_.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book3_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/book3_.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/secured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/secured.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/img/success.jpg -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # excellentcourse_springboot 3 | Spring Boot +Mybatis项目,支持视频在线播放功能 🎉 4 | 有问题的小伙伴可以随时交流,一起探讨技术难题!😄 5 | 6 | PS: 7 | 提供技术支持是收费的, 如帮忙本地运行项目, 改bug等, 服务收费,价格合理,有需要的可以加微信 15256247692 私聊,期待与你合作!💡 8 | -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /src/main/java/com/wulaobo/mapper/AdminMapper.java: -------------------------------------------------------------------------------- 1 | package com.wulaobo.mapper; 2 | 3 | import com.wulaobo.bean.User; 4 | 5 | public interface AdminMapper { 6 | User adminLogin(String username, String password); 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wulaobo/excellentcourse_springboot/HEAD/src/main/resources/static/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=DEBUG, stdout 2 | # Console output... 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n 6 | -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/plugins/imagebase/styles/imagebase.css: -------------------------------------------------------------------------------- 1 | [data-cke-caption-hidden] { 2 | display: none; 3 | } 4 | 5 | [data-cke-caption-placeholder]::before { 6 | display: inline; 7 | color: rgba( 0, 0, 0, .4 ); 8 | content: attr( data-cke-caption-placeholder ); 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/static/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /src/main/resources/templates/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
*/ include "assets/posteddata.php"; ?>
17 |
--------------------------------------------------------------------------------
/src/main/resources/static/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css:
--------------------------------------------------------------------------------
1 | .CodeMirror-hints {
2 | position: absolute;
3 | z-index: 10;
4 | overflow: hidden;
5 | list-style: none;
6 |
7 | margin: 0;
8 | padding: 2px;
9 |
10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2);
13 | border-radius: 3px;
14 | border: 1px solid silver;
15 |
16 | background: white;
17 | font-size: 90%;
18 | font-family: monospace;
19 |
20 | max-height: 20em;
21 | overflow-y: auto;
22 | }
23 |
24 | .CodeMirror-hint {
25 | margin: 0;
26 | padding: 0 4px;
27 | border-radius: 2px;
28 | max-width: 19em;
29 | overflow: hidden;
30 | white-space: pre;
31 | color: black;
32 | cursor: pointer;
33 | }
34 |
35 | li.CodeMirror-hint-active {
36 | background: #08f;
37 | color: white;
38 | }
39 |
--------------------------------------------------------------------------------
/src/main/resources/static/css/style4.css:
--------------------------------------------------------------------------------
1 | .pageSidebar{
2 | width: 240px;
3 | height:100%;
4 | padding-bottom: 30px;
5 | overflow: auto;
6 | background-color: #e3e3e3;
7 | }
8 | .splitter {
9 | width: 3px;
10 | height: 100%;
11 | bottom: 0;
12 | left: 240px;
13 | position: absolute;
14 | overflow: hidden;
15 | background-color: #555;
16 | }
17 | .pageContent{
18 | height: 100%;
19 | min-width: 768px;
20 | left: 246px;
21 | top: 0;
22 | right: 0;
23 | z-index: 3;
24 | padding-bottom: 30px;
25 | position: absolute;
26 | }
27 | .pageContainer{
28 | bottom: 0;
29 | left:0;
30 | right: 0;
31 | top: 53px;
32 | overflow: auto;
33 | position: absolute;
34 | width: 100%;
35 | }
36 | #copyright {
37 | margin-top: 0;
38 | left: 0;
39 | right: 0;
40 | bottom: 0;
41 | position: absolute;
42 | z-index: 10;
43 | }
--------------------------------------------------------------------------------
/src/main/resources/mybatis/mybatis_config.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
4 |
5 | 6 | 7 | 8 | 9 | 10 |
25 | 26 |