实例介绍
【实例简介】
本文开发的培训机构教务管理系统,使用LntelliJ IDEA 软件mysql数据库运用了spring,springmvc,mybatis 框架的javaweb项目。系统功能包含1.创建课程管理;2.培训教师的信息管理;3.学员信息的管理;4.课表的管理;5.调课管理6.收费管理。
【实例截图】
【核心代码】
c4a611f9-a2e8-4880-a79c-c67c93a97c29
└── maven_test
├── maven_test.iml
├── my.sql
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ ├── com
│ │ │ │ └── zjj
│ │ │ │ ├── controller
│ │ │ │ │ ├── CourseController.java
│ │ │ │ │ ├── LoginController.java
│ │ │ │ │ ├── StudentController.java
│ │ │ │ │ ├── TableController.java
│ │ │ │ │ ├── TeacherController.java
│ │ │ │ │ └── TutionController.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── ClassTableMapper.java
│ │ │ │ │ ├── ClassTableMapper.xml
│ │ │ │ │ ├── LoginMapper.java
│ │ │ │ │ ├── LoginMapper.xml
│ │ │ │ │ ├── StudentAndClassMapper.java
│ │ │ │ │ ├── StudentAndClassMapper.xml
│ │ │ │ │ ├── StudentMapper.java
│ │ │ │ │ ├── StudentMapper.xml
│ │ │ │ │ ├── TeacherMapper.java
│ │ │ │ │ ├── TeacherMapper.xml
│ │ │ │ │ ├── TrainingCourseMapper.java
│ │ │ │ │ ├── TrainingCourseMapper.xml
│ │ │ │ │ ├── TuitionMapper.java
│ │ │ │ │ └── TuitionMapper.xml
│ │ │ │ ├── pojo
│ │ │ │ │ ├── ClassTableExample.java
│ │ │ │ │ ├── ClassTable.java
│ │ │ │ │ ├── LoginExample.java
│ │ │ │ │ ├── Login.java
│ │ │ │ │ ├── Result.java
│ │ │ │ │ ├── StudentAndClassExample.java
│ │ │ │ │ ├── StudentAndClass.java
│ │ │ │ │ ├── StudentExample.java
│ │ │ │ │ ├── Student.java
│ │ │ │ │ ├── TeacherExample.java
│ │ │ │ │ ├── Teacher.java
│ │ │ │ │ ├── TrainingCourseExample.java
│ │ │ │ │ ├── TrainingCourse.java
│ │ │ │ │ ├── TuitionExample.java
│ │ │ │ │ └── Tuition.java
│ │ │ │ └── service
│ │ │ │ ├── CourseService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── CourseServiceImpl.java
│ │ │ │ │ ├── LoginServiceImpl.java
│ │ │ │ │ ├── StudentServiceImpl.java
│ │ │ │ │ ├── TableServiceImpl.java
│ │ │ │ │ ├── TeacherServiceImpl.java
│ │ │ │ │ └── TuitionServiceImpl.java
│ │ │ │ ├── LoginService.java
│ │ │ │ ├── StudentService.java
│ │ │ │ ├── TableService.java
│ │ │ │ ├── TeacherService.java
│ │ │ │ └── TutionService.java
│ │ │ ├── db.properties
│ │ │ ├── spring_application.xml
│ │ │ └── spring_mvc.xml
│ │ └── webapp
│ │ ├── 1.jsp
│ │ ├── common.jsp
│ │ ├── course
│ │ │ ├── add.jsp
│ │ │ ├── detail.jsp
│ │ │ ├── edit.jsp
│ │ │ ├── list.jsp
│ │ │ └── setct.jsp
│ │ ├── css
│ │ │ ├── bootstrap-3.3.4.css
│ │ │ ├── bootstrap.css
│ │ │ ├── dataTables.bootstrap-1.10.13.css
│ │ │ ├── font-awesome.css
│ │ │ ├── google-fonts.css
│ │ │ ├── isotope.css
│ │ │ ├── login.css
│ │ │ └── style.css
│ │ ├── homepage
│ │ │ ├── index.jsp
│ │ │ ├── left.jsp
│ │ │ ├── test2.jsp
│ │ │ ├── test3.jsp
│ │ │ ├── test.jsp
│ │ │ └── top.jsp
│ │ ├── images
│ │ │ ├── 404.png
│ │ │ ├── backgrou.png
│ │ │ ├── bg.png
│ │ │ ├── cloud.png
│ │ │ ├── coolyun.png
│ │ │ ├── icon.png
│ │ │ ├── icon-search@2x.png
│ │ │ ├── icon-search.png
│ │ │ ├── info-data-sprite@2x.png
│ │ │ ├── info-data-sprite.png
│ │ │ ├── loginbg.png
│ │ │ ├── logo.png
│ │ │ ├── main.jpg
│ │ │ ├── mainMenuBg.jpg
│ │ │ ├── pw.png
│ │ │ ├── sky.png
│ │ │ ├── ujy.png
│ │ │ ├── user.png
│ │ │ ├── wanho-logo.png
│ │ │ ├── weiboxs-logo@2x.png
│ │ │ └── weiboxs-logo.png
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── angular.min.js
│ │ │ ├── bootstrap-3.3.4.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── dataTables.bootstrap-1.10.13.js
│ │ │ ├── jquery-3.0.0.js
│ │ │ ├── jquery.dataTables-1.10.13.js
│ │ │ ├── jquery.tmpl.js
│ │ │ ├── jquery-ui.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── messages_zh.js
│ │ │ ├── page.js
│ │ │ └── table.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── scripts
│ │ │ ├── jquery.pagination.js
│ │ │ └── pagination.css
│ │ ├── student
│ │ │ ├── add.jsp
│ │ │ ├── detail.jsp
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ ├── Style
│ │ │ └── Style.css
│ │ ├── styles
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ │ ├── custom.css
│ │ │ │ │ └── font-awesome.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── custom.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ └── npm.js
│ │ │ └── main.css
│ │ ├── table
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ ├── teacher
│ │ │ ├── add.jsp
│ │ │ ├── detail.jsp
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ ├── tuition
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ └── WEB-INF
│ │ ├── lib
│ │ │ ├── ant-1.9.6.jar
│ │ │ ├── ant-launcher-1.9.6.jar
│ │ │ ├── aopalliance-1.0.jar
│ │ │ ├── asm-5.1.jar
│ │ │ ├── aspectjtools-1.8.4.jar
│ │ │ ├── cglib-3.2.4.jar
│ │ │ ├── classmate-1.3.3.jar
│ │ │ ├── commons-beanutils.jar
│ │ │ ├── commons-dbcp-1.4.jar
│ │ │ ├── commons-lang3-3.2.jar
│ │ │ ├── commons-logging-1.2.jar
│ │ │ ├── commons-logging.jar
│ │ │ ├── commons-pool-1.5.5.jar
│ │ │ ├── commons-pool-1.6.jar
│ │ │ ├── dom4j-1.6.1.jar
│ │ │ ├── fastjson-1.2.28.jar
│ │ │ ├── freemarker-2.3.23.jar
│ │ │ ├── hibernate-validator-5.4.0.Final.jar
│ │ │ ├── jackson-annotations-2.7.9.jar
│ │ │ ├── jackson-core-2.7.9.jar
│ │ │ ├── jackson-databind-2.7.9.jar
│ │ │ ├── javassist-3.21.0-GA.jar
│ │ │ ├── jaxen-1.1-beta-6.jar
│ │ │ ├── jboss-logging-3.3.0.Final.jar
│ │ │ ├── jsp-api.jar
│ │ │ ├── jsqlparser-0.9.5.jar
│ │ │ ├── jstl-1.2.jar
│ │ │ ├── log4j-1.2.17.jar
│ │ │ ├── log4j-api-2.3.jar
│ │ │ ├── log4j-core-2.3.jar
│ │ │ ├── mybatis-3.2.7.jar
│ │ │ ├── mybatis-3.4.2.jar
│ │ │ ├── mybatis-generator-core-1.3.5.jar
│ │ │ ├── mybatis-spring-1.3.1.jar
│ │ │ ├── mysql-connector-java-5.1.18-bin.jar
│ │ │ ├── mysql-connector-java-5.1.40-bin.jar
│ │ │ ├── ognl-3.1.12.jar
│ │ │ ├── ojdbc-14.jar
│ │ │ ├── pagehelper-4.2.1.jar
│ │ │ ├── servlet-api.jar
│ │ │ ├── slf4j-api-1.7.22.jar
│ │ │ ├── slf4j-log4j12-1.7.22.jar
│ │ │ ├── spring-aop-4.3.6.RELEASE.jar
│ │ │ ├── spring-aspects-4.3.6.RELEASE.jar
│ │ │ ├── spring-beans-4.3.6.RELEASE.jar
│ │ │ ├── spring-context-4.3.6.RELEASE.jar
│ │ │ ├── spring-context-support-4.3.6.RELEASE.jar
│ │ │ ├── spring-core-4.3.6.RELEASE.jar
│ │ │ ├── spring-expression-4.3.6.RELEASE.jar
│ │ │ ├── spring-jdbc-4.3.6.RELEASE.jar
│ │ │ ├── spring-test-4.3.6.RELEASE.jar
│ │ │ ├── spring-tx-4.3.6.RELEASE.jar
│ │ │ ├── spring-web-4.3.6.RELEASE.jar
│ │ │ ├── spring-webmvc-4.3.6.RELEASE.jar
│ │ │ └── validation-api-1.1.0.Final.jar
│ │ └── web.xml
│ └── test
│ └── java
│ └── com
│ └── zjj
│ └── AppTests.java
└── target
├── classes
│ ├── com
│ │ └── zjj
│ │ ├── controller
│ │ │ ├── CourseController.class
│ │ │ ├── LoginController.class
│ │ │ ├── StudentController.class
│ │ │ ├── TableController.class
│ │ │ ├── TeacherController.class
│ │ │ └── TutionController.class
│ │ ├── mapper
│ │ │ ├── ClassTableMapper.class
│ │ │ ├── ClassTableMapper.xml
│ │ │ ├── LoginMapper.class
│ │ │ ├── LoginMapper.xml
│ │ │ ├── StudentAndClassMapper.class
│ │ │ ├── StudentAndClassMapper.xml
│ │ │ ├── StudentMapper.class
│ │ │ ├── StudentMapper.xml
│ │ │ ├── TeacherMapper.class
│ │ │ ├── TeacherMapper.xml
│ │ │ ├── TrainingCourseMapper.class
│ │ │ ├── TrainingCourseMapper.xml
│ │ │ ├── TuitionMapper.class
│ │ │ └── TuitionMapper.xml
│ │ ├── pojo
│ │ │ ├── ClassTable.class
│ │ │ ├── ClassTableExample$Criteria.class
│ │ │ ├── ClassTableExample$Criterion.class
│ │ │ ├── ClassTableExample$GeneratedCriteria.class
│ │ │ ├── ClassTableExample.class
│ │ │ ├── Login.class
│ │ │ ├── LoginExample$Criteria.class
│ │ │ ├── LoginExample$Criterion.class
│ │ │ ├── LoginExample$GeneratedCriteria.class
│ │ │ ├── LoginExample.class
│ │ │ ├── Result.class
│ │ │ ├── StudentAndClass.class
│ │ │ ├── StudentAndClassExample$Criteria.class
│ │ │ ├── StudentAndClassExample$Criterion.class
│ │ │ ├── StudentAndClassExample$GeneratedCriteria.class
│ │ │ ├── StudentAndClassExample.class
│ │ │ ├── Student.class
│ │ │ ├── StudentExample$Criteria.class
│ │ │ ├── StudentExample$Criterion.class
│ │ │ ├── StudentExample$GeneratedCriteria.class
│ │ │ ├── StudentExample.class
│ │ │ ├── Teacher.class
│ │ │ ├── TeacherExample$Criteria.class
│ │ │ ├── TeacherExample$Criterion.class
│ │ │ ├── TeacherExample$GeneratedCriteria.class
│ │ │ ├── TeacherExample.class
│ │ │ ├── TrainingCourse.class
│ │ │ ├── TrainingCourseExample$Criteria.class
│ │ │ ├── TrainingCourseExample$Criterion.class
│ │ │ ├── TrainingCourseExample$GeneratedCriteria.class
│ │ │ ├── TrainingCourseExample.class
│ │ │ ├── Tuition.class
│ │ │ ├── TuitionExample$Criteria.class
│ │ │ ├── TuitionExample$Criterion.class
│ │ │ ├── TuitionExample$GeneratedCriteria.class
│ │ │ └── TuitionExample.class
│ │ └── service
│ │ ├── CourseService.class
│ │ ├── impl
│ │ │ ├── CourseServiceImpl.class
│ │ │ ├── LoginServiceImpl.class
│ │ │ ├── StudentServiceImpl.class
│ │ │ ├── TableServiceImpl.class
│ │ │ ├── TeacherServiceImpl.class
│ │ │ └── TuitionServiceImpl.class
│ │ ├── LoginService.class
│ │ ├── StudentService.class
│ │ ├── TableService.class
│ │ ├── TeacherService.class
│ │ └── TutionService.class
│ ├── db.properties
│ ├── spring_application.xml
│ └── spring_mvc.xml
├── MANIFEST.MF
├── maven-archiver
│ └── pom.properties
├── maven-status
│ └── maven-compiler-plugin
│ ├── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── testCompile
│ └── default-testCompile
│ ├── createdFiles.lst
│ └── inputFiles.lst
├── maven_test
│ ├── 1.jsp
│ ├── common.jsp
│ ├── course
│ │ ├── add.jsp
│ │ ├── detail.jsp
│ │ ├── edit.jsp
│ │ ├── list.jsp
│ │ └── setct.jsp
│ ├── css
│ │ ├── bootstrap-3.3.4.css
│ │ ├── bootstrap.css
│ │ ├── dataTables.bootstrap-1.10.13.css
│ │ ├── font-awesome.css
│ │ ├── google-fonts.css
│ │ ├── isotope.css
│ │ ├── login.css
│ │ └── style.css
│ ├── homepage
│ │ ├── index.jsp
│ │ ├── left.jsp
│ │ ├── test2.jsp
│ │ ├── test3.jsp
│ │ ├── test.jsp
│ │ └── top.jsp
│ ├── images
│ │ ├── 404.png
│ │ ├── backgrou.png
│ │ ├── bg.png
│ │ ├── cloud.png
│ │ ├── coolyun.png
│ │ ├── icon.png
│ │ ├── icon-search@2x.png
│ │ ├── icon-search.png
│ │ ├── info-data-sprite@2x.png
│ │ ├── info-data-sprite.png
│ │ ├── loginbg.png
│ │ ├── logo.png
│ │ ├── main.jpg
│ │ ├── mainMenuBg.jpg
│ │ ├── pw.png
│ │ ├── sky.png
│ │ ├── ujy.png
│ │ ├── user.png
│ │ ├── wanho-logo.png
│ │ ├── weiboxs-logo@2x.png
│ │ └── weiboxs-logo.png
│ ├── index.jsp
│ ├── js
│ │ ├── angular.min.js
│ │ ├── bootstrap-3.3.4.js
│ │ ├── bootstrap.min.js
│ │ ├── dataTables.bootstrap-1.10.13.js
│ │ ├── jquery-3.0.0.js
│ │ ├── jquery.dataTables-1.10.13.js
│ │ ├── jquery.tmpl.js
│ │ ├── jquery-ui.js
│ │ ├── jquery.validate.js
│ │ ├── messages_zh.js
│ │ ├── page.js
│ │ └── table.js
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── scripts
│ │ ├── jquery.pagination.js
│ │ └── pagination.css
│ ├── student
│ │ ├── add.jsp
│ │ ├── detail.jsp
│ │ ├── edit.jsp
│ │ └── list.jsp
│ ├── Style
│ │ └── Style.css
│ ├── styles
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ ├── custom.css
│ │ │ │ └── font-awesome.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── custom.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ └── npm.js
│ │ └── main.css
│ ├── table
│ │ ├── edit.jsp
│ │ └── list.jsp
│ ├── teacher
│ │ ├── add.jsp
│ │ ├── detail.jsp
│ │ ├── edit.jsp
│ │ └── list.jsp
│ ├── tuition
│ │ ├── edit.jsp
│ │ └── list.jsp
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── zjj
│ │ │ ├── controller
│ │ │ │ ├── CourseController.class
│ │ │ │ ├── LoginController.class
│ │ │ │ ├── StudentController.class
│ │ │ │ ├── TableController.class
│ │ │ │ ├── TeacherController.class
│ │ │ │ └── TutionController.class
│ │ │ ├── mapper
│ │ │ │ ├── ClassTableMapper.class
│ │ │ │ ├── ClassTableMapper.xml
│ │ │ │ ├── LoginMapper.class
│ │ │ │ ├── LoginMapper.xml
│ │ │ │ ├── StudentAndClassMapper.class
│ │ │ │ ├── StudentAndClassMapper.xml
│ │ │ │ ├── StudentMapper.class
│ │ │ │ ├── StudentMapper.xml
│ │ │ │ ├── TeacherMapper.class
│ │ │ │ ├── TeacherMapper.xml
│ │ │ │ ├── TrainingCourseMapper.class
│ │ │ │ ├── TrainingCourseMapper.xml
│ │ │ │ ├── TuitionMapper.class
│ │ │ │ └── TuitionMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── ClassTable.class
│ │ │ │ ├── ClassTableExample$Criteria.class
│ │ │ │ ├── ClassTableExample$Criterion.class
│ │ │ │ ├── ClassTableExample$GeneratedCriteria.class
│ │ │ │ ├── ClassTableExample.class
│ │ │ │ ├── Login.class
│ │ │ │ ├── LoginExample$Criteria.class
│ │ │ │ ├── LoginExample$Criterion.class
│ │ │ │ ├── LoginExample$GeneratedCriteria.class
│ │ │ │ ├── LoginExample.class
│ │ │ │ ├── Result.class
│ │ │ │ ├── StudentAndClass.class
│ │ │ │ ├── StudentAndClassExample$Criteria.class
│ │ │ │ ├── StudentAndClassExample$Criterion.class
│ │ │ │ ├── StudentAndClassExample$GeneratedCriteria.class
│ │ │ │ ├── StudentAndClassExample.class
│ │ │ │ ├── Student.class
│ │ │ │ ├── StudentExample$Criteria.class
│ │ │ │ ├── StudentExample$Criterion.class
│ │ │ │ ├── StudentExample$GeneratedCriteria.class
│ │ │ │ ├── StudentExample.class
│ │ │ │ ├── Teacher.class
│ │ │ │ ├── TeacherExample$Criteria.class
│ │ │ │ ├── TeacherExample$Criterion.class
│ │ │ │ ├── TeacherExample$GeneratedCriteria.class
│ │ │ │ ├── TeacherExample.class
│ │ │ │ ├── TrainingCourse.class
│ │ │ │ ├── TrainingCourseExample$Criteria.class
│ │ │ │ ├── TrainingCourseExample$Criterion.class
│ │ │ │ ├── TrainingCourseExample$GeneratedCriteria.class
│ │ │ │ ├── TrainingCourseExample.class
│ │ │ │ ├── Tuition.class
│ │ │ │ ├── TuitionExample$Criteria.class
│ │ │ │ ├── TuitionExample$Criterion.class
│ │ │ │ ├── TuitionExample$GeneratedCriteria.class
│ │ │ │ └── TuitionExample.class
│ │ │ └── service
│ │ │ ├── CourseService.class
│ │ │ ├── impl
│ │ │ │ ├── CourseServiceImpl.class
│ │ │ │ ├── LoginServiceImpl.class
│ │ │ │ ├── StudentServiceImpl.class
│ │ │ │ ├── TableServiceImpl.class
│ │ │ │ ├── TeacherServiceImpl.class
│ │ │ │ └── TuitionServiceImpl.class
│ │ │ ├── LoginService.class
│ │ │ ├── StudentService.class
│ │ │ ├── TableService.class
│ │ │ ├── TeacherService.class
│ │ │ └── TutionService.class
│ │ ├── db.properties
│ │ ├── spring_application.xml
│ │ └── spring_mvc.xml
│ ├── lib
│ │ ├── ant-1.9.6.jar
│ │ ├── ant-launcher-1.9.6.jar
│ │ ├── aopalliance-1.0.jar
│ │ ├── asm-5.1.jar
│ │ ├── aspectjrt-1.8.8.jar
│ │ ├── aspectjtools-1.8.4.jar
│ │ ├── aspectjweaver-1.8.8.jar
│ │ ├── cglib-3.2.4.jar
│ │ ├── classmate-1.3.3.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-dbcp-1.4.jar
│ │ ├── commons-lang3-3.2.jar
│ │ ├── commons-logging-1.2.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-pool-1.5.4.jar
│ │ ├── commons-pool-1.5.5.jar
│ │ ├── commons-pool-1.6.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── fastjson-1.2.28.jar
│ │ ├── fastjson-1.2.46.jar
│ │ ├── freemarker-2.3.23.jar
│ │ ├── hibernate-validator-5.4.0.Final.jar
│ │ ├── jackson-annotations-2.7.9.jar
│ │ ├── jackson-core-2.7.9.jar
│ │ ├── jackson-core-asl-1.9.12.jar
│ │ ├── jackson-databind-2.7.9.jar
│ │ ├── jackson-mapper-asl-1.9.12.jar
│ │ ├── javassist-3.21.0-GA.jar
│ │ ├── jaxen-1.1-beta-6.jar
│ │ ├── jboss-logging-3.3.0.Final.jar
│ │ ├── jsp-api.jar
│ │ ├── jsqlparser-0.9.1.jar
│ │ ├── jsqlparser-0.9.5.jar
│ │ ├── jstl-1.2.jar
│ │ ├── jstl-api-1.2.jar
│ │ ├── log4j-1.2.17.jar
│ │ ├── log4j-api-2.3.jar
│ │ ├── log4j-core-2.3.jar
│ │ ├── mybatis-3.2.7.jar
│ │ ├── mybatis-3.2.8.jar
│ │ ├── mybatis-3.4.2.jar
│ │ ├── mybatis-generator-core-1.3.5.jar
│ │ ├── mybatis-spring-1.2.2.jar
│ │ ├── mybatis-spring-1.3.1.jar
│ │ ├── mysql-connector-java-5.1.18-bin.jar
│ │ ├── mysql-connector-java-5.1.18.jar
│ │ ├── mysql-connector-java-5.1.40-bin.jar
│ │ ├── ognl-3.1.12.jar
│ │ ├── ojdbc-14.jar
│ │ ├── pagehelper-3.7.5.jar
│ │ ├── pagehelper-4.2.1.jar
│ │ ├── servlet-api-2.5.jar
│ │ ├── servlet-api.jar
│ │ ├── slf4j-api-1.7.22.jar
│ │ ├── slf4j-log4j12-1.7.22.jar
│ │ ├── spring-aop-4.2.4.RELEASE.jar
│ │ ├── spring-aop-4.3.6.RELEASE.jar
│ │ ├── spring-aspects-4.3.6.RELEASE.jar
│ │ ├── spring-beans-4.2.4.RELEASE.jar
│ │ ├── spring-beans-4.3.6.RELEASE.jar
│ │ ├── spring-context-4.2.4.RELEASE.jar
│ │ ├── spring-context-4.3.6.RELEASE.jar
│ │ ├── spring-context-support-4.3.6.RELEASE.jar
│ │ ├── spring-core-4.2.4.RELEASE.jar
│ │ ├── spring-core-4.3.6.RELEASE.jar
│ │ ├── spring-expression-4.2.4.RELEASE.jar
│ │ ├── spring-expression-4.3.6.RELEASE.jar
│ │ ├── spring-jdbc-4.2.4.RELEASE.jar
│ │ ├── spring-jdbc-4.3.6.RELEASE.jar
│ │ ├── spring-test-4.3.6.RELEASE.jar
│ │ ├── spring-tx-4.2.4.RELEASE.jar
│ │ ├── spring-tx-4.3.6.RELEASE.jar
│ │ ├── spring-web-4.2.4.RELEASE.jar
│ │ ├── spring-web-4.3.6.RELEASE.jar
│ │ ├── spring-webmvc-4.2.4.RELEASE.jar
│ │ ├── spring-webmvc-4.3.6.RELEASE.jar
│ │ └── validation-api-1.1.0.Final.jar
│ └── web.xml
├── maven_test.war
└── test-classes
└── com
└── zjj
└── AppTests.class
82 directories, 534 files
本文开发的培训机构教务管理系统,使用LntelliJ IDEA 软件mysql数据库运用了spring,springmvc,mybatis 框架的javaweb项目。系统功能包含1.创建课程管理;2.培训教师的信息管理;3.学员信息的管理;4.课表的管理;5.调课管理6.收费管理。
【实例截图】
【核心代码】
c4a611f9-a2e8-4880-a79c-c67c93a97c29
└── maven_test
├── maven_test.iml
├── my.sql
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ ├── com
│ │ │ │ └── zjj
│ │ │ │ ├── controller
│ │ │ │ │ ├── CourseController.java
│ │ │ │ │ ├── LoginController.java
│ │ │ │ │ ├── StudentController.java
│ │ │ │ │ ├── TableController.java
│ │ │ │ │ ├── TeacherController.java
│ │ │ │ │ └── TutionController.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── ClassTableMapper.java
│ │ │ │ │ ├── ClassTableMapper.xml
│ │ │ │ │ ├── LoginMapper.java
│ │ │ │ │ ├── LoginMapper.xml
│ │ │ │ │ ├── StudentAndClassMapper.java
│ │ │ │ │ ├── StudentAndClassMapper.xml
│ │ │ │ │ ├── StudentMapper.java
│ │ │ │ │ ├── StudentMapper.xml
│ │ │ │ │ ├── TeacherMapper.java
│ │ │ │ │ ├── TeacherMapper.xml
│ │ │ │ │ ├── TrainingCourseMapper.java
│ │ │ │ │ ├── TrainingCourseMapper.xml
│ │ │ │ │ ├── TuitionMapper.java
│ │ │ │ │ └── TuitionMapper.xml
│ │ │ │ ├── pojo
│ │ │ │ │ ├── ClassTableExample.java
│ │ │ │ │ ├── ClassTable.java
│ │ │ │ │ ├── LoginExample.java
│ │ │ │ │ ├── Login.java
│ │ │ │ │ ├── Result.java
│ │ │ │ │ ├── StudentAndClassExample.java
│ │ │ │ │ ├── StudentAndClass.java
│ │ │ │ │ ├── StudentExample.java
│ │ │ │ │ ├── Student.java
│ │ │ │ │ ├── TeacherExample.java
│ │ │ │ │ ├── Teacher.java
│ │ │ │ │ ├── TrainingCourseExample.java
│ │ │ │ │ ├── TrainingCourse.java
│ │ │ │ │ ├── TuitionExample.java
│ │ │ │ │ └── Tuition.java
│ │ │ │ └── service
│ │ │ │ ├── CourseService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── CourseServiceImpl.java
│ │ │ │ │ ├── LoginServiceImpl.java
│ │ │ │ │ ├── StudentServiceImpl.java
│ │ │ │ │ ├── TableServiceImpl.java
│ │ │ │ │ ├── TeacherServiceImpl.java
│ │ │ │ │ └── TuitionServiceImpl.java
│ │ │ │ ├── LoginService.java
│ │ │ │ ├── StudentService.java
│ │ │ │ ├── TableService.java
│ │ │ │ ├── TeacherService.java
│ │ │ │ └── TutionService.java
│ │ │ ├── db.properties
│ │ │ ├── spring_application.xml
│ │ │ └── spring_mvc.xml
│ │ └── webapp
│ │ ├── 1.jsp
│ │ ├── common.jsp
│ │ ├── course
│ │ │ ├── add.jsp
│ │ │ ├── detail.jsp
│ │ │ ├── edit.jsp
│ │ │ ├── list.jsp
│ │ │ └── setct.jsp
│ │ ├── css
│ │ │ ├── bootstrap-3.3.4.css
│ │ │ ├── bootstrap.css
│ │ │ ├── dataTables.bootstrap-1.10.13.css
│ │ │ ├── font-awesome.css
│ │ │ ├── google-fonts.css
│ │ │ ├── isotope.css
│ │ │ ├── login.css
│ │ │ └── style.css
│ │ ├── homepage
│ │ │ ├── index.jsp
│ │ │ ├── left.jsp
│ │ │ ├── test2.jsp
│ │ │ ├── test3.jsp
│ │ │ ├── test.jsp
│ │ │ └── top.jsp
│ │ ├── images
│ │ │ ├── 404.png
│ │ │ ├── backgrou.png
│ │ │ ├── bg.png
│ │ │ ├── cloud.png
│ │ │ ├── coolyun.png
│ │ │ ├── icon.png
│ │ │ ├── icon-search@2x.png
│ │ │ ├── icon-search.png
│ │ │ ├── info-data-sprite@2x.png
│ │ │ ├── info-data-sprite.png
│ │ │ ├── loginbg.png
│ │ │ ├── logo.png
│ │ │ ├── main.jpg
│ │ │ ├── mainMenuBg.jpg
│ │ │ ├── pw.png
│ │ │ ├── sky.png
│ │ │ ├── ujy.png
│ │ │ ├── user.png
│ │ │ ├── wanho-logo.png
│ │ │ ├── weiboxs-logo@2x.png
│ │ │ └── weiboxs-logo.png
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── angular.min.js
│ │ │ ├── bootstrap-3.3.4.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── dataTables.bootstrap-1.10.13.js
│ │ │ ├── jquery-3.0.0.js
│ │ │ ├── jquery.dataTables-1.10.13.js
│ │ │ ├── jquery.tmpl.js
│ │ │ ├── jquery-ui.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── messages_zh.js
│ │ │ ├── page.js
│ │ │ └── table.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── scripts
│ │ │ ├── jquery.pagination.js
│ │ │ └── pagination.css
│ │ ├── student
│ │ │ ├── add.jsp
│ │ │ ├── detail.jsp
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ ├── Style
│ │ │ └── Style.css
│ │ ├── styles
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ │ ├── custom.css
│ │ │ │ │ └── font-awesome.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── custom.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ └── npm.js
│ │ │ └── main.css
│ │ ├── table
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ ├── teacher
│ │ │ ├── add.jsp
│ │ │ ├── detail.jsp
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ ├── tuition
│ │ │ ├── edit.jsp
│ │ │ └── list.jsp
│ │ └── WEB-INF
│ │ ├── lib
│ │ │ ├── ant-1.9.6.jar
│ │ │ ├── ant-launcher-1.9.6.jar
│ │ │ ├── aopalliance-1.0.jar
│ │ │ ├── asm-5.1.jar
│ │ │ ├── aspectjtools-1.8.4.jar
│ │ │ ├── cglib-3.2.4.jar
│ │ │ ├── classmate-1.3.3.jar
│ │ │ ├── commons-beanutils.jar
│ │ │ ├── commons-dbcp-1.4.jar
│ │ │ ├── commons-lang3-3.2.jar
│ │ │ ├── commons-logging-1.2.jar
│ │ │ ├── commons-logging.jar
│ │ │ ├── commons-pool-1.5.5.jar
│ │ │ ├── commons-pool-1.6.jar
│ │ │ ├── dom4j-1.6.1.jar
│ │ │ ├── fastjson-1.2.28.jar
│ │ │ ├── freemarker-2.3.23.jar
│ │ │ ├── hibernate-validator-5.4.0.Final.jar
│ │ │ ├── jackson-annotations-2.7.9.jar
│ │ │ ├── jackson-core-2.7.9.jar
│ │ │ ├── jackson-databind-2.7.9.jar
│ │ │ ├── javassist-3.21.0-GA.jar
│ │ │ ├── jaxen-1.1-beta-6.jar
│ │ │ ├── jboss-logging-3.3.0.Final.jar
│ │ │ ├── jsp-api.jar
│ │ │ ├── jsqlparser-0.9.5.jar
│ │ │ ├── jstl-1.2.jar
│ │ │ ├── log4j-1.2.17.jar
│ │ │ ├── log4j-api-2.3.jar
│ │ │ ├── log4j-core-2.3.jar
│ │ │ ├── mybatis-3.2.7.jar
│ │ │ ├── mybatis-3.4.2.jar
│ │ │ ├── mybatis-generator-core-1.3.5.jar
│ │ │ ├── mybatis-spring-1.3.1.jar
│ │ │ ├── mysql-connector-java-5.1.18-bin.jar
│ │ │ ├── mysql-connector-java-5.1.40-bin.jar
│ │ │ ├── ognl-3.1.12.jar
│ │ │ ├── ojdbc-14.jar
│ │ │ ├── pagehelper-4.2.1.jar
│ │ │ ├── servlet-api.jar
│ │ │ ├── slf4j-api-1.7.22.jar
│ │ │ ├── slf4j-log4j12-1.7.22.jar
│ │ │ ├── spring-aop-4.3.6.RELEASE.jar
│ │ │ ├── spring-aspects-4.3.6.RELEASE.jar
│ │ │ ├── spring-beans-4.3.6.RELEASE.jar
│ │ │ ├── spring-context-4.3.6.RELEASE.jar
│ │ │ ├── spring-context-support-4.3.6.RELEASE.jar
│ │ │ ├── spring-core-4.3.6.RELEASE.jar
│ │ │ ├── spring-expression-4.3.6.RELEASE.jar
│ │ │ ├── spring-jdbc-4.3.6.RELEASE.jar
│ │ │ ├── spring-test-4.3.6.RELEASE.jar
│ │ │ ├── spring-tx-4.3.6.RELEASE.jar
│ │ │ ├── spring-web-4.3.6.RELEASE.jar
│ │ │ ├── spring-webmvc-4.3.6.RELEASE.jar
│ │ │ └── validation-api-1.1.0.Final.jar
│ │ └── web.xml
│ └── test
│ └── java
│ └── com
│ └── zjj
│ └── AppTests.java
└── target
├── classes
│ ├── com
│ │ └── zjj
│ │ ├── controller
│ │ │ ├── CourseController.class
│ │ │ ├── LoginController.class
│ │ │ ├── StudentController.class
│ │ │ ├── TableController.class
│ │ │ ├── TeacherController.class
│ │ │ └── TutionController.class
│ │ ├── mapper
│ │ │ ├── ClassTableMapper.class
│ │ │ ├── ClassTableMapper.xml
│ │ │ ├── LoginMapper.class
│ │ │ ├── LoginMapper.xml
│ │ │ ├── StudentAndClassMapper.class
│ │ │ ├── StudentAndClassMapper.xml
│ │ │ ├── StudentMapper.class
│ │ │ ├── StudentMapper.xml
│ │ │ ├── TeacherMapper.class
│ │ │ ├── TeacherMapper.xml
│ │ │ ├── TrainingCourseMapper.class
│ │ │ ├── TrainingCourseMapper.xml
│ │ │ ├── TuitionMapper.class
│ │ │ └── TuitionMapper.xml
│ │ ├── pojo
│ │ │ ├── ClassTable.class
│ │ │ ├── ClassTableExample$Criteria.class
│ │ │ ├── ClassTableExample$Criterion.class
│ │ │ ├── ClassTableExample$GeneratedCriteria.class
│ │ │ ├── ClassTableExample.class
│ │ │ ├── Login.class
│ │ │ ├── LoginExample$Criteria.class
│ │ │ ├── LoginExample$Criterion.class
│ │ │ ├── LoginExample$GeneratedCriteria.class
│ │ │ ├── LoginExample.class
│ │ │ ├── Result.class
│ │ │ ├── StudentAndClass.class
│ │ │ ├── StudentAndClassExample$Criteria.class
│ │ │ ├── StudentAndClassExample$Criterion.class
│ │ │ ├── StudentAndClassExample$GeneratedCriteria.class
│ │ │ ├── StudentAndClassExample.class
│ │ │ ├── Student.class
│ │ │ ├── StudentExample$Criteria.class
│ │ │ ├── StudentExample$Criterion.class
│ │ │ ├── StudentExample$GeneratedCriteria.class
│ │ │ ├── StudentExample.class
│ │ │ ├── Teacher.class
│ │ │ ├── TeacherExample$Criteria.class
│ │ │ ├── TeacherExample$Criterion.class
│ │ │ ├── TeacherExample$GeneratedCriteria.class
│ │ │ ├── TeacherExample.class
│ │ │ ├── TrainingCourse.class
│ │ │ ├── TrainingCourseExample$Criteria.class
│ │ │ ├── TrainingCourseExample$Criterion.class
│ │ │ ├── TrainingCourseExample$GeneratedCriteria.class
│ │ │ ├── TrainingCourseExample.class
│ │ │ ├── Tuition.class
│ │ │ ├── TuitionExample$Criteria.class
│ │ │ ├── TuitionExample$Criterion.class
│ │ │ ├── TuitionExample$GeneratedCriteria.class
│ │ │ └── TuitionExample.class
│ │ └── service
│ │ ├── CourseService.class
│ │ ├── impl
│ │ │ ├── CourseServiceImpl.class
│ │ │ ├── LoginServiceImpl.class
│ │ │ ├── StudentServiceImpl.class
│ │ │ ├── TableServiceImpl.class
│ │ │ ├── TeacherServiceImpl.class
│ │ │ └── TuitionServiceImpl.class
│ │ ├── LoginService.class
│ │ ├── StudentService.class
│ │ ├── TableService.class
│ │ ├── TeacherService.class
│ │ └── TutionService.class
│ ├── db.properties
│ ├── spring_application.xml
│ └── spring_mvc.xml
├── MANIFEST.MF
├── maven-archiver
│ └── pom.properties
├── maven-status
│ └── maven-compiler-plugin
│ ├── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── testCompile
│ └── default-testCompile
│ ├── createdFiles.lst
│ └── inputFiles.lst
├── maven_test
│ ├── 1.jsp
│ ├── common.jsp
│ ├── course
│ │ ├── add.jsp
│ │ ├── detail.jsp
│ │ ├── edit.jsp
│ │ ├── list.jsp
│ │ └── setct.jsp
│ ├── css
│ │ ├── bootstrap-3.3.4.css
│ │ ├── bootstrap.css
│ │ ├── dataTables.bootstrap-1.10.13.css
│ │ ├── font-awesome.css
│ │ ├── google-fonts.css
│ │ ├── isotope.css
│ │ ├── login.css
│ │ └── style.css
│ ├── homepage
│ │ ├── index.jsp
│ │ ├── left.jsp
│ │ ├── test2.jsp
│ │ ├── test3.jsp
│ │ ├── test.jsp
│ │ └── top.jsp
│ ├── images
│ │ ├── 404.png
│ │ ├── backgrou.png
│ │ ├── bg.png
│ │ ├── cloud.png
│ │ ├── coolyun.png
│ │ ├── icon.png
│ │ ├── icon-search@2x.png
│ │ ├── icon-search.png
│ │ ├── info-data-sprite@2x.png
│ │ ├── info-data-sprite.png
│ │ ├── loginbg.png
│ │ ├── logo.png
│ │ ├── main.jpg
│ │ ├── mainMenuBg.jpg
│ │ ├── pw.png
│ │ ├── sky.png
│ │ ├── ujy.png
│ │ ├── user.png
│ │ ├── wanho-logo.png
│ │ ├── weiboxs-logo@2x.png
│ │ └── weiboxs-logo.png
│ ├── index.jsp
│ ├── js
│ │ ├── angular.min.js
│ │ ├── bootstrap-3.3.4.js
│ │ ├── bootstrap.min.js
│ │ ├── dataTables.bootstrap-1.10.13.js
│ │ ├── jquery-3.0.0.js
│ │ ├── jquery.dataTables-1.10.13.js
│ │ ├── jquery.tmpl.js
│ │ ├── jquery-ui.js
│ │ ├── jquery.validate.js
│ │ ├── messages_zh.js
│ │ ├── page.js
│ │ └── table.js
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── scripts
│ │ ├── jquery.pagination.js
│ │ └── pagination.css
│ ├── student
│ │ ├── add.jsp
│ │ ├── detail.jsp
│ │ ├── edit.jsp
│ │ └── list.jsp
│ ├── Style
│ │ └── Style.css
│ ├── styles
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ ├── custom.css
│ │ │ │ └── font-awesome.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── custom.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ └── npm.js
│ │ └── main.css
│ ├── table
│ │ ├── edit.jsp
│ │ └── list.jsp
│ ├── teacher
│ │ ├── add.jsp
│ │ ├── detail.jsp
│ │ ├── edit.jsp
│ │ └── list.jsp
│ ├── tuition
│ │ ├── edit.jsp
│ │ └── list.jsp
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── zjj
│ │ │ ├── controller
│ │ │ │ ├── CourseController.class
│ │ │ │ ├── LoginController.class
│ │ │ │ ├── StudentController.class
│ │ │ │ ├── TableController.class
│ │ │ │ ├── TeacherController.class
│ │ │ │ └── TutionController.class
│ │ │ ├── mapper
│ │ │ │ ├── ClassTableMapper.class
│ │ │ │ ├── ClassTableMapper.xml
│ │ │ │ ├── LoginMapper.class
│ │ │ │ ├── LoginMapper.xml
│ │ │ │ ├── StudentAndClassMapper.class
│ │ │ │ ├── StudentAndClassMapper.xml
│ │ │ │ ├── StudentMapper.class
│ │ │ │ ├── StudentMapper.xml
│ │ │ │ ├── TeacherMapper.class
│ │ │ │ ├── TeacherMapper.xml
│ │ │ │ ├── TrainingCourseMapper.class
│ │ │ │ ├── TrainingCourseMapper.xml
│ │ │ │ ├── TuitionMapper.class
│ │ │ │ └── TuitionMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── ClassTable.class
│ │ │ │ ├── ClassTableExample$Criteria.class
│ │ │ │ ├── ClassTableExample$Criterion.class
│ │ │ │ ├── ClassTableExample$GeneratedCriteria.class
│ │ │ │ ├── ClassTableExample.class
│ │ │ │ ├── Login.class
│ │ │ │ ├── LoginExample$Criteria.class
│ │ │ │ ├── LoginExample$Criterion.class
│ │ │ │ ├── LoginExample$GeneratedCriteria.class
│ │ │ │ ├── LoginExample.class
│ │ │ │ ├── Result.class
│ │ │ │ ├── StudentAndClass.class
│ │ │ │ ├── StudentAndClassExample$Criteria.class
│ │ │ │ ├── StudentAndClassExample$Criterion.class
│ │ │ │ ├── StudentAndClassExample$GeneratedCriteria.class
│ │ │ │ ├── StudentAndClassExample.class
│ │ │ │ ├── Student.class
│ │ │ │ ├── StudentExample$Criteria.class
│ │ │ │ ├── StudentExample$Criterion.class
│ │ │ │ ├── StudentExample$GeneratedCriteria.class
│ │ │ │ ├── StudentExample.class
│ │ │ │ ├── Teacher.class
│ │ │ │ ├── TeacherExample$Criteria.class
│ │ │ │ ├── TeacherExample$Criterion.class
│ │ │ │ ├── TeacherExample$GeneratedCriteria.class
│ │ │ │ ├── TeacherExample.class
│ │ │ │ ├── TrainingCourse.class
│ │ │ │ ├── TrainingCourseExample$Criteria.class
│ │ │ │ ├── TrainingCourseExample$Criterion.class
│ │ │ │ ├── TrainingCourseExample$GeneratedCriteria.class
│ │ │ │ ├── TrainingCourseExample.class
│ │ │ │ ├── Tuition.class
│ │ │ │ ├── TuitionExample$Criteria.class
│ │ │ │ ├── TuitionExample$Criterion.class
│ │ │ │ ├── TuitionExample$GeneratedCriteria.class
│ │ │ │ └── TuitionExample.class
│ │ │ └── service
│ │ │ ├── CourseService.class
│ │ │ ├── impl
│ │ │ │ ├── CourseServiceImpl.class
│ │ │ │ ├── LoginServiceImpl.class
│ │ │ │ ├── StudentServiceImpl.class
│ │ │ │ ├── TableServiceImpl.class
│ │ │ │ ├── TeacherServiceImpl.class
│ │ │ │ └── TuitionServiceImpl.class
│ │ │ ├── LoginService.class
│ │ │ ├── StudentService.class
│ │ │ ├── TableService.class
│ │ │ ├── TeacherService.class
│ │ │ └── TutionService.class
│ │ ├── db.properties
│ │ ├── spring_application.xml
│ │ └── spring_mvc.xml
│ ├── lib
│ │ ├── ant-1.9.6.jar
│ │ ├── ant-launcher-1.9.6.jar
│ │ ├── aopalliance-1.0.jar
│ │ ├── asm-5.1.jar
│ │ ├── aspectjrt-1.8.8.jar
│ │ ├── aspectjtools-1.8.4.jar
│ │ ├── aspectjweaver-1.8.8.jar
│ │ ├── cglib-3.2.4.jar
│ │ ├── classmate-1.3.3.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-dbcp-1.4.jar
│ │ ├── commons-lang3-3.2.jar
│ │ ├── commons-logging-1.2.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-pool-1.5.4.jar
│ │ ├── commons-pool-1.5.5.jar
│ │ ├── commons-pool-1.6.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── fastjson-1.2.28.jar
│ │ ├── fastjson-1.2.46.jar
│ │ ├── freemarker-2.3.23.jar
│ │ ├── hibernate-validator-5.4.0.Final.jar
│ │ ├── jackson-annotations-2.7.9.jar
│ │ ├── jackson-core-2.7.9.jar
│ │ ├── jackson-core-asl-1.9.12.jar
│ │ ├── jackson-databind-2.7.9.jar
│ │ ├── jackson-mapper-asl-1.9.12.jar
│ │ ├── javassist-3.21.0-GA.jar
│ │ ├── jaxen-1.1-beta-6.jar
│ │ ├── jboss-logging-3.3.0.Final.jar
│ │ ├── jsp-api.jar
│ │ ├── jsqlparser-0.9.1.jar
│ │ ├── jsqlparser-0.9.5.jar
│ │ ├── jstl-1.2.jar
│ │ ├── jstl-api-1.2.jar
│ │ ├── log4j-1.2.17.jar
│ │ ├── log4j-api-2.3.jar
│ │ ├── log4j-core-2.3.jar
│ │ ├── mybatis-3.2.7.jar
│ │ ├── mybatis-3.2.8.jar
│ │ ├── mybatis-3.4.2.jar
│ │ ├── mybatis-generator-core-1.3.5.jar
│ │ ├── mybatis-spring-1.2.2.jar
│ │ ├── mybatis-spring-1.3.1.jar
│ │ ├── mysql-connector-java-5.1.18-bin.jar
│ │ ├── mysql-connector-java-5.1.18.jar
│ │ ├── mysql-connector-java-5.1.40-bin.jar
│ │ ├── ognl-3.1.12.jar
│ │ ├── ojdbc-14.jar
│ │ ├── pagehelper-3.7.5.jar
│ │ ├── pagehelper-4.2.1.jar
│ │ ├── servlet-api-2.5.jar
│ │ ├── servlet-api.jar
│ │ ├── slf4j-api-1.7.22.jar
│ │ ├── slf4j-log4j12-1.7.22.jar
│ │ ├── spring-aop-4.2.4.RELEASE.jar
│ │ ├── spring-aop-4.3.6.RELEASE.jar
│ │ ├── spring-aspects-4.3.6.RELEASE.jar
│ │ ├── spring-beans-4.2.4.RELEASE.jar
│ │ ├── spring-beans-4.3.6.RELEASE.jar
│ │ ├── spring-context-4.2.4.RELEASE.jar
│ │ ├── spring-context-4.3.6.RELEASE.jar
│ │ ├── spring-context-support-4.3.6.RELEASE.jar
│ │ ├── spring-core-4.2.4.RELEASE.jar
│ │ ├── spring-core-4.3.6.RELEASE.jar
│ │ ├── spring-expression-4.2.4.RELEASE.jar
│ │ ├── spring-expression-4.3.6.RELEASE.jar
│ │ ├── spring-jdbc-4.2.4.RELEASE.jar
│ │ ├── spring-jdbc-4.3.6.RELEASE.jar
│ │ ├── spring-test-4.3.6.RELEASE.jar
│ │ ├── spring-tx-4.2.4.RELEASE.jar
│ │ ├── spring-tx-4.3.6.RELEASE.jar
│ │ ├── spring-web-4.2.4.RELEASE.jar
│ │ ├── spring-web-4.3.6.RELEASE.jar
│ │ ├── spring-webmvc-4.2.4.RELEASE.jar
│ │ ├── spring-webmvc-4.3.6.RELEASE.jar
│ │ └── validation-api-1.1.0.Final.jar
│ └── web.xml
├── maven_test.war
└── test-classes
└── com
└── zjj
└── AppTests.class
82 directories, 534 files
标签:
好例子网口号:伸出你的我的手 — 分享!
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)