├── .idea ├── compiler.xml ├── encodings.xml ├── misc.xml └── workspace.xml ├── README.md ├── StudentManagePro.iml ├── pom.xml ├── src └── main │ ├── java │ └── pers │ │ └── kuroko │ │ ├── controller │ │ ├── LoginController.java │ │ ├── StudentController.java │ │ └── TestController.java │ │ ├── entity │ │ ├── Login.java │ │ └── Student.java │ │ ├── mapper │ │ ├── LoginMapper.java │ │ ├── StuMapper.java │ │ ├── loginMapper.xml │ │ └── stuMapper.xml │ │ └── service │ │ ├── LoginService.java │ │ ├── LoginServiceImpl.java │ │ ├── StudentService.java │ │ ├── StudentServiceImpl.java │ │ ├── TestService.java │ │ └── TestServiceImpl.java │ ├── resources │ ├── db.properties │ ├── spring.xml │ ├── springmvc.xml │ └── sqlMapConfig.xml │ └── webapp │ ├── WEB-INF │ ├── pages │ │ ├── error.jsp │ │ ├── homePage.jsp │ │ ├── login.jsp │ │ └── test.jsp │ └── web.xml │ ├── css │ ├── add.css │ ├── button.css │ ├── examine.css │ ├── main.css │ └── update.css │ ├── img │ ├── bg_login.jpg │ ├── password.png │ └── user.png │ ├── index.jsp │ ├── js │ ├── add.js │ ├── del.js │ ├── examine.js │ ├── flip.js │ ├── jquery-1.8.3.min.js │ ├── reRange.js │ └── update.js │ └── login.jsp ├── studentmanage.sql └── target ├── StudentManagePro.war ├── StudentManagePro ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── classes │ │ ├── db.properties │ │ ├── pers │ │ │ └── kuroko │ │ │ │ ├── controller │ │ │ │ ├── LoginController.class │ │ │ │ ├── StudentController.class │ │ │ │ └── TestController.class │ │ │ │ ├── entity │ │ │ │ ├── Login.class │ │ │ │ └── Student.class │ │ │ │ ├── mapper │ │ │ │ ├── LoginMapper.class │ │ │ │ ├── StuMapper.class │ │ │ │ ├── loginMapper.xml │ │ │ │ └── stuMapper.xml │ │ │ │ └── service │ │ │ │ ├── LoginService.class │ │ │ │ ├── LoginServiceImpl.class │ │ │ │ ├── StudentService.class │ │ │ │ ├── StudentServiceImpl.class │ │ │ │ ├── TestService.class │ │ │ │ └── TestServiceImpl.class │ │ ├── spring.xml │ │ ├── springmvc.xml │ │ └── sqlMapConfig.xml │ ├── lib │ │ ├── aspectjweaver-1.6.8.jar │ │ ├── commons-dbcp-1.4.jar │ │ ├── commons-logging-1.2.jar │ │ ├── commons-pool-1.6.jar │ │ ├── hamcrest-core-1.3.jar │ │ ├── jackson-annotations-2.9.8.jar │ │ ├── jackson-core-2.9.8.jar │ │ ├── jackson-databind-2.9.8.jar │ │ ├── jstl-1.2.jar │ │ ├── junit-4.11.jar │ │ ├── log4j-1.2.17.jar │ │ ├── mybatis-3.4.6.jar │ │ ├── mybatis-spring-1.3.1.jar │ │ ├── mysql-connector-java-8.0.11.jar │ │ ├── protobuf-java-2.6.0.jar │ │ ├── spring-aop-5.2.3.RELEASE.jar │ │ ├── spring-aspects-5.2.3.RELEASE.jar │ │ ├── spring-beans-5.2.3.RELEASE.jar │ │ ├── spring-context-5.2.3.RELEASE.jar │ │ ├── spring-context-support-5.2.3.RELEASE.jar │ │ ├── spring-core-5.2.3.RELEASE.jar │ │ ├── spring-expression-5.2.3.RELEASE.jar │ │ ├── spring-instrument-5.2.3.RELEASE.jar │ │ ├── spring-jcl-5.2.3.RELEASE.jar │ │ ├── spring-jdbc-5.2.3.RELEASE.jar │ │ ├── spring-jms-5.2.3.RELEASE.jar │ │ ├── spring-messaging-5.2.3.RELEASE.jar │ │ ├── spring-orm-5.2.3.RELEASE.jar │ │ ├── spring-oxm-5.2.3.RELEASE.jar │ │ ├── spring-test-5.2.3.RELEASE.jar │ │ ├── spring-tx-5.2.3.RELEASE.jar │ │ ├── spring-web-5.2.3.RELEASE.jar │ │ ├── spring-webmvc-5.2.3.RELEASE.jar │ │ └── standard-1.1.2.jar │ ├── pages │ │ ├── error.jsp │ │ ├── homePage.jsp │ │ ├── login.jsp │ │ └── test.jsp │ └── web.xml ├── css │ ├── add.css │ ├── button.css │ ├── examine.css │ ├── main.css │ └── update.css ├── img │ ├── bg_login.jpg │ ├── password.png │ └── user.png ├── index.jsp ├── js │ ├── add.js │ ├── del.js │ ├── examine.js │ ├── flip.js │ ├── jquery-1.8.3.min.js │ ├── reRange.js │ └── update.js └── login.jsp └── classes ├── db.properties ├── pers └── kuroko │ ├── controller │ ├── LoginController.class │ ├── StudentController.class │ └── TestController.class │ ├── entity │ ├── Login.class │ └── Student.class │ ├── mapper │ ├── LoginMapper.class │ ├── StuMapper.class │ ├── loginMapper.xml │ └── stuMapper.xml │ └── service │ ├── LoginService.class │ ├── LoginServiceImpl.class │ ├── StudentService.class │ ├── StudentServiceImpl.class │ ├── TestService.class │ └── TestServiceImpl.class ├── spring.xml ├── springmvc.xml └── sqlMapConfig.xml /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 25 | 26 | 27 | 33 | 34 | 40 | 41 | 42 | 43 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 146 | 147 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 |