嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 4 元微信扫码支付:4 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
学生管理系统
Examination
├── Examination.iml
├── META-INF
├── WebContent
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── WEB-INF
│ │ ├── css
│ │ ├── fonts
│ │ ├── images
│ │ ├── js
│ │ ├── 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-15.0.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
│ │ │ ├── jsp-api.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
│ │ │ ├── servlet-api.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
│ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.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
│ ├── images
│ │ └── a.jpg
│ ├── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-3.2.1.min.js
│ │ └── npm.js
│ └── login.jsp
├── bin
│ ├── com
│ │ └── system
│ │ ├── controller
│ │ │ ├── AdminController.class
│ │ │ ├── LoginController.class
│ │ │ ├── RestPasswordController.class
│ │ │ ├── StudentController.class
│ │ │ ├── TeacherController.class
│ │ │ └── converter
│ │ │ └── CustomDateConverter.class
│ │ ├── exception
│ │ │ ├── CustomException.class
│ │ │ └── CustomExceptionResolver.class
│ │ ├── mapper
│ │ │ ├── CollegeMapper.class
│ │ │ ├── CollegeMapper.xml
│ │ │ ├── CourseMapper.class
│ │ │ ├── CourseMapper.xml
│ │ │ ├── CourseMapperCustom.class
│ │ │ ├── CourseMapperCustom.xml
│ │ │ ├── RoleMapper.class
│ │ │ ├── RoleMapper.xml
│ │ │ ├── SelectedcourseMapper.class
│ │ │ ├── SelectedcourseMapper.xml
│ │ │ ├── StudentMapper.class
│ │ │ ├── StudentMapper.xml
│ │ │ ├── StudentMapperCustom.class
│ │ │ ├── StudentMapperCustom.xml
│ │ │ ├── TeacherMapper.class
│ │ │ ├── TeacherMapper.xml
│ │ │ ├── TeacherMapperCustom.class
│ │ │ ├── TeacherMapperCustom.xml
│ │ │ ├── UserloginMapper.class
│ │ │ ├── UserloginMapper.xml
│ │ │ ├── UserloginMapperCustom.class
│ │ │ └── UserloginMapperCustom.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
│ │ │ ├── SelectedCourseCustom.class
│ │ │ ├── Selectedcourse.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
│ │ ├── RoleService.class
│ │ ├── SelectedCourseService.class
│ │ ├── StudentService.class
│ │ ├── TeacherService.class
│ │ ├── UserloginService.class
│ │ └── impl
│ │ ├── CollegeServiceImpl.class
│ │ ├── CourseServiceImpl.class
│ │ ├── RoleServiceImpl.class
│ │ ├── SelectedCourseServiceImpl.class
│ │ ├── StudentServiceImpl.class
│ │ ├── TeacherServiceImpl.class
│ │ └── UserloginServiceImpl.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.sql
├── java
│ └── com
│ └── system
│ ├── controller
│ │ ├── AdminController.java
│ │ ├── LoginController.java
│ │ ├── RestPasswordController.java
│ │ ├── StudentController.java
│ │ ├── TeacherController.java
│ │ └── converter
│ │ └── CustomDateConverter.java
│ ├── exception
│ │ ├── CustomException.java
│ │ └── CustomExceptionResolver.java
│ ├── mapper
│ │ ├── CollegeMapper.java
│ │ ├── CollegeMapper.xml
│ │ ├── CourseMapper.java
│ │ ├── CourseMapper.xml
│ │ ├── CourseMapperCustom.java
│ │ ├── CourseMapperCustom.xml
│ │ ├── RoleMapper.java
│ │ ├── RoleMapper.xml
│ │ ├── SelectedcourseMapper.java
│ │ ├── SelectedcourseMapper.xml
│ │ ├── StudentMapper.java
│ │ ├── StudentMapper.xml
│ │ ├── StudentMapperCustom.java
│ │ ├── StudentMapperCustom.xml
│ │ ├── TeacherMapper.java
│ │ ├── TeacherMapper.xml
│ │ ├── TeacherMapperCustom.java
│ │ ├── TeacherMapperCustom.xml
│ │ ├── UserloginMapper.java
│ │ ├── UserloginMapper.xml
│ │ ├── UserloginMapperCustom.java
│ │ └── UserloginMapperCustom.xml
│ ├── po
│ │ ├── College.java
│ │ ├── CollegeCustom.java
│ │ ├── CollegeExample.java
│ │ ├── Course.java
│ │ ├── CourseCustom.java
│ │ ├── CourseExample.java
│ │ ├── PagingVO.java
│ │ ├── Role.java
│ │ ├── RoleExample.java
│ │ ├── SelectedCourseCustom.java
│ │ ├── Selectedcourse.java
│ │ ├── SelectedcourseExample.java
│ │ ├── Student.java
│ │ ├── StudentCustom.java
│ │ ├── StudentExample.java
│ │ ├── Teacher.java
│ │ ├── TeacherCustom.java
│ │ ├── TeacherExample.java
│ │ ├── Userlogin.java
│ │ ├── UserloginCustom.java
│ │ └── UserloginExample.java
│ ├── realm
│ │ └── LoginRealm.java
│ └── service
│ ├── CollegeService.java
│ ├── CourseService.java
│ ├── RoleService.java
│ ├── SelectedCourseService.java
│ ├── StudentService.java
│ ├── TeacherService.java
│ ├── UserloginService.java
│ └── impl
│ ├── CollegeServiceImpl.java
│ ├── CourseServiceImpl.java
│ ├── RoleServiceImpl.java
│ ├── SelectedCourseServiceImpl.java
│ ├── StudentServiceImpl.java
│ ├── TeacherServiceImpl.java
│ └── UserloginServiceImpl.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
44 directories, 246 files