├── .idea ├── artifacts │ └── StudentManager_war_exploded.xml ├── libraries │ └── jstl.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── README.md ├── StudentManager.iml ├── checkEmpty1.png ├── checkEmpty2.png ├── edit_check.png ├── edit_if.png ├── edit_noCheck.png ├── src ├── bean │ └── Student.java ├── dao │ ├── StudentDao.java │ └── StudentDaoImpl.java ├── filter │ └── EncodingFilter.java ├── servlet │ ├── AddServlet.java │ ├── DeleteServlet.java │ ├── EditServlet.java │ ├── ListServlet.java │ └── UpdateServlet.java ├── test │ └── Tester.java └── util │ ├── DBUtil.java │ └── Page.java └── web ├── WEB-INF ├── classes │ └── production │ │ └── StudentManager │ │ ├── bean │ │ └── Student.class │ │ ├── dao │ │ ├── StudentDAO.class │ │ └── StudentDaoImpl.class │ │ ├── filter │ │ └── EncodingFilter.class │ │ ├── servlet │ │ ├── AddServlet.class │ │ ├── DeleteServlet.class │ │ ├── EditServlet.class │ │ ├── ListServlet.class │ │ └── UpdateServlet.class │ │ ├── test │ │ └── Tester.class │ │ └── util │ │ ├── DBUtil.class │ │ └── Page.class └── lib │ ├── jstl.jar │ ├── mysql-connector-java-5.0.8-bin.jar │ ├── servlet-api.jar │ └── standard.jar ├── css ├── bootstrap │ ├── 3.3.6 │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 └── style.css ├── editStudent.jsp ├── index.jsp ├── js ├── bootstrap │ └── 3.3.6 │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js └── jquery │ └── 2.0.0 │ └── jquery.min.js └── listStudent.jsp /.idea/artifacts/StudentManager_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/.idea/artifacts/StudentManager_war_exploded.xml -------------------------------------------------------------------------------- /.idea/libraries/jstl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/.idea/libraries/jstl.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/README.md -------------------------------------------------------------------------------- /StudentManager.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/StudentManager.iml -------------------------------------------------------------------------------- /checkEmpty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/checkEmpty1.png -------------------------------------------------------------------------------- /checkEmpty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/checkEmpty2.png -------------------------------------------------------------------------------- /edit_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/edit_check.png -------------------------------------------------------------------------------- /edit_if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/edit_if.png -------------------------------------------------------------------------------- /edit_noCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/edit_noCheck.png -------------------------------------------------------------------------------- /src/bean/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/bean/Student.java -------------------------------------------------------------------------------- /src/dao/StudentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/dao/StudentDao.java -------------------------------------------------------------------------------- /src/dao/StudentDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/dao/StudentDaoImpl.java -------------------------------------------------------------------------------- /src/filter/EncodingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/filter/EncodingFilter.java -------------------------------------------------------------------------------- /src/servlet/AddServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/servlet/AddServlet.java -------------------------------------------------------------------------------- /src/servlet/DeleteServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/servlet/DeleteServlet.java -------------------------------------------------------------------------------- /src/servlet/EditServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/servlet/EditServlet.java -------------------------------------------------------------------------------- /src/servlet/ListServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/servlet/ListServlet.java -------------------------------------------------------------------------------- /src/servlet/UpdateServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/servlet/UpdateServlet.java -------------------------------------------------------------------------------- /src/test/Tester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/test/Tester.java -------------------------------------------------------------------------------- /src/util/DBUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/util/DBUtil.java -------------------------------------------------------------------------------- /src/util/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/src/util/Page.java -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/bean/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/bean/Student.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/dao/StudentDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/dao/StudentDAO.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/dao/StudentDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/dao/StudentDaoImpl.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/filter/EncodingFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/filter/EncodingFilter.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/servlet/AddServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/servlet/AddServlet.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/servlet/DeleteServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/servlet/DeleteServlet.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/servlet/EditServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/servlet/EditServlet.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/servlet/ListServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/servlet/ListServlet.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/servlet/UpdateServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/servlet/UpdateServlet.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/test/Tester.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/test/Tester.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/util/DBUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/util/DBUtil.class -------------------------------------------------------------------------------- /web/WEB-INF/classes/production/StudentManager/util/Page.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/classes/production/StudentManager/util/Page.class -------------------------------------------------------------------------------- /web/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/mysql-connector-java-5.0.8-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/lib/mysql-connector-java-5.0.8-bin.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/lib/servlet-api.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap-theme.css -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap-theme.css.map -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap-theme.min.css -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap.css -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap.css.map -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/bootstrap/3.3.6/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/3.3.6/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/css/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/css/style.css -------------------------------------------------------------------------------- /web/editStudent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/editStudent.jsp -------------------------------------------------------------------------------- /web/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/index.jsp -------------------------------------------------------------------------------- /web/js/bootstrap/3.3.6/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/js/bootstrap/3.3.6/bootstrap.js -------------------------------------------------------------------------------- /web/js/bootstrap/3.3.6/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/js/bootstrap/3.3.6/bootstrap.min.js -------------------------------------------------------------------------------- /web/js/bootstrap/3.3.6/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/js/bootstrap/3.3.6/npm.js -------------------------------------------------------------------------------- /web/js/jquery/2.0.0/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/js/jquery/2.0.0/jquery.min.js -------------------------------------------------------------------------------- /web/listStudent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmyskxz/StudentManager/HEAD/web/listStudent.jsp --------------------------------------------------------------------------------