├── .elasticbeanstalk └── config.yml ├── .gitignore ├── Otherprojects ├── 01-spring-boot-hello-world-rest-api │ ├── pom.xml │ ├── readme.md │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── in28minutes │ │ │ │ └── rest │ │ │ │ └── webservices │ │ │ │ └── restfulwebservices │ │ │ │ ├── HelloWorldBean.java │ │ │ │ ├── HelloWorldController.java │ │ │ │ └── RestfulWebServicesApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── rest │ │ └── webservices │ │ └── restfulwebservices │ │ └── RestfulWebServicesApplicationTests.java ├── 02-spring-boot-todo-rest-api-h2 │ ├── pom.xml │ ├── readme.md │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── in28minutes │ │ │ │ └── rest │ │ │ │ └── webservices │ │ │ │ └── restfulwebservices │ │ │ │ ├── RestfulWebServicesApplication.java │ │ │ │ ├── helloworld │ │ │ │ ├── HelloWorldBean.java │ │ │ │ └── HelloWorldController.java │ │ │ │ └── todo │ │ │ │ ├── Todo.java │ │ │ │ ├── TodoHardcodedService.java │ │ │ │ ├── TodoJpaRepository.java │ │ │ │ ├── TodoJpaResource.java │ │ │ │ └── TodoResource.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── data.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── rest │ │ └── webservices │ │ └── restfulwebservices │ │ └── RestfulWebServicesApplicationTests.java ├── 03-spring-boot-web-application-h2 │ ├── pom.xml │ ├── readme.md │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── in28minutes │ │ │ │ └── springboot │ │ │ │ └── web │ │ │ │ ├── PropertyLogger.java │ │ │ │ ├── SpringBootFirstWebApplication.java │ │ │ │ ├── controller │ │ │ │ ├── ErrorController.java │ │ │ │ ├── LogoutController.java │ │ │ │ ├── TodoController.java │ │ │ │ └── WelcomeController.java │ │ │ │ ├── model │ │ │ │ └── Todo.java │ │ │ │ ├── security │ │ │ │ └── SecurityConfiguration.java │ │ │ │ └── service │ │ │ │ ├── TodoRepository.java │ │ │ │ └── TodoService.java │ │ ├── resources │ │ │ ├── application.properties │ │ │ └── data.sql │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ ├── common │ │ │ ├── footer.jspf │ │ │ ├── header.jspf │ │ │ └── navigation.jspf │ │ │ ├── error.jsp │ │ │ ├── list-todos.jsp │ │ │ ├── todo.jsp │ │ │ └── welcome.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── springboot │ │ └── web │ │ └── SpringBootFirstWebApplicationTests.java ├── 04-spring-boot-web-application-mysql │ ├── pom.xml │ ├── readme.md │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── in28minutes │ │ │ │ └── springboot │ │ │ │ └── web │ │ │ │ ├── PropertyLogger.java │ │ │ │ ├── SpringBootFirstWebApplication.java │ │ │ │ ├── controller │ │ │ │ ├── ErrorController.java │ │ │ │ ├── LogoutController.java │ │ │ │ ├── TodoController.java │ │ │ │ └── WelcomeController.java │ │ │ │ ├── model │ │ │ │ └── Todo.java │ │ │ │ ├── security │ │ │ │ └── SecurityConfiguration.java │ │ │ │ └── service │ │ │ │ ├── TodoRepository.java │ │ │ │ └── TodoService.java │ │ ├── resources │ │ │ └── application.properties │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ ├── common │ │ │ ├── footer.jspf │ │ │ ├── header.jspf │ │ │ └── navigation.jspf │ │ │ ├── error.jsp │ │ │ ├── list-todos.jsp │ │ │ ├── todo.jsp │ │ │ └── welcome.jsp │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── in28minutes │ │ │ └── springboot │ │ │ └── web │ │ │ └── SpringBootFirstWebApplicationTests.java │ │ └── resources │ │ └── application.properties ├── 05-spring-boot-react-full-stack-h2 │ ├── frontend │ │ └── todo-app │ │ │ ├── build │ │ │ ├── asset-manifest.json │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ ├── precache-manifest.329107c39cdcab0d36989b26995e59f8.js │ │ │ ├── service-worker.js │ │ │ └── static │ │ │ │ ├── css │ │ │ │ ├── main.8537e868.chunk.css │ │ │ │ └── main.8537e868.chunk.css.map │ │ │ │ └── js │ │ │ │ ├── 2.3f64e426.chunk.js │ │ │ │ ├── 2.3f64e426.chunk.js.map │ │ │ │ ├── main.2304f8a7.chunk.js │ │ │ │ ├── main.2304f8a7.chunk.js.map │ │ │ │ ├── runtime~main.c5541365.js │ │ │ │ └── runtime~main.c5541365.js.map │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── manifest.json │ │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── Constants.js │ │ │ ├── api │ │ │ └── todo │ │ │ │ ├── HelloWorldService.js │ │ │ │ └── TodoDataService.js │ │ │ ├── bootstrap.css │ │ │ ├── components │ │ │ ├── counter │ │ │ │ ├── Counter.css │ │ │ │ └── Counter.jsx │ │ │ ├── learning-examples │ │ │ │ ├── FirstComponent.jsx │ │ │ │ ├── SecondComponent.jsx │ │ │ │ └── ThirdComponent.jsx │ │ │ └── todo │ │ │ │ ├── AuthenticatedRoute.jsx │ │ │ │ ├── AuthenticationService.js │ │ │ │ ├── ErrorComponent.jsx │ │ │ │ ├── FooterComponent.jsx │ │ │ │ ├── HeaderComponent.jsx │ │ │ │ ├── ListTodosComponent.jsx │ │ │ │ ├── LoginComponent.jsx │ │ │ │ ├── LogoutComponent.jsx │ │ │ │ ├── TodoApp.jsx │ │ │ │ ├── TodoComponent.jsx │ │ │ │ └── WelcomeComponent.jsx │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── logo.svg │ │ │ └── serviceWorker.js │ ├── react_00_architecture.png │ ├── readme.md │ └── restful-web-services │ │ ├── pom.xml │ │ ├── readme.md │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── in28minutes │ │ │ │ └── rest │ │ │ │ ├── basic │ │ │ │ └── auth │ │ │ │ │ ├── AuthenticationBean.java │ │ │ │ │ ├── BasicAuthenticationController.java │ │ │ │ │ └── SpringSecurityConfigurationBasicAuth.java │ │ │ │ └── webservices │ │ │ │ └── restfulwebservices │ │ │ │ ├── RestfulWebServicesApplication.java │ │ │ │ ├── helloworld │ │ │ │ ├── HelloWorldBean.java │ │ │ │ └── HelloWorldController.java │ │ │ │ ├── jwt │ │ │ │ ├── JWTWebSecurityConfig.java │ │ │ │ ├── JwtInMemoryUserDetailsService.java │ │ │ │ ├── JwtTokenAuthorizationOncePerRequestFilter.java │ │ │ │ ├── JwtTokenUtil.java │ │ │ │ ├── JwtUnAuthorizedResponseAuthenticationEntryPoint.java │ │ │ │ ├── JwtUserDetails.java │ │ │ │ ├── JwtUserDetailsService.java │ │ │ │ ├── User.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── resource │ │ │ │ │ ├── AuthenticationException.java │ │ │ │ │ ├── JwtAuthenticationRestController.java │ │ │ │ │ ├── JwtTokenRequest.java │ │ │ │ │ └── JwtTokenResponse.java │ │ │ │ └── todo │ │ │ │ ├── Todo.java │ │ │ │ ├── TodoHardcodedService.java │ │ │ │ ├── TodoJpaRepository.java │ │ │ │ ├── TodoJpaResource.java │ │ │ │ └── TodoResource.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── data.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── rest │ │ └── webservices │ │ └── restfulwebservices │ │ └── RestfulWebServicesApplicationTests.java ├── 06-todo-rest-api-h2-containerized │ ├── Dockerfile │ ├── Dockerrun.aws.json │ ├── pom.xml │ ├── readme.md │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── in28minutes │ │ │ │ └── rest │ │ │ │ └── webservices │ │ │ │ └── restfulwebservices │ │ │ │ ├── RestfulWebServicesApplication.java │ │ │ │ ├── helloworld │ │ │ │ ├── HelloWorldBean.java │ │ │ │ └── HelloWorldController.java │ │ │ │ └── todo │ │ │ │ ├── Todo.java │ │ │ │ ├── TodoHardcodedService.java │ │ │ │ └── TodoResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── rest │ │ └── webservices │ │ └── restfulwebservices │ │ └── RestfulWebServicesApplicationTests.java └── 07-todo-rest-api-mysql-containerized │ ├── Dockerfile │ ├── Dockerrun.aws.json │ ├── pom.xml │ ├── readme.md │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── in28minutes │ │ │ └── rest │ │ │ └── webservices │ │ │ └── restfulwebservices │ │ │ ├── RestfulWebServicesApplication.java │ │ │ ├── helloworld │ │ │ ├── HelloWorldBean.java │ │ │ └── HelloWorldController.java │ │ │ └── todo │ │ │ ├── Todo.java │ │ │ ├── TodoHardcodedService.java │ │ │ └── TodoResource.java │ └── resources │ │ └── application.properties │ └── test │ ├── java │ └── com │ │ └── in28minutes │ │ └── rest │ │ └── webservices │ │ └── restfulwebservices │ │ └── RestfulWebServicesApplicationTests.java │ └── resources │ └── application.properties ├── cmd-line-test └── .gitignore ├── pom.xml ├── readme.md └── src ├── main ├── java │ └── com │ │ └── in28minutes │ │ └── rest │ │ └── webservices │ │ └── restfulwebservices │ │ ├── RestfulWebServicesApplication.java │ │ ├── helloworld │ │ ├── HelloWorldBean.java │ │ └── HelloWorldController.java │ │ └── todo │ │ ├── Todo.java │ │ ├── TodoHardcodedService.java │ │ ├── TodoJpaRepository.java │ │ ├── TodoJpaResource.java │ │ └── TodoResource.java └── resources │ ├── application.properties │ └── data.sql └── test └── java └── com └── in28minutes └── rest └── webservices └── restfulwebservices └── RestfulWebServicesApplicationTests.java /.elasticbeanstalk/config.yml: -------------------------------------------------------------------------------- 1 | global: 2 | profile: eb-cli 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/pom.xml -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/readme.md -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/HelloWorldBean.java -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/HelloWorldController.java -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/src/main/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/01-spring-boot-hello-world-rest-api/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/01-spring-boot-hello-world-rest-api/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/pom.xml -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/readme.md -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaRepository.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaResource.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/main/resources/data.sql -------------------------------------------------------------------------------- /Otherprojects/02-spring-boot-todo-rest-api-h2/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/02-spring-boot-todo-rest-api-h2/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/pom.xml -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/readme.md -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/PropertyLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/PropertyLogger.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/SpringBootFirstWebApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/SpringBootFirstWebApplication.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/ErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/ErrorController.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/LogoutController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/LogoutController.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/TodoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/TodoController.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/WelcomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/controller/WelcomeController.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/model/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/model/Todo.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/security/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/security/SecurityConfiguration.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/service/TodoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/service/TodoRepository.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/service/TodoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/java/com/in28minutes/springboot/web/service/TodoService.java -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/resources/data.sql -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/common/footer.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/common/footer.jspf -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/common/header.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/common/header.jspf -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/common/navigation.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/common/navigation.jspf -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/error.jsp -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/list-todos.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/list-todos.jsp -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/todo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/todo.jsp -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/main/webapp/WEB-INF/jsp/welcome.jsp -------------------------------------------------------------------------------- /Otherprojects/03-spring-boot-web-application-h2/src/test/java/com/in28minutes/springboot/web/SpringBootFirstWebApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/03-spring-boot-web-application-h2/src/test/java/com/in28minutes/springboot/web/SpringBootFirstWebApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/pom.xml -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/readme.md -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/PropertyLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/PropertyLogger.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/SpringBootFirstWebApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/SpringBootFirstWebApplication.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/ErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/ErrorController.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/LogoutController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/LogoutController.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/TodoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/TodoController.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/WelcomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/controller/WelcomeController.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/model/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/model/Todo.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/security/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/security/SecurityConfiguration.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/service/TodoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/service/TodoRepository.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/service/TodoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/java/com/in28minutes/springboot/web/service/TodoService.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/common/footer.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/common/footer.jspf -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/common/header.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/common/header.jspf -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/common/navigation.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/common/navigation.jspf -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/error.jsp -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/list-todos.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/list-todos.jsp -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/todo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/todo.jsp -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/main/webapp/WEB-INF/jsp/welcome.jsp -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/test/java/com/in28minutes/springboot/web/SpringBootFirstWebApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/test/java/com/in28minutes/springboot/web/SpringBootFirstWebApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/04-spring-boot-web-application-mysql/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/04-spring-boot-web-application-mysql/src/test/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/asset-manifest.json -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/favicon.ico -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/index.html -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/manifest.json -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/precache-manifest.329107c39cdcab0d36989b26995e59f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/precache-manifest.329107c39cdcab0d36989b26995e59f8.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/service-worker.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/css/main.8537e868.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/css/main.8537e868.chunk.css -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/css/main.8537e868.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/css/main.8537e868.chunk.css.map -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/2.3f64e426.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/2.3f64e426.chunk.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/2.3f64e426.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/2.3f64e426.chunk.js.map -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/main.2304f8a7.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/main.2304f8a7.chunk.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/main.2304f8a7.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/main.2304f8a7.chunk.js.map -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/runtime~main.c5541365.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/runtime~main.c5541365.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/runtime~main.c5541365.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/build/static/js/runtime~main.c5541365.js.map -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/package-lock.json -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/package.json -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/public/favicon.ico -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/public/index.html -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/public/manifest.json -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/App.css -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/App.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/App.test.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/Constants.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/api/todo/HelloWorldService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/api/todo/HelloWorldService.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/api/todo/TodoDataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/api/todo/TodoDataService.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/bootstrap.css -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/counter/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/counter/Counter.css -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/counter/Counter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/counter/Counter.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/learning-examples/FirstComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/learning-examples/FirstComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/learning-examples/SecondComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/learning-examples/SecondComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/learning-examples/ThirdComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/learning-examples/ThirdComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/AuthenticatedRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/AuthenticatedRoute.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/AuthenticationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/AuthenticationService.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/ErrorComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/ErrorComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/FooterComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/FooterComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/HeaderComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/HeaderComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/ListTodosComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/ListTodosComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/LoginComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/LoginComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/LogoutComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/LogoutComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/TodoApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/TodoApp.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/TodoComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/TodoComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/WelcomeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/components/todo/WelcomeComponent.jsx -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/index.css -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/index.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/logo.svg -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/frontend/todo-app/src/serviceWorker.js -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/react_00_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/react_00_architecture.png -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/readme.md -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/pom.xml -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/basic/auth/AuthenticationBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/basic/auth/AuthenticationBean.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/basic/auth/BasicAuthenticationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/basic/auth/BasicAuthenticationController.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/basic/auth/SpringSecurityConfigurationBasicAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/basic/auth/SpringSecurityConfigurationBasicAuth.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JWTWebSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JWTWebSecurityConfig.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtInMemoryUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtInMemoryUserDetailsService.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtTokenAuthorizationOncePerRequestFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtTokenAuthorizationOncePerRequestFilter.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtTokenUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtTokenUtil.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtUnAuthorizedResponseAuthenticationEntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtUnAuthorizedResponseAuthenticationEntryPoint.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtUserDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtUserDetails.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/JwtUserDetailsService.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/User.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/UserRepository.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/AuthenticationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/AuthenticationException.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/JwtAuthenticationRestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/JwtAuthenticationRestController.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/JwtTokenRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/JwtTokenRequest.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/JwtTokenResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jwt/resource/JwtTokenResponse.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaRepository.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaResource.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/main/resources/data.sql -------------------------------------------------------------------------------- /Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/05-spring-boot-react-full-stack-h2/restful-web-services/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/Dockerfile -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/Dockerrun.aws.json -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/pom.xml -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/readme.md -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | logging.level.org.springframework = info 2 | server.port=5000 -------------------------------------------------------------------------------- /Otherprojects/06-todo-rest-api-h2-containerized/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/06-todo-rest-api-h2-containerized/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/Dockerfile -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/Dockerrun.aws.json -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/pom.xml -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/readme.md -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/main/resources/application.properties -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java -------------------------------------------------------------------------------- /Otherprojects/07-todo-rest-api-mysql-containerized/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/Otherprojects/07-todo-rest-api-mysql-containerized/src/test/resources/application.properties -------------------------------------------------------------------------------- /cmd-line-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/cmd-line-test/.gitignore -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/pom.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/readme.md -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/Todo.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoHardcodedService.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaRepository.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoJpaResource.java -------------------------------------------------------------------------------- /src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/todo/TodoResource.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/main/resources/data.sql -------------------------------------------------------------------------------- /src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-boot-rest-api-playground/HEAD/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java --------------------------------------------------------------------------------