├── .DS_Store ├── .gitignore ├── README.md ├── SQL ├── json ├── pom.xml ├── resources ├── application.properties └── application.properties.linux └── src ├── .DS_Store ├── main ├── java │ └── com │ │ └── spring │ │ └── mvc │ │ └── mini │ │ ├── dao │ │ ├── StudentDAO.java │ │ └── StudentDAOImpl.java │ │ ├── model │ │ ├── ClassTaken.java │ │ └── Student.java │ │ ├── service │ │ ├── ClassService.java │ │ ├── StudentService.java │ │ └── StudentServiceImpl.java │ │ └── web │ │ └── StudentController.java ├── resources │ └── logback.xml └── webapp │ └── WEB-INF │ ├── spring │ ├── appServlet │ │ ├── controllers.xml │ │ ├── jdbc_mysql.xml │ │ └── servlet-context.xml │ └── root-context.xml │ └── web.xml └── test ├── java └── com │ └── spring │ └── mvc │ └── mini │ └── json │ └── RequestStatusJsonParserTest1.java └── resources └── test.xml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | activity0_0.log 3 | spring-mvc-test.iml 4 | *target* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/README.md -------------------------------------------------------------------------------- /SQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/SQL -------------------------------------------------------------------------------- /json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/pom.xml -------------------------------------------------------------------------------- /resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/resources/application.properties -------------------------------------------------------------------------------- /resources/application.properties.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/resources/application.properties.linux -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/dao/StudentDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/dao/StudentDAO.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/dao/StudentDAOImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/dao/StudentDAOImpl.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/model/ClassTaken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/model/ClassTaken.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/model/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/model/Student.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/service/ClassService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/service/ClassService.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/service/StudentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/service/StudentService.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/service/StudentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/service/StudentServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/spring/mvc/mini/web/StudentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/java/com/spring/mvc/mini/web/StudentController.java -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/spring/appServlet/controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/webapp/WEB-INF/spring/appServlet/controllers.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/spring/appServlet/jdbc_mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/webapp/WEB-INF/spring/appServlet/jdbc_mysql.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/test/java/com/spring/mvc/mini/json/RequestStatusJsonParserTest1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/test/java/com/spring/mvc/mini/json/RequestStatusJsonParserTest1.java -------------------------------------------------------------------------------- /src/test/resources/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F4bwDP6a6W/spring-mvc-REST/HEAD/src/test/resources/test.xml --------------------------------------------------------------------------------