实例介绍
【实例简介】大学生自主学习平台
在分析网上已经有的学习平台基础上,本人对教学辅助平台进行深入研究和多方比较,终于设计开发出了一种基于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
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论