基本信息
源码名称:大学生自主学习平台
源码大小:52.66M
文件格式:.zip
开发语言:Java
更新时间:2022-01-15
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

大学生自主学习平台


在分析网上已经有的学习平台基础上,本人对教学辅助平台进行深入研究和多方比较,终于设计开发出了一种基于Java Web的网络教学辅助平台。网络教学辅助平台的前台浏览页面使用Java作为开发语言,后台采用MySQL-5.6版本的数据库,开发工具使用IDEA,服务器使用Tomcat8.5,结构采用B / S结构


.
├── learnSys
│   ├── learn.sql
│   ├── learnSys.iml
│   ├── pom.xml
│   ├── src
│   │   └── main
│   │       ├── java
│   │       │   └── com
│   │       │       └── xafdy
│   │       │           ├── dao
│   │       │           │   ├── AdminMapper.java
│   │       │           │   ├── CollegeMapper.java
│   │       │           │   ├── CourseFileMapper.java
│   │       │           │   ├── CourseMapper.java
│   │       │           │   ├── CourseVideoMapper.java
│   │       │           │   ├── DiscussMapper.java
│   │       │           │   ├── DiscussPostMapper.java
│   │       │           │   ├── NoticeMapper.java
│   │       │           │   ├── StudentMapper.java
│   │       │           │   ├── StudentTaskMapper.java
│   │       │           │   ├── TaskMapper.java
│   │       │           │   ├── TaskQuestionMapper.java
│   │       │           │   └── TeacherMapper.java
│   │       │           ├── dto
│   │       │           │   └── Answer.java
│   │       │           ├── model
│   │       │           │   ├── Admin.java
│   │       │           │   ├── AdminExample.java
│   │       │           │   ├── College.java
│   │       │           │   ├── CollegeExample.java
│   │       │           │   ├── Course.java
│   │       │           │   ├── CourseExample.java
│   │       │           │   ├── CourseFile.java
│   │       │           │   ├── CourseFileExample.java
│   │       │           │   ├── CourseVideo.java
│   │       │           │   ├── CourseVideoExample.java
│   │       │           │   ├── Discuss.java
│   │       │           │   ├── DiscussExample.java
│   │       │           │   ├── DiscussPost.java
│   │       │           │   ├── DiscussPostExample.java
│   │       │           │   ├── Notice.java
│   │       │           │   ├── NoticeExample.java
│   │       │           │   ├── Student.java
│   │       │           │   ├── StudentExample.java
│   │       │           │   ├── StudentTask.java
│   │       │           │   ├── StudentTaskExample.java
│   │       │           │   ├── Task.java
│   │       │           │   ├── TaskExample.java
│   │       │           │   ├── TaskQuestion.java
│   │       │           │   ├── TaskQuestionExample.java
│   │       │           │   ├── Teacher.java
│   │       │           │   └── TeacherExample.java
│   │       │           ├── service
│   │       │           │   └── IndexService.java
│   │       │           ├── util
│   │       │           │   ├── Constant.java
│   │       │           │   ├── LoginIntecepter.java
│   │       │           │   └── MD5Util.java
│   │       │           └── web
│   │       │               └── IndexController.java
│   │       ├── resources
│   │       │   ├── applicationContext.xml
│   │       │   ├── jdbc.properties
│   │       │   ├── learn.sql
│   │       │   ├── log4j.properties
│   │       │   ├── log4j2.xml
│   │       │   ├── mapper
│   │       │   │   ├── AdminMapper.xml
│   │       │   │   ├── CollegeMapper.xml
│   │       │   │   ├── CollegeVideoMapper.xml
│   │       │   │   ├── CourseFileMapper.xml
│   │       │   │   ├── CourseMapper.xml
│   │       │   │   ├── DiscussMapper.xml
│   │       │   │   ├── DiscussPostMapper.xml
│   │       │   │   ├── NoticeMapper.xml
│   │       │   │   ├── StudentMapper.xml
│   │       │   │   ├── StudentTaskMapper.xml
│   │       │   │   ├── TaskMapper.xml
│   │       │   │   ├── TaskQuestionMapper.xml
│   │       │   │   └── TeacherMapper.xml
│   │       │   ├── spring-datasource.xml
│   │       │   └── spring-service.xml
│   │       └── webapp
│   │           ├── WEB-INF
│   │           │   ├── jsp
│   │           │   │   ├── createCollege.jsp
│   │           │   │   ├── createCollegeFile.jsp
│   │           │   │   ├── createCollegeVideo.jsp
│   │           │   │   ├── createCourse.jsp
│   │           │   │   ├── createDiscuss.jsp
│   │           │   │   ├── createManyTeacher.jsp
│   │           │   │   ├── createNotice.jsp
│   │           │   │   ├── createQuestion.jsp
│   │           │   │   ├── createReply.jsp
│   │           │   │   ├── createStudent.jsp
│   │           │   │   ├── createTask.jsp
│   │           │   │   ├── createTeacher.jsp
│   │           │   │   ├── downFile.jsp
│   │           │   │   ├── enterTask.jsp
│   │           │   │   ├── index.jsp
│   │           │   │   ├── logon.jsp
│   │           │   │   ├── logon123.jsp
│   │           │   │   ├── register.jsp
│   │           │   │   ├── searchCollege.jsp
│   │           │   │   ├── searchCollegeFile.jsp
│   │           │   │   ├── searchCollegeFileInfo.jsp
│   │           │   │   ├── searchCollegeVideo.jsp
│   │           │   │   ├── searchCollegeVideoInfo.jsp
│   │           │   │   ├── searchCourse.jsp
│   │           │   │   ├── searchCourseInfo.jsp
│   │           │   │   ├── searchDiscuss.jsp
│   │           │   │   ├── searchDiscussInfo.jsp
│   │           │   │   ├── searchDiscussReply.jsp
│   │           │   │   ├── searchNotice.jsp
│   │           │   │   ├── searchNoticeInfo.jsp
│   │           │   │   ├── searchStudent.jsp
│   │           │   │   ├── searchStudentTaskInfo.jsp
│   │           │   │   ├── searchTask.jsp
│   │           │   │   ├── searchTaskInfo.jsp
│   │           │   │   ├── searchTaskQuestion.jsp
│   │           │   │   ├── searchTeacher.jsp
│   │           │   │   ├── studentIndex.jsp
│   │           │   │   ├── teacherIndex.jsp
│   │           │   │   ├── updateCollege.jsp
│   │           │   │   ├── updateCourse.jsp
│   │           │   │   ├── updateDiscuss.jsp
│   │           │   │   ├── updateNotice.jsp
│   │           │   │   ├── updateStudent.jsp
│   │           │   │   ├── updateStudentInfo.jsp
│   │           │   │   ├── updateTask.jsp
│   │           │   │   ├── updateTeacher.jsp
│   │           │   │   ├── updateTeacherInfo.jsp
│   │           │   │   └── watchVideo.jsp
│   │           │   └── web.xml
│   │           ├── index.jsp
│   │           ├── resource
│   │           │   ├── bootstrap
│   │           │   │   ├── css
│   │           │   │   │   ├── bootstrap-select.min.css
│   │           │   │   │   ├── bootstrap-theme.min.css
│   │           │   │   │   └── 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-select.min.js
│   │           │   │   │   └── bootstrap.min.js
│   │           │   │   └── less
│   │           │   │       ├── alerts.less
│   │           │   │       ├── badges.less
│   │           │   │       ├── bootstrap.less
│   │           │   │       ├── breadcrumbs.less
│   │           │   │       ├── button-groups.less
│   │           │   │       ├── buttons.less
│   │           │   │       ├── carousel.less
│   │           │   │       ├── close.less
│   │           │   │       ├── code.less
│   │           │   │       ├── component-animations.less
│   │           │   │       ├── dropdowns.less
│   │           │   │       ├── forms.less
│   │           │   │       ├── glyphicons.less
│   │           │   │       ├── grid.less
│   │           │   │       ├── input-groups.less
│   │           │   │       ├── jumbotron.less
│   │           │   │       ├── labels.less
│   │           │   │       ├── list-group.less
│   │           │   │       ├── media.less
│   │           │   │       ├── mixins
│   │           │   │       │   ├── alerts.less
│   │           │   │       │   ├── background-variant.less
│   │           │   │       │   ├── border-radius.less
│   │           │   │       │   ├── buttons.less
│   │           │   │       │   ├── center-block.less
│   │           │   │       │   ├── clearfix.less
│   │           │   │       │   ├── forms.less
│   │           │   │       │   ├── gradients.less
│   │           │   │       │   ├── grid-framework.less
│   │           │   │       │   ├── grid.less
│   │           │   │       │   ├── hide-text.less
│   │           │   │       │   ├── image.less
│   │           │   │       │   ├── labels.less
│   │           │   │       │   ├── list-group.less
│   │           │   │       │   ├── nav-divider.less
│   │           │   │       │   ├── nav-vertical-align.less
│   │           │   │       │   ├── opacity.less
│   │           │   │       │   ├── pagination.less
│   │           │   │       │   ├── panels.less
│   │           │   │       │   ├── progress-bar.less
│   │           │   │       │   ├── reset-filter.less
│   │           │   │       │   ├── reset-text.less
│   │           │   │       │   ├── resize.less
│   │           │   │       │   ├── responsive-visibility.less
│   │           │   │       │   ├── size.less
│   │           │   │       │   ├── tab-focus.less
│   │           │   │       │   ├── table-row.less
│   │           │   │       │   ├── text-emphasis.less
│   │           │   │       │   ├── text-overflow.less
│   │           │   │       │   └── vendor-prefixes.less
│   │           │   │       ├── mixins.less
│   │           │   │       ├── modals.less
│   │           │   │       ├── navbar.less
│   │           │   │       ├── navs.less
│   │           │   │       ├── normalize.less
│   │           │   │       ├── pager.less
│   │           │   │       ├── pagination.less
│   │           │   │       ├── panels.less
│   │           │   │       ├── popovers.less
│   │           │   │       ├── print.less
│   │           │   │       ├── progress-bars.less
│   │           │   │       ├── responsive-embed.less
│   │           │   │       ├── responsive-utilities.less
│   │           │   │       ├── scaffolding.less
│   │           │   │       ├── tables.less
│   │           │   │       ├── theme.less
│   │           │   │       ├── thumbnails.less
│   │           │   │       ├── tooltip.less
│   │           │   │       ├── type.less
│   │           │   │       ├── utilities.less
│   │           │   │       ├── variables.less
│   │           │   │       └── wells.less
│   │           │   ├── css
│   │           │   │   ├── login.css
│   │           │   │   ├── util.css
│   │           │   │   └── wukong-ui.css
│   │           │   ├── images
│   │           │   │   ├── banner.png
│   │           │   │   ├── bg-01.jpg
│   │           │   │   ├── logon.png
│   │           │   │   ├── logon_bg.jpg
│   │           │   │   ├── status_no.png
│   │           │   │   └── status_yes.png
│   │           │   └── lib
│   │           │       ├── jquery-3.1.1.js
│   │           │       └── less.min.js
│   │           └── upload
│   │               └── learn
│   │                   ├── Spring MVC教程.pptx
│   │                   └── Web开发技术 00_00_00-00_02_00.mp4
│   └── target
│       ├── classes
│       │   ├── applicationContext.xml
│       │   ├── com
│       │   │   └── xafdy
│       │   │       ├── dao
│       │   │       │   ├── AdminMapper.class
│       │   │       │   ├── CollegeMapper.class
│       │   │       │   ├── CourseFileMapper.class
│       │   │       │   ├── CourseMapper.class
│       │   │       │   ├── CourseVideoMapper.class
│       │   │       │   ├── DiscussMapper.class
│       │   │       │   ├── DiscussPostMapper.class
│       │   │       │   ├── NoticeMapper.class
│       │   │       │   ├── StudentMapper.class
│       │   │       │   ├── StudentTaskMapper.class
│       │   │       │   ├── TaskMapper.class
│       │   │       │   ├── TaskQuestionMapper.class
│       │   │       │   └── TeacherMapper.class
│       │   │       ├── dto
│       │   │       │   └── Answer.class
│       │   │       ├── model
│       │   │       │   ├── Admin.class
│       │   │       │   ├── AdminExample$Criteria.class
│       │   │       │   ├── AdminExample$Criterion.class
│       │   │       │   ├── AdminExample$GeneratedCriteria.class
│       │   │       │   ├── AdminExample.class
│       │   │       │   ├── College.class
│       │   │       │   ├── CollegeExample$Criteria.class
│       │   │       │   ├── CollegeExample$Criterion.class
│       │   │       │   ├── CollegeExample$GeneratedCriteria.class
│       │   │       │   ├── CollegeExample.class
│       │   │       │   ├── Course.class
│       │   │       │   ├── CourseExample$Criteria.class
│       │   │       │   ├── CourseExample$Criterion.class
│       │   │       │   ├── CourseExample$GeneratedCriteria.class
│       │   │       │   ├── CourseExample.class
│       │   │       │   ├── CourseFile.class
│       │   │       │   ├── CourseFileExample$Criteria.class
│       │   │       │   ├── CourseFileExample$Criterion.class
│       │   │       │   ├── CourseFileExample$GeneratedCriteria.class
│       │   │       │   ├── CourseFileExample.class
│       │   │       │   ├── CourseVideo.class
│       │   │       │   ├── CourseVideoExample$Criteria.class
│       │   │       │   ├── CourseVideoExample$Criterion.class
│       │   │       │   ├── CourseVideoExample$GeneratedCriteria.class
│       │   │       │   ├── CourseVideoExample.class
│       │   │       │   ├── Discuss.class
│       │   │       │   ├── DiscussExample$Criteria.class
│       │   │       │   ├── DiscussExample$Criterion.class
│       │   │       │   ├── DiscussExample$GeneratedCriteria.class
│       │   │       │   ├── DiscussExample.class
│       │   │       │   ├── DiscussPost.class
│       │   │       │   ├── DiscussPostExample$Criteria.class
│       │   │       │   ├── DiscussPostExample$Criterion.class
│       │   │       │   ├── DiscussPostExample$GeneratedCriteria.class
│       │   │       │   ├── DiscussPostExample.class
│       │   │       │   ├── Notice.class
│       │   │       │   ├── NoticeExample$Criteria.class
│       │   │       │   ├── NoticeExample$Criterion.class
│       │   │       │   ├── NoticeExample$GeneratedCriteria.class
│       │   │       │   ├── NoticeExample.class
│       │   │       │   ├── Student.class
│       │   │       │   ├── StudentExample$Criteria.class
│       │   │       │   ├── StudentExample$Criterion.class
│       │   │       │   ├── StudentExample$GeneratedCriteria.class
│       │   │       │   ├── StudentExample.class
│       │   │       │   ├── StudentTask.class
│       │   │       │   ├── StudentTaskExample$Criteria.class
│       │   │       │   ├── StudentTaskExample$Criterion.class
│       │   │       │   ├── StudentTaskExample$GeneratedCriteria.class
│       │   │       │   ├── StudentTaskExample.class
│       │   │       │   ├── Task.class
│       │   │       │   ├── TaskExample$Criteria.class
│       │   │       │   ├── TaskExample$Criterion.class
│       │   │       │   ├── TaskExample$GeneratedCriteria.class
│       │   │       │   ├── TaskExample.class
│       │   │       │   ├── TaskQuestion.class
│       │   │       │   ├── TaskQuestionExample$Criteria.class
│       │   │       │   ├── TaskQuestionExample$Criterion.class
│       │   │       │   ├── TaskQuestionExample$GeneratedCriteria.class
│       │   │       │   ├── TaskQuestionExample.class
│       │   │       │   ├── Teacher.class
│       │   │       │   ├── TeacherExample$Criteria.class
│       │   │       │   ├── TeacherExample$Criterion.class
│       │   │       │   ├── TeacherExample$GeneratedCriteria.class
│       │   │       │   └── TeacherExample.class
│       │   │       ├── service
│       │   │       │   └── IndexService.class
│       │   │       ├── util
│       │   │       │   ├── Constant.class
│       │   │       │   ├── LoginIntecepter.class
│       │   │       │   └── MD5Util.class
│       │   │       └── web
│       │   │           └── IndexController.class
│       │   ├── jdbc.properties
│       │   ├── log4j.properties
│       │   ├── log4j2.xml
│       │   ├── mapper
│       │   │   ├── AdminMapper.xml
│       │   │   ├── CollegeMapper.xml
│       │   │   ├── CollegeVideoMapper.xml
│       │   │   ├── CourseFileMapper.xml
│       │   │   ├── CourseMapper.xml
│       │   │   ├── DiscussMapper.xml
│       │   │   ├── DiscussPostMapper.xml
│       │   │   ├── NoticeMapper.xml
│       │   │   ├── StudentMapper.xml
│       │   │   ├── StudentTaskMapper.xml
│       │   │   ├── TaskMapper.xml
│       │   │   ├── TaskQuestionMapper.xml
│       │   │   └── TeacherMapper.xml
│       │   ├── spring-datasource.xml
│       │   └── spring-service.xml
│       ├── demo
│       │   ├── META-INF
│       │   │   └── MANIFEST.MF
│       │   ├── WEB-INF
│       │   │   ├── classes
│       │   │   │   ├── applicationContext.xml
│       │   │   │   ├── com
│       │   │   │   │   └── xafdy
│       │   │   │   │       ├── dao
│       │   │   │   │       │   ├── AdminMapper.class
│       │   │   │   │       │   ├── CollegeMapper.class
│       │   │   │   │       │   ├── CourseFileMapper.class
│       │   │   │   │       │   ├── CourseMapper.class
│       │   │   │   │       │   ├── CourseVideoMapper.class
│       │   │   │   │       │   ├── DiscussMapper.class
│       │   │   │   │       │   ├── DiscussPostMapper.class
│       │   │   │   │       │   ├── NoticeMapper.class
│       │   │   │   │       │   ├── StudentMapper.class
│       │   │   │   │       │   ├── StudentTaskMapper.class
│       │   │   │   │       │   ├── TaskMapper.class
│       │   │   │   │       │   ├── TaskQuestionMapper.class
│       │   │   │   │       │   └── TeacherMapper.class
│       │   │   │   │       ├── dto
│       │   │   │   │       │   └── Answer.class
│       │   │   │   │       ├── model
│       │   │   │   │       │   ├── Admin.class
│       │   │   │   │       │   ├── AdminExample$Criteria.class
│       │   │   │   │       │   ├── AdminExample$Criterion.class
│       │   │   │   │       │   ├── AdminExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── AdminExample.class
│       │   │   │   │       │   ├── College.class
│       │   │   │   │       │   ├── CollegeExample$Criteria.class
│       │   │   │   │       │   ├── CollegeExample$Criterion.class
│       │   │   │   │       │   ├── CollegeExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── CollegeExample.class
│       │   │   │   │       │   ├── Course.class
│       │   │   │   │       │   ├── CourseExample$Criteria.class
│       │   │   │   │       │   ├── CourseExample$Criterion.class
│       │   │   │   │       │   ├── CourseExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── CourseExample.class
│       │   │   │   │       │   ├── CourseFile.class
│       │   │   │   │       │   ├── CourseFileExample$Criteria.class
│       │   │   │   │       │   ├── CourseFileExample$Criterion.class
│       │   │   │   │       │   ├── CourseFileExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── CourseFileExample.class
│       │   │   │   │       │   ├── CourseVideo.class
│       │   │   │   │       │   ├── CourseVideoExample$Criteria.class
│       │   │   │   │       │   ├── CourseVideoExample$Criterion.class
│       │   │   │   │       │   ├── CourseVideoExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── CourseVideoExample.class
│       │   │   │   │       │   ├── Discuss.class
│       │   │   │   │       │   ├── DiscussExample$Criteria.class
│       │   │   │   │       │   ├── DiscussExample$Criterion.class
│       │   │   │   │       │   ├── DiscussExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── DiscussExample.class
│       │   │   │   │       │   ├── DiscussPost.class
│       │   │   │   │       │   ├── DiscussPostExample$Criteria.class
│       │   │   │   │       │   ├── DiscussPostExample$Criterion.class
│       │   │   │   │       │   ├── DiscussPostExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── DiscussPostExample.class
│       │   │   │   │       │   ├── Notice.class
│       │   │   │   │       │   ├── NoticeExample$Criteria.class
│       │   │   │   │       │   ├── NoticeExample$Criterion.class
│       │   │   │   │       │   ├── NoticeExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── NoticeExample.class
│       │   │   │   │       │   ├── Student.class
│       │   │   │   │       │   ├── StudentExample$Criteria.class
│       │   │   │   │       │   ├── StudentExample$Criterion.class
│       │   │   │   │       │   ├── StudentExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── StudentExample.class
│       │   │   │   │       │   ├── StudentTask.class
│       │   │   │   │       │   ├── StudentTaskExample$Criteria.class
│       │   │   │   │       │   ├── StudentTaskExample$Criterion.class
│       │   │   │   │       │   ├── StudentTaskExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── StudentTaskExample.class
│       │   │   │   │       │   ├── Task.class
│       │   │   │   │       │   ├── TaskExample$Criteria.class
│       │   │   │   │       │   ├── TaskExample$Criterion.class
│       │   │   │   │       │   ├── TaskExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── TaskExample.class
│       │   │   │   │       │   ├── TaskQuestion.class
│       │   │   │   │       │   ├── TaskQuestionExample$Criteria.class
│       │   │   │   │       │   ├── TaskQuestionExample$Criterion.class
│       │   │   │   │       │   ├── TaskQuestionExample$GeneratedCriteria.class
│       │   │   │   │       │   ├── TaskQuestionExample.class
│       │   │   │   │       │   ├── Teacher.class
│       │   │   │   │       │   ├── TeacherExample$Criteria.class
│       │   │   │   │       │   ├── TeacherExample$Criterion.class
│       │   │   │   │       │   ├── TeacherExample$GeneratedCriteria.class
│       │   │   │   │       │   └── TeacherExample.class
│       │   │   │   │       ├── service
│       │   │   │   │       │   └── IndexService.class
│       │   │   │   │       ├── util
│       │   │   │   │       │   ├── Constant.class
│       │   │   │   │       │   ├── LoginIntecepter.class
│       │   │   │   │       │   └── MD5Util.class
│       │   │   │   │       └── web
│       │   │   │   │           └── IndexController.class
│       │   │   │   ├── jdbc.properties
│       │   │   │   ├── log4j.properties
│       │   │   │   ├── log4j2.xml
│       │   │   │   ├── mapper
│       │   │   │   │   ├── AdminMapper.xml
│       │   │   │   │   ├── CollegeMapper.xml
│       │   │   │   │   ├── CollegeVideoMapper.xml
│       │   │   │   │   ├── CourseFileMapper.xml
│       │   │   │   │   ├── CourseMapper.xml
│       │   │   │   │   ├── DiscussMapper.xml
│       │   │   │   │   ├── DiscussPostMapper.xml
│       │   │   │   │   ├── NoticeMapper.xml
│       │   │   │   │   ├── StudentMapper.xml
│       │   │   │   │   ├── StudentTaskMapper.xml
│       │   │   │   │   ├── TaskMapper.xml
│       │   │   │   │   ├── TaskQuestionMapper.xml
│       │   │   │   │   └── TeacherMapper.xml
│       │   │   │   ├── spring-datasource.xml
│       │   │   │   └── spring-service.xml
│       │   │   ├── jsp
│       │   │   │   ├── createCollege.jsp
│       │   │   │   ├── createCollegeFile.jsp
│       │   │   │   ├── createCollegeVideo.jsp
│       │   │   │   ├── createCourse.jsp
│       │   │   │   ├── createDiscuss.jsp
│       │   │   │   ├── createManyTeacher.jsp
│       │   │   │   ├── createNotice.jsp
│       │   │   │   ├── createQuestion.jsp
│       │   │   │   ├── createReply.jsp
│       │   │   │   ├── createStudent.jsp
│       │   │   │   ├── createTask.jsp
│       │   │   │   ├── createTeacher.jsp
│       │   │   │   ├── downFile.jsp
│       │   │   │   ├── enterTask.jsp
│       │   │   │   ├── index.jsp
│       │   │   │   ├── logon.jsp
│       │   │   │   ├── logon123.jsp
│       │   │   │   ├── register.jsp
│       │   │   │   ├── searchCollege.jsp
│       │   │   │   ├── searchCollegeFile.jsp
│       │   │   │   ├── searchCollegeFileInfo.jsp
│       │   │   │   ├── searchCollegeVideo.jsp
│       │   │   │   ├── searchCollegeVideoInfo.jsp
│       │   │   │   ├── searchCourse.jsp
│       │   │   │   ├── searchCourseInfo.jsp
│       │   │   │   ├── searchDiscuss.jsp
│       │   │   │   ├── searchDiscussInfo.jsp
│       │   │   │   ├── searchDiscussReply.jsp
│       │   │   │   ├── searchNotice.jsp
│       │   │   │   ├── searchNoticeInfo.jsp
│       │   │   │   ├── searchStudent.jsp
│       │   │   │   ├── searchStudentTaskInfo.jsp
│       │   │   │   ├── searchTask.jsp
│       │   │   │   ├── searchTaskInfo.jsp
│       │   │   │   ├── searchTaskQuestion.jsp
│       │   │   │   ├── searchTeacher.jsp
│       │   │   │   ├── studentIndex.jsp
│       │   │   │   ├── teacherIndex.jsp
│       │   │   │   ├── updateCollege.jsp
│       │   │   │   ├── updateCourse.jsp
│       │   │   │   ├── updateDiscuss.jsp
│       │   │   │   ├── updateNotice.jsp
│       │   │   │   ├── updateStudent.jsp
│       │   │   │   ├── updateStudentInfo.jsp
│       │   │   │   ├── updateTask.jsp
│       │   │   │   ├── updateTeacher.jsp
│       │   │   │   ├── updateTeacherInfo.jsp
│       │   │   │   └── watchVideo.jsp
│       │   │   ├── lib
│       │   │   │   ├── activation-1.1.jar
│       │   │   │   ├── aspectjweaver-1.8.9.jar
│       │   │   │   ├── commons-codec-1.9.jar
│       │   │   │   ├── commons-collections4-4.1.jar
│       │   │   │   ├── commons-dbcp-1.2.2.jar
│       │   │   │   ├── commons-fileupload-1.3.1.jar
│       │   │   │   ├── commons-io-2.4.jar
│       │   │   │   ├── commons-logging-1.2.jar
│       │   │   │   ├── commons-pool-1.3.jar
│       │   │   │   ├── druid-1.1.10.jar
│       │   │   │   ├── filters-2.0.235-1.jar
│       │   │   │   ├── jackson-annotations-2.8.4.jar
│       │   │   │   ├── jackson-core-2.8.4.jar
│       │   │   │   ├── jackson-databind-2.8.4.jar
│       │   │   │   ├── javaee-api-7.0.jar
│       │   │   │   ├── javax.mail-1.5.0.jar
│       │   │   │   ├── javax.servlet-api-3.1.0.jar
│       │   │   │   ├── json-20160810.jar
│       │   │   │   ├── jstl-1.2.jar
│       │   │   │   ├── kaptcha-2.3.2.jar
│       │   │   │   ├── log4j-1.2.17.jar
│       │   │   │   ├── mybatis-3.2.6.jar
│       │   │   │   ├── mybatis-spring-1.2.2.jar
│       │   │   │   ├── mysql-connector-java-5.1.30.jar
│       │   │   │   ├── poi-3.17.jar
│       │   │   │   ├── slf4j-api-1.7.7.jar
│       │   │   │   ├── slf4j-log4j12-1.7.7.jar
│       │   │   │   ├── spring-aop-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-beans-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-context-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-context-support-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-core-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-expression-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-jdbc-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-oxm-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-test-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-tx-4.3.7.RELEASE.jar
│       │   │   │   ├── spring-web-4.3.7.RELEASE.jar
│       │   │   │   └── spring-webmvc-4.3.7.RELEASE.jar
│       │   │   └── web.xml
│       │   ├── index.jsp
│       │   ├── resource
│       │   │   ├── bootstrap
│       │   │   │   ├── css
│       │   │   │   │   ├── bootstrap-select.min.css
│       │   │   │   │   ├── bootstrap-theme.min.css
│       │   │   │   │   └── 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-select.min.js
│       │   │   │   │   └── bootstrap.min.js
│       │   │   │   └── less
│       │   │   │       ├── alerts.less
│       │   │   │       ├── badges.less
│       │   │   │       ├── bootstrap.less
│       │   │   │       ├── breadcrumbs.less
│       │   │   │       ├── button-groups.less
│       │   │   │       ├── buttons.less
│       │   │   │       ├── carousel.less
│       │   │   │       ├── close.less
│       │   │   │       ├── code.less
│       │   │   │       ├── component-animations.less
│       │   │   │       ├── dropdowns.less
│       │   │   │       ├── forms.less
│       │   │   │       ├── glyphicons.less
│       │   │   │       ├── grid.less
│       │   │   │       ├── input-groups.less
│       │   │   │       ├── jumbotron.less
│       │   │   │       ├── labels.less
│       │   │   │       ├── list-group.less
│       │   │   │       ├── media.less
│       │   │   │       ├── mixins
│       │   │   │       │   ├── alerts.less
│       │   │   │       │   ├── background-variant.less
│       │   │   │       │   ├── border-radius.less
│       │   │   │       │   ├── buttons.less
│       │   │   │       │   ├── center-block.less
│       │   │   │       │   ├── clearfix.less
│       │   │   │       │   ├── forms.less
│       │   │   │       │   ├── gradients.less
│       │   │   │       │   ├── grid-framework.less
│       │   │   │       │   ├── grid.less
│       │   │   │       │   ├── hide-text.less
│       │   │   │       │   ├── image.less
│       │   │   │       │   ├── labels.less
│       │   │   │       │   ├── list-group.less
│       │   │   │       │   ├── nav-divider.less
│       │   │   │       │   ├── nav-vertical-align.less
│       │   │   │       │   ├── opacity.less
│       │   │   │       │   ├── pagination.less
│       │   │   │       │   ├── panels.less
│       │   │   │       │   ├── progress-bar.less
│       │   │   │       │   ├── reset-filter.less
│       │   │   │       │   ├── reset-text.less
│       │   │   │       │   ├── resize.less
│       │   │   │       │   ├── responsive-visibility.less
│       │   │   │       │   ├── size.less
│       │   │   │       │   ├── tab-focus.less
│       │   │   │       │   ├── table-row.less
│       │   │   │       │   ├── text-emphasis.less
│       │   │   │       │   ├── text-overflow.less
│       │   │   │       │   └── vendor-prefixes.less
│       │   │   │       ├── mixins.less
│       │   │   │       ├── modals.less
│       │   │   │       ├── navbar.less
│       │   │   │       ├── navs.less
│       │   │   │       ├── normalize.less
│       │   │   │       ├── pager.less
│       │   │   │       ├── pagination.less
│       │   │   │       ├── panels.less
│       │   │   │       ├── popovers.less
│       │   │   │       ├── print.less
│       │   │   │       ├── progress-bars.less
│       │   │   │       ├── responsive-embed.less
│       │   │   │       ├── responsive-utilities.less
│       │   │   │       ├── scaffolding.less
│       │   │   │       ├── tables.less
│       │   │   │       ├── theme.less
│       │   │   │       ├── thumbnails.less
│       │   │   │       ├── tooltip.less
│       │   │   │       ├── type.less
│       │   │   │       ├── utilities.less
│       │   │   │       ├── variables.less
│       │   │   │       └── wells.less
│       │   │   ├── css
│       │   │   │   ├── login.css
│       │   │   │   ├── util.css
│       │   │   │   └── wukong-ui.css
│       │   │   ├── images
│       │   │   │   ├── banner.png
│       │   │   │   ├── bg-01.jpg
│       │   │   │   ├── logon.png
│       │   │   │   ├── logon_bg.jpg
│       │   │   │   ├── status_no.png
│       │   │   │   └── status_yes.png
│       │   │   └── lib
│       │   │       ├── jquery-3.1.1.js
│       │   │       └── less.min.js
│       │   └── upload
│       │       └── learn
│       │           ├── Spring MVC教程.pptx
│       │           └── Web开发技术 00_00_00-00_02_00.mp4
│       ├── demo.war
│       └── generated-sources
│           └── annotations
└── 好例子网_learnSys.zip

69 directories, 604 files