├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── studentdbms │ │ ├── StudentDBMSApplication.java │ │ ├── controller │ │ ├── CourseController.java │ │ ├── PassportController.java │ │ ├── ReviewController.java │ │ └── StudentController.java │ │ ├── entity │ │ ├── Course.java │ │ ├── Passport.java │ │ ├── Review.java │ │ └── Student.java │ │ ├── repository │ │ ├── CourseRepository.java │ │ ├── PassportRepository.java │ │ ├── ReviewRepository.java │ │ └── StudentRepository.java │ │ └── service │ │ ├── CourseService.java │ │ ├── PassportService.java │ │ ├── ReviewService.java │ │ └── StudentService.java └── resources │ ├── application.properties │ ├── data.sql │ └── templates │ ├── course-detail.html │ ├── course-form.html │ ├── course-list.html │ ├── passport-form.html │ ├── review-form.html │ ├── student-form.html │ └── student-list.html └── test └── java └── JavaRestMaster └── JavaRestMasterApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/studentdbms/StudentDBMSApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/StudentDBMSApplication.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/controller/CourseController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/controller/CourseController.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/controller/PassportController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/controller/PassportController.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/controller/ReviewController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/controller/ReviewController.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/controller/StudentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/controller/StudentController.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/entity/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/entity/Course.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/entity/Passport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/entity/Passport.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/entity/Review.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/entity/Review.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/entity/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/entity/Student.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/repository/CourseRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/repository/CourseRepository.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/repository/PassportRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/repository/PassportRepository.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/repository/ReviewRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/repository/ReviewRepository.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/repository/StudentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/repository/StudentRepository.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/service/CourseService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/service/CourseService.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/service/PassportService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/service/PassportService.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/service/ReviewService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/service/ReviewService.java -------------------------------------------------------------------------------- /src/main/java/studentdbms/service/StudentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/java/studentdbms/service/StudentService.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/data.sql -------------------------------------------------------------------------------- /src/main/resources/templates/course-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/course-detail.html -------------------------------------------------------------------------------- /src/main/resources/templates/course-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/course-form.html -------------------------------------------------------------------------------- /src/main/resources/templates/course-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/course-list.html -------------------------------------------------------------------------------- /src/main/resources/templates/passport-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/passport-form.html -------------------------------------------------------------------------------- /src/main/resources/templates/review-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/review-form.html -------------------------------------------------------------------------------- /src/main/resources/templates/student-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/student-form.html -------------------------------------------------------------------------------- /src/main/resources/templates/student-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/main/resources/templates/student-list.html -------------------------------------------------------------------------------- /src/test/java/JavaRestMaster/JavaRestMasterApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaKshettri/Student-Database-Management-System-using-JAVA-Spring-Boot/HEAD/src/test/java/JavaRestMaster/JavaRestMasterApplicationTests.java --------------------------------------------------------------------------------