实例介绍
主要包含学生、教师、管理员三端。 管理员主要包括:课程管理、学生管理、教师管理、账号密码重置等功能。 教师主要包括:我的课程、成绩管理等功能。 学生主要包括:查询所有课程、已选课程、已修课程、修改密码等功能。 前端采用jsp,数据库采用mysql,具体内容可以参考先参考https://blog.csdn.net/l13890/article/details/80760807
【实例截图】
【核心代码】
Examination_System
└── Examination_System
├── Examination_System.iml
├── pom.xml
├── README.md
├── sql
│ └── examination_system.sql
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── system
│ │ │ ├── controller
│ │ │ │ ├── AdminController.java
│ │ │ │ ├── converter
│ │ │ │ │ └── CustomDateConverter.java
│ │ │ │ ├── LoginController.java
│ │ │ │ ├── RestPasswordController.java
│ │ │ │ ├── StudentController.java
│ │ │ │ └── TeacherController.java
│ │ │ ├── exception
│ │ │ │ ├── CustomException.java
│ │ │ │ └── CustomExceptionResolver.java
│ │ │ ├── mapper
│ │ │ │ ├── CollegeMapper.java
│ │ │ │ ├── CollegeMapper.xml
│ │ │ │ ├── CourseMapperCustom.java
│ │ │ │ ├── CourseMapperCustom.xml
│ │ │ │ ├── CourseMapper.java
│ │ │ │ ├── CourseMapper.xml
│ │ │ │ ├── RoleMapper.java
│ │ │ │ ├── RoleMapper.xml
│ │ │ │ ├── SelectedcourseMapper.java
│ │ │ │ ├── SelectedcourseMapper.xml
│ │ │ │ ├── StudentMapperCustom.java
│ │ │ │ ├── StudentMapperCustom.xml
│ │ │ │ ├── StudentMapper.java
│ │ │ │ ├── StudentMapper.xml
│ │ │ │ ├── TeacherMapperCustom.java
│ │ │ │ ├── TeacherMapperCustom.xml
│ │ │ │ ├── TeacherMapper.java
│ │ │ │ ├── TeacherMapper.xml
│ │ │ │ ├── UserloginMapperCustom.java
│ │ │ │ ├── UserloginMapperCustom.xml
│ │ │ │ ├── UserloginMapper.java
│ │ │ │ └── UserloginMapper.xml
│ │ │ ├── po
│ │ │ │ ├── CollegeCustom.java
│ │ │ │ ├── CollegeExample.java
│ │ │ │ ├── College.java
│ │ │ │ ├── CourseCustom.java
│ │ │ │ ├── CourseExample.java
│ │ │ │ ├── Course.java
│ │ │ │ ├── PagingVO.java
│ │ │ │ ├── RoleExample.java
│ │ │ │ ├── Role.java
│ │ │ │ ├── SelectedCourseCustom.java
│ │ │ │ ├── SelectedcourseExample.java
│ │ │ │ ├── Selectedcourse.java
│ │ │ │ ├── StudentCustom.java
│ │ │ │ ├── StudentExample.java
│ │ │ │ ├── Student.java
│ │ │ │ ├── TeacherCustom.java
│ │ │ │ ├── TeacherExample.java
│ │ │ │ ├── Teacher.java
│ │ │ │ ├── UserloginCustom.java
│ │ │ │ ├── UserloginExample.java
│ │ │ │ └── Userlogin.java
│ │ │ ├── realm
│ │ │ │ └── LoginRealm.java
│ │ │ └── service
│ │ │ ├── CollegeService.java
│ │ │ ├── CourseService.java
│ │ │ ├── impl
│ │ │ │ ├── CollegeServiceImpl.java
│ │ │ │ ├── CourseServiceImpl.java
│ │ │ │ ├── RoleServiceImpl.java
│ │ │ │ ├── SelectedCourseServiceImpl.java
│ │ │ │ ├── StudentServiceImpl.java
│ │ │ │ ├── TeacherServiceImpl.java
│ │ │ │ └── UserloginServiceImpl.java
│ │ │ ├── RoleService.java
│ │ │ ├── SelectedCourseService.java
│ │ │ ├── StudentService.java
│ │ │ ├── TeacherService.java
│ │ │ └── UserloginService.java
│ │ ├── resources
│ │ │ ├── log4j.properties
│ │ │ ├── mybatis
│ │ │ │ └── mybatis.cfg.xml
│ │ │ ├── mysql.properties
│ │ │ └── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-shiro.xml
│ │ │ ├── applicationContext-trsaction.xml
│ │ │ └── springmvc.xml
│ │ └── webapp
│ │ ├── css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap-theme.css
│ │ │ └── bootstrap-theme.min.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── images
│ │ │ └── a.jpg
│ │ ├── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery-3.2.1.min.js
│ │ │ └── npm.js
│ │ ├── login.jsp
│ │ └── WEB-INF
│ │ ├── jsp
│ │ │ ├── admin
│ │ │ │ ├── addCourse.jsp
│ │ │ │ ├── addStudent.jsp
│ │ │ │ ├── addTeacher.jsp
│ │ │ │ ├── editCourse.jsp
│ │ │ │ ├── editStudent.jsp
│ │ │ │ ├── editTeacher.jsp
│ │ │ │ ├── menu.jsp
│ │ │ │ ├── passwordRest.jsp
│ │ │ │ ├── showCourse.jsp
│ │ │ │ ├── showStudent.jsp
│ │ │ │ ├── showTeacher.jsp
│ │ │ │ ├── top.jsp
│ │ │ │ └── userPasswordRest.jsp
│ │ │ ├── error.jsp
│ │ │ ├── student
│ │ │ │ ├── menu.jsp
│ │ │ │ ├── overCourse.jsp
│ │ │ │ ├── passwordRest.jsp
│ │ │ │ ├── selectCourse.jsp
│ │ │ │ ├── showCourse.jsp
│ │ │ │ └── top.jsp
│ │ │ ├── success.jsp
│ │ │ └── teacher
│ │ │ ├── mark.jsp
│ │ │ ├── menu.jsp
│ │ │ ├── passwordRest.jsp
│ │ │ ├── showCourse.jsp
│ │ │ ├── showGrade.jsp
│ │ │ └── top.jsp
│ │ └── web.xml
│ └── test
│ └── test
│ └── com
│ └── system
│ ├── mapper
│ │ ├── CourseMapperCustomTest.java
│ │ ├── StudentMapperCustomTest.java
│ │ ├── StudentMapperTest.java
│ │ ├── TeacherMapperCustomTest.java
│ │ └── UserloginMapperCustomTest.java
│ └── service
│ └── impl
│ ├── CourseServiceImplTest.java
│ ├── SelectedCourseServiceImplTest.java
│ ├── StudentServiceImplTest.java
│ ├── TeacherServiceImplTest.java
│ └── UserloginServiceImplTest.java
└── target
├── classes
│ ├── com
│ │ └── system
│ │ ├── controller
│ │ │ ├── AdminController.class
│ │ │ ├── converter
│ │ │ │ └── CustomDateConverter.class
│ │ │ ├── LoginController.class
│ │ │ ├── RestPasswordController.class
│ │ │ ├── StudentController.class
│ │ │ └── TeacherController.class
│ │ ├── exception
│ │ │ ├── CustomException.class
│ │ │ └── CustomExceptionResolver.class
│ │ ├── mapper
│ │ │ ├── CollegeMapper.class
│ │ │ ├── CollegeMapper.xml
│ │ │ ├── CourseMapper.class
│ │ │ ├── CourseMapperCustom.class
│ │ │ ├── CourseMapperCustom.xml
│ │ │ ├── CourseMapper.xml
│ │ │ ├── RoleMapper.class
│ │ │ ├── RoleMapper.xml
│ │ │ ├── SelectedcourseMapper.class
│ │ │ ├── SelectedcourseMapper.xml
│ │ │ ├── StudentMapper.class
│ │ │ ├── StudentMapperCustom.class
│ │ │ ├── StudentMapperCustom.xml
│ │ │ ├── StudentMapper.xml
│ │ │ ├── TeacherMapper.class
│ │ │ ├── TeacherMapperCustom.class
│ │ │ ├── TeacherMapperCustom.xml
│ │ │ ├── TeacherMapper.xml
│ │ │ ├── UserloginMapper.class
│ │ │ ├── UserloginMapperCustom.class
│ │ │ ├── UserloginMapperCustom.xml
│ │ │ └── UserloginMapper.xml
│ │ ├── po
│ │ │ ├── College.class
│ │ │ ├── CollegeCustom.class
│ │ │ ├── CollegeExample$Criteria.class
│ │ │ ├── CollegeExample$Criterion.class
│ │ │ ├── CollegeExample$GeneratedCriteria.class
│ │ │ ├── CollegeExample.class
│ │ │ ├── Course.class
│ │ │ ├── CourseCustom.class
│ │ │ ├── CourseExample$Criteria.class
│ │ │ ├── CourseExample$Criterion.class
│ │ │ ├── CourseExample$GeneratedCriteria.class
│ │ │ ├── CourseExample.class
│ │ │ ├── PagingVO.class
│ │ │ ├── Role.class
│ │ │ ├── RoleExample$Criteria.class
│ │ │ ├── RoleExample$Criterion.class
│ │ │ ├── RoleExample$GeneratedCriteria.class
│ │ │ ├── RoleExample.class
│ │ │ ├── Selectedcourse.class
│ │ │ ├── SelectedCourseCustom.class
│ │ │ ├── SelectedcourseExample$Criteria.class
│ │ │ ├── SelectedcourseExample$Criterion.class
│ │ │ ├── SelectedcourseExample$GeneratedCriteria.class
│ │ │ ├── SelectedcourseExample.class
│ │ │ ├── Student.class
│ │ │ ├── StudentCustom.class
│ │ │ ├── StudentExample$Criteria.class
│ │ │ ├── StudentExample$Criterion.class
│ │ │ ├── StudentExample$GeneratedCriteria.class
│ │ │ ├── StudentExample.class
│ │ │ ├── Teacher.class
│ │ │ ├── TeacherCustom.class
│ │ │ ├── TeacherExample$Criteria.class
│ │ │ ├── TeacherExample$Criterion.class
│ │ │ ├── TeacherExample$GeneratedCriteria.class
│ │ │ ├── TeacherExample.class
│ │ │ ├── Userlogin.class
│ │ │ ├── UserloginCustom.class
│ │ │ ├── UserloginExample$Criteria.class
│ │ │ ├── UserloginExample$Criterion.class
│ │ │ ├── UserloginExample$GeneratedCriteria.class
│ │ │ └── UserloginExample.class
│ │ ├── realm
│ │ │ └── LoginRealm.class
│ │ └── service
│ │ ├── CollegeService.class
│ │ ├── CourseService.class
│ │ ├── impl
│ │ │ ├── CollegeServiceImpl.class
│ │ │ ├── CourseServiceImpl.class
│ │ │ ├── RoleServiceImpl.class
│ │ │ ├── SelectedCourseServiceImpl.class
│ │ │ ├── StudentServiceImpl.class
│ │ │ ├── TeacherServiceImpl.class
│ │ │ └── UserloginServiceImpl.class
│ │ ├── RoleService.class
│ │ ├── SelectedCourseService.class
│ │ ├── StudentService.class
│ │ ├── TeacherService.class
│ │ └── UserloginService.class
│ ├── log4j.properties
│ ├── mybatis
│ │ └── mybatis.cfg.xml
│ ├── mysql.properties
│ └── spring
│ ├── applicationContext-dao.xml
│ ├── applicationContext-service.xml
│ ├── applicationContext-shiro.xml
│ ├── applicationContext-trsaction.xml
│ └── springmvc.xml
├── Examination_System
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-theme.css
│ │ └── bootstrap-theme.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── images
│ │ └── a.jpg
│ ├── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-3.2.1.min.js
│ │ └── npm.js
│ ├── login.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── system
│ │ │ ├── controller
│ │ │ │ ├── AdminController.class
│ │ │ │ ├── converter
│ │ │ │ │ └── CustomDateConverter.class
│ │ │ │ ├── LoginController.class
│ │ │ │ ├── RestPasswordController.class
│ │ │ │ ├── StudentController.class
│ │ │ │ └── TeacherController.class
│ │ │ ├── exception
│ │ │ │ ├── CustomException.class
│ │ │ │ └── CustomExceptionResolver.class
│ │ │ ├── mapper
│ │ │ │ ├── CollegeMapper.class
│ │ │ │ ├── CollegeMapper.xml
│ │ │ │ ├── CourseMapper.class
│ │ │ │ ├── CourseMapperCustom.class
│ │ │ │ ├── CourseMapperCustom.xml
│ │ │ │ ├── CourseMapper.xml
│ │ │ │ ├── RoleMapper.class
│ │ │ │ ├── RoleMapper.xml
│ │ │ │ ├── SelectedcourseMapper.class
│ │ │ │ ├── SelectedcourseMapper.xml
│ │ │ │ ├── StudentMapper.class
│ │ │ │ ├── StudentMapperCustom.class
│ │ │ │ ├── StudentMapperCustom.xml
│ │ │ │ ├── StudentMapper.xml
│ │ │ │ ├── TeacherMapper.class
│ │ │ │ ├── TeacherMapperCustom.class
│ │ │ │ ├── TeacherMapperCustom.xml
│ │ │ │ ├── TeacherMapper.xml
│ │ │ │ ├── UserloginMapper.class
│ │ │ │ ├── UserloginMapperCustom.class
│ │ │ │ ├── UserloginMapperCustom.xml
│ │ │ │ └── UserloginMapper.xml
│ │ │ ├── po
│ │ │ │ ├── College.class
│ │ │ │ ├── CollegeCustom.class
│ │ │ │ ├── CollegeExample$Criteria.class
│ │ │ │ ├── CollegeExample$Criterion.class
│ │ │ │ ├── CollegeExample$GeneratedCriteria.class
│ │ │ │ ├── CollegeExample.class
│ │ │ │ ├── Course.class
│ │ │ │ ├── CourseCustom.class
│ │ │ │ ├── CourseExample$Criteria.class
│ │ │ │ ├── CourseExample$Criterion.class
│ │ │ │ ├── CourseExample$GeneratedCriteria.class
│ │ │ │ ├── CourseExample.class
│ │ │ │ ├── PagingVO.class
│ │ │ │ ├── Role.class
│ │ │ │ ├── RoleExample$Criteria.class
│ │ │ │ ├── RoleExample$Criterion.class
│ │ │ │ ├── RoleExample$GeneratedCriteria.class
│ │ │ │ ├── RoleExample.class
│ │ │ │ ├── Selectedcourse.class
│ │ │ │ ├── SelectedCourseCustom.class
│ │ │ │ ├── SelectedcourseExample$Criteria.class
│ │ │ │ ├── SelectedcourseExample$Criterion.class
│ │ │ │ ├── SelectedcourseExample$GeneratedCriteria.class
│ │ │ │ ├── SelectedcourseExample.class
│ │ │ │ ├── Student.class
│ │ │ │ ├── StudentCustom.class
│ │ │ │ ├── StudentExample$Criteria.class
│ │ │ │ ├── StudentExample$Criterion.class
│ │ │ │ ├── StudentExample$GeneratedCriteria.class
│ │ │ │ ├── StudentExample.class
│ │ │ │ ├── Teacher.class
│ │ │ │ ├── TeacherCustom.class
│ │ │ │ ├── TeacherExample$Criteria.class
│ │ │ │ ├── TeacherExample$Criterion.class
│ │ │ │ ├── TeacherExample$GeneratedCriteria.class
│ │ │ │ ├── TeacherExample.class
│ │ │ │ ├── Userlogin.class
│ │ │ │ ├── UserloginCustom.class
│ │ │ │ ├── UserloginExample$Criteria.class
│ │ │ │ ├── UserloginExample$Criterion.class
│ │ │ │ ├── UserloginExample$GeneratedCriteria.class
│ │ │ │ └── UserloginExample.class
│ │ │ ├── realm
│ │ │ │ └── LoginRealm.class
│ │ │ └── service
│ │ │ ├── CollegeService.class
│ │ │ ├── CourseService.class
│ │ │ ├── impl
│ │ │ │ ├── CollegeServiceImpl.class
│ │ │ │ ├── CourseServiceImpl.class
│ │ │ │ ├── RoleServiceImpl.class
│ │ │ │ ├── SelectedCourseServiceImpl.class
│ │ │ │ ├── StudentServiceImpl.class
│ │ │ │ ├── TeacherServiceImpl.class
│ │ │ │ └── UserloginServiceImpl.class
│ │ │ ├── RoleService.class
│ │ │ ├── SelectedCourseService.class
│ │ │ ├── StudentService.class
│ │ │ ├── TeacherService.class
│ │ │ └── UserloginService.class
│ │ ├── log4j.properties
│ │ ├── mybatis
│ │ │ └── mybatis.cfg.xml
│ │ ├── mysql.properties
│ │ └── spring
│ │ ├── applicationContext-dao.xml
│ │ ├── applicationContext-service.xml
│ │ ├── applicationContext-shiro.xml
│ │ ├── applicationContext-trsaction.xml
│ │ └── springmvc.xml
│ ├── jsp
│ │ ├── admin
│ │ │ ├── addCourse.jsp
│ │ │ ├── addStudent.jsp
│ │ │ ├── addTeacher.jsp
│ │ │ ├── editCourse.jsp
│ │ │ ├── editStudent.jsp
│ │ │ ├── editTeacher.jsp
│ │ │ ├── menu.jsp
│ │ │ ├── passwordRest.jsp
│ │ │ ├── showCourse.jsp
│ │ │ ├── showStudent.jsp
│ │ │ ├── showTeacher.jsp
│ │ │ ├── top.jsp
│ │ │ └── userPasswordRest.jsp
│ │ ├── error.jsp
│ │ ├── student
│ │ │ ├── menu.jsp
│ │ │ ├── overCourse.jsp
│ │ │ ├── passwordRest.jsp
│ │ │ ├── selectCourse.jsp
│ │ │ ├── showCourse.jsp
│ │ │ └── top.jsp
│ │ ├── success.jsp
│ │ └── teacher
│ │ ├── mark.jsp
│ │ ├── menu.jsp
│ │ ├── passwordRest.jsp
│ │ ├── showCourse.jsp
│ │ ├── showGrade.jsp
│ │ └── top.jsp
│ ├── lib
│ │ ├── annotations-java5-16.0.2.jar
│ │ ├── aspectjweaver-1.8.10.jar
│ │ ├── c3p0-0.9.5.2.jar
│ │ ├── classmate-1.3.1.jar
│ │ ├── commons-beanutils-1.8.3.jar
│ │ ├── commons-logging-1.2.jar
│ │ ├── hibernate-validator-5.4.1.Final.jar
│ │ ├── jboss-logging-3.3.0.Final.jar
│ │ ├── jstl-1.2.jar
│ │ ├── log4j-1.2.17.jar
│ │ ├── mchange-commons-java-0.2.11.jar
│ │ ├── mybatis-3.4.1.jar
│ │ ├── mybatis-generator-core-1.3.5.jar
│ │ ├── mybatis-spring-1.3.0.jar
│ │ ├── mysql-connector-java-5.1.41.jar
│ │ ├── shiro-core-1.2.3.jar
│ │ ├── shiro-spring-1.2.3.jar
│ │ ├── shiro-web-1.2.3.jar
│ │ ├── slf4j-api-1.6.4.jar
│ │ ├── spring-aop-4.3.9.RELEASE.jar
│ │ ├── spring-beans-4.3.8.RELEASE.jar
│ │ ├── spring-context-4.3.8.RELEASE.jar
│ │ ├── spring-core-4.3.8.RELEASE.jar
│ │ ├── spring-expression-4.3.8.RELEASE.jar
│ │ ├── spring-jdbc-4.2.5.RELEASE.jar
│ │ ├── spring-tx-4.3.8.RELEASE.jar
│ │ ├── spring-web-4.3.8.RELEASE.jar
│ │ ├── spring-webmvc-4.3.7.RELEASE.jar
│ │ └── validation-api-1.1.0.Final.jar
│ └── web.xml
└── Examination_System.war
74 directories, 395 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论