├── .gitignore ├── 2.5.0-upgrade-faq.md ├── 3.0.0-upgrade-notes.md ├── LICENSE ├── README.md ├── Todo.md ├── course-updates.md ├── jpa-in-10-steps ├── HELP.md ├── final.md ├── notes.txt ├── pom.xml ├── readme.md └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── in28minutes │ │ │ └── springboot │ │ │ └── learnjpaandhibernate │ │ │ ├── LearnJpaAndHibernateApplication.java │ │ │ └── course │ │ │ ├── Course.java │ │ │ ├── CourseCommandLineRunner.java │ │ │ ├── jdbc │ │ │ └── CourseJdbcRepository.java │ │ │ ├── jpa │ │ │ └── CourseJpaRepository.java │ │ │ └── springdatajpa │ │ │ └── CourseSpringDataJpaRepository.java │ └── resources │ │ ├── application.properties │ │ └── schema.sql │ └── test │ └── java │ └── com │ └── in28minutes │ └── springboot │ └── learnjpaandhibernate │ └── LearnJpaAndHibernateApplicationTests.java ├── restful-web-services-v2 ├── 01-step-by-step-changes │ └── v2.md ├── Step01.md ├── Step01.zip ├── Step03.md ├── Step03.zip ├── Step05.md ├── Step05.zip ├── Step07.md ├── Step07.zip ├── Step08.md ├── Step08.zip ├── Step09.md ├── Step09.zip ├── Step10.md ├── Step10.zip ├── Step11.md ├── Step11.zip ├── Step12.md ├── Step12.zip ├── Step14.md ├── Step14.zip ├── Step17.md ├── Step17.zip ├── Step21.md ├── Step21.zip ├── Step26.md ├── Step26.zip ├── Step29.md ├── Step29.zip ├── Step32.md ├── Step32.zip ├── Step35.md ├── Step35.zip ├── Step37.md ├── Step37.zip ├── pom.xml ├── readme.md └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── in28minutes │ │ │ └── rest │ │ │ └── webservices │ │ │ └── restfulwebservices │ │ │ ├── RestfulWebServicesApplication.java │ │ │ ├── exception │ │ │ ├── CustomizedResponseEntityExceptionHandler.java │ │ │ └── ErrorDetails.java │ │ │ ├── filtering │ │ │ ├── FilteringController.java │ │ │ └── SomeBean.java │ │ │ ├── helloworld │ │ │ ├── HelloWorldBean.java │ │ │ └── HelloWorldController.java │ │ │ ├── jpa │ │ │ ├── PostRepository.java │ │ │ └── UserRepository.java │ │ │ ├── security │ │ │ └── SpringSecurityConfiguration.java │ │ │ ├── user │ │ │ ├── Post.java │ │ │ ├── User.java │ │ │ ├── UserDaoService.java │ │ │ ├── UserJpaResource.java │ │ │ ├── UserNotFoundException.java │ │ │ └── UserResource.java │ │ │ └── versioning │ │ │ ├── Name.java │ │ │ ├── PersonV1.java │ │ │ ├── PersonV2.java │ │ │ └── VersioningPersonController.java │ └── resources │ │ ├── application.properties │ │ ├── data.sql │ │ ├── messages.properties │ │ └── messages_nl.properties │ └── test │ └── java │ └── com │ └── in28minutes │ └── rest │ └── webservices │ └── restfulwebservices │ └── RestfulWebServicesApplicationTests.java ├── soap-web-services ├── add-opens-1.png ├── add-opens-2.png ├── backup01-define-xsd-for-request.md ├── backup01-define-xsd-for-request.zip ├── backup02-define-xsd-for-first-request-and-response.md ├── backup02-define-xsd-for-first-request-and-response.zip ├── backup03-define-xsd-for-first-request-and-response-with-standards.md ├── backup03-define-xsd-for-first-request-and-response-with-standards.zip ├── backup04-define-jaxb-plugin-and-a-endpoint.md ├── backup04-define-jaxb-plugin-and-a-endpoint.zip ├── backup05-after-configuration-messageservlet-and-wsdl.md ├── backup05-after-configuration-messageservlet-and-wsdl.zip ├── backup06-after-creating-course-service.md ├── backup06-after-creating-course-service.zip ├── backup07-after-creating-get-all-course-service.md ├── backup07-after-creating-get-all-course-service.zip ├── backup07-after-delete-course-details.md ├── backup07-after-delete-course-details.zip ├── backup08-after-delete-course-details.md ├── backup08-after-delete-course-details.zip ├── backup09-after-end-of-exception-handling.md ├── backup09-after-end-of-exception-handling.zip ├── backup10-after-basic-security.md ├── backup10-after-basic-security.zip ├── example-files │ ├── Request-Security.xml │ ├── Request.xml │ ├── Response-Fault.xml │ ├── Response.xml │ └── course-details.xsd ├── pom.xml ├── readme.md └── src │ ├── main │ ├── java │ │ ├── META-INF │ │ │ └── JAXB │ │ │ │ ├── episode_xjc.xjb │ │ │ │ └── episode_xjc_1.xjb │ │ └── com │ │ │ └── in28minutes │ │ │ ├── courses │ │ │ ├── CourseDetails.java │ │ │ ├── DeleteCourseDetailsRequest.java │ │ │ ├── DeleteCourseDetailsResponse.java │ │ │ ├── GetAllCourseDetailsRequest.java │ │ │ ├── GetAllCourseDetailsResponse.java │ │ │ ├── GetCourseDetailsRequest.java │ │ │ ├── GetCourseDetailsResponse.java │ │ │ ├── ObjectFactory.java │ │ │ ├── Status.java │ │ │ └── package-info.java │ │ │ └── soap │ │ │ └── webservices │ │ │ └── soapcoursemanagement │ │ │ ├── SoapCourseManagementApplication.java │ │ │ └── soap │ │ │ ├── CourseDetailsEndpoint.java │ │ │ ├── WebServiceConfig.java │ │ │ ├── bean │ │ │ └── Course.java │ │ │ ├── exception │ │ │ └── CourseNotFoundException.java │ │ │ └── service │ │ │ └── CourseDetailsService.java │ └── resources │ │ ├── application.properties │ │ ├── course-details.xsd │ │ └── securityPolicy.xml │ └── test │ └── java │ └── com │ └── in28minutes │ └── soap │ └── webservices │ └── soapcoursemanagement │ └── SoapCourseManagementApplicationTests.java ├── spring-in-10-steps ├── HELP.md ├── final.md ├── notes.txt ├── pom.xml ├── readme.md └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── in28minutes │ │ │ └── spring │ │ │ └── learnspringframework │ │ │ ├── LearnSpringFrameworkApplication.java │ │ │ ├── enterprise │ │ │ └── example │ │ │ │ ├── business │ │ │ │ └── BusinessService.java │ │ │ │ ├── data │ │ │ │ └── DataService.java │ │ │ │ └── web │ │ │ │ └── MyWebController.java │ │ │ └── game │ │ │ ├── GameRunner.java │ │ │ ├── GamingConsole.java │ │ │ ├── MarioGame.java │ │ │ ├── PacmanGame.java │ │ │ └── SuperContraGame.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── in28minutes │ └── spring │ └── learnspringframework │ └── LearnSpringFrameworkApplicationTests.java ├── spring-web-services-presentation.pdf ├── springboot-in-10-steps ├── HELP.md ├── final.md ├── notes.txt ├── pom.xml ├── readme.md └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── in28minutes │ │ │ └── springboot │ │ │ └── learnspringboot │ │ │ ├── Course.java │ │ │ ├── CourseController.java │ │ │ ├── CurrencyConfigurationController.java │ │ │ ├── CurrencyServiceConfiguration.java │ │ │ └── LearnSpringBootApplication.java │ └── resources │ │ ├── application-dev.properties │ │ ├── application-prod.properties │ │ └── application.properties │ └── test │ └── java │ └── com │ └── in28minutes │ └── springboot │ └── learnspringboot │ └── LearnSpringBootApplicationTests.java └── webserviceconfig-changes.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/.gitignore -------------------------------------------------------------------------------- /2.5.0-upgrade-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/2.5.0-upgrade-faq.md -------------------------------------------------------------------------------- /3.0.0-upgrade-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/3.0.0-upgrade-notes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/README.md -------------------------------------------------------------------------------- /Todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/Todo.md -------------------------------------------------------------------------------- /course-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/course-updates.md -------------------------------------------------------------------------------- /jpa-in-10-steps/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/HELP.md -------------------------------------------------------------------------------- /jpa-in-10-steps/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/final.md -------------------------------------------------------------------------------- /jpa-in-10-steps/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/notes.txt -------------------------------------------------------------------------------- /jpa-in-10-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/pom.xml -------------------------------------------------------------------------------- /jpa-in-10-steps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/readme.md -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/LearnJpaAndHibernateApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/LearnJpaAndHibernateApplication.java -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/Course.java -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/CourseCommandLineRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/CourseCommandLineRunner.java -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/jdbc/CourseJdbcRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/jdbc/CourseJdbcRepository.java -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/jpa/CourseJpaRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/jpa/CourseJpaRepository.java -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/springdatajpa/CourseSpringDataJpaRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/java/com/in28minutes/springboot/learnjpaandhibernate/course/springdatajpa/CourseSpringDataJpaRepository.java -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/resources/application.properties -------------------------------------------------------------------------------- /jpa-in-10-steps/src/main/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/main/resources/schema.sql -------------------------------------------------------------------------------- /jpa-in-10-steps/src/test/java/com/in28minutes/springboot/learnjpaandhibernate/LearnJpaAndHibernateApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/jpa-in-10-steps/src/test/java/com/in28minutes/springboot/learnjpaandhibernate/LearnJpaAndHibernateApplicationTests.java -------------------------------------------------------------------------------- /restful-web-services-v2/01-step-by-step-changes/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/01-step-by-step-changes/v2.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step01.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step01.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step03.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step03.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step05.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step05.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step07.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step07.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step07.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step08.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step08.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step08.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step09.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step09.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step09.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step10.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step10.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step11.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step11.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step12.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step12.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step14.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step14.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step17.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step17.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step17.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step21.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step21.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step21.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step26.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step26.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step29.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step29.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step29.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step32.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step32.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step35.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step35.zip -------------------------------------------------------------------------------- /restful-web-services-v2/Step37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step37.md -------------------------------------------------------------------------------- /restful-web-services-v2/Step37.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/Step37.zip -------------------------------------------------------------------------------- /restful-web-services-v2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/pom.xml -------------------------------------------------------------------------------- /restful-web-services-v2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/readme.md -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplication.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/exception/CustomizedResponseEntityExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/exception/CustomizedResponseEntityExceptionHandler.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/exception/ErrorDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/exception/ErrorDetails.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/filtering/FilteringController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/filtering/FilteringController.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/filtering/SomeBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/filtering/SomeBean.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldBean.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jpa/PostRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jpa/PostRepository.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jpa/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/jpa/UserRepository.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/security/SpringSecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/security/SpringSecurityConfiguration.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/Post.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/Post.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/User.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserDaoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserDaoService.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserJpaResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserJpaResource.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserNotFoundException.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/user/UserResource.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/Name.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/Name.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/PersonV1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/PersonV1.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/PersonV2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/PersonV2.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/VersioningPersonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/versioning/VersioningPersonController.java -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/resources/application.properties -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/resources/data.sql -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/main/resources/messages.properties -------------------------------------------------------------------------------- /restful-web-services-v2/src/main/resources/messages_nl.properties: -------------------------------------------------------------------------------- 1 | good.morning.message=Goedemorgen -------------------------------------------------------------------------------- /restful-web-services-v2/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/restful-web-services-v2/src/test/java/com/in28minutes/rest/webservices/restfulwebservices/RestfulWebServicesApplicationTests.java -------------------------------------------------------------------------------- /soap-web-services/add-opens-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/add-opens-1.png -------------------------------------------------------------------------------- /soap-web-services/add-opens-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/add-opens-2.png -------------------------------------------------------------------------------- /soap-web-services/backup01-define-xsd-for-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup01-define-xsd-for-request.md -------------------------------------------------------------------------------- /soap-web-services/backup01-define-xsd-for-request.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup01-define-xsd-for-request.zip -------------------------------------------------------------------------------- /soap-web-services/backup02-define-xsd-for-first-request-and-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup02-define-xsd-for-first-request-and-response.md -------------------------------------------------------------------------------- /soap-web-services/backup02-define-xsd-for-first-request-and-response.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup02-define-xsd-for-first-request-and-response.zip -------------------------------------------------------------------------------- /soap-web-services/backup03-define-xsd-for-first-request-and-response-with-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup03-define-xsd-for-first-request-and-response-with-standards.md -------------------------------------------------------------------------------- /soap-web-services/backup03-define-xsd-for-first-request-and-response-with-standards.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup03-define-xsd-for-first-request-and-response-with-standards.zip -------------------------------------------------------------------------------- /soap-web-services/backup04-define-jaxb-plugin-and-a-endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup04-define-jaxb-plugin-and-a-endpoint.md -------------------------------------------------------------------------------- /soap-web-services/backup04-define-jaxb-plugin-and-a-endpoint.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup04-define-jaxb-plugin-and-a-endpoint.zip -------------------------------------------------------------------------------- /soap-web-services/backup05-after-configuration-messageservlet-and-wsdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup05-after-configuration-messageservlet-and-wsdl.md -------------------------------------------------------------------------------- /soap-web-services/backup05-after-configuration-messageservlet-and-wsdl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup05-after-configuration-messageservlet-and-wsdl.zip -------------------------------------------------------------------------------- /soap-web-services/backup06-after-creating-course-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup06-after-creating-course-service.md -------------------------------------------------------------------------------- /soap-web-services/backup06-after-creating-course-service.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup06-after-creating-course-service.zip -------------------------------------------------------------------------------- /soap-web-services/backup07-after-creating-get-all-course-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup07-after-creating-get-all-course-service.md -------------------------------------------------------------------------------- /soap-web-services/backup07-after-creating-get-all-course-service.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup07-after-creating-get-all-course-service.zip -------------------------------------------------------------------------------- /soap-web-services/backup07-after-delete-course-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup07-after-delete-course-details.md -------------------------------------------------------------------------------- /soap-web-services/backup07-after-delete-course-details.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup07-after-delete-course-details.zip -------------------------------------------------------------------------------- /soap-web-services/backup08-after-delete-course-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup08-after-delete-course-details.md -------------------------------------------------------------------------------- /soap-web-services/backup08-after-delete-course-details.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup08-after-delete-course-details.zip -------------------------------------------------------------------------------- /soap-web-services/backup09-after-end-of-exception-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup09-after-end-of-exception-handling.md -------------------------------------------------------------------------------- /soap-web-services/backup09-after-end-of-exception-handling.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup09-after-end-of-exception-handling.zip -------------------------------------------------------------------------------- /soap-web-services/backup10-after-basic-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup10-after-basic-security.md -------------------------------------------------------------------------------- /soap-web-services/backup10-after-basic-security.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/backup10-after-basic-security.zip -------------------------------------------------------------------------------- /soap-web-services/example-files/Request-Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/example-files/Request-Security.xml -------------------------------------------------------------------------------- /soap-web-services/example-files/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/example-files/Request.xml -------------------------------------------------------------------------------- /soap-web-services/example-files/Response-Fault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/example-files/Response-Fault.xml -------------------------------------------------------------------------------- /soap-web-services/example-files/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/example-files/Response.xml -------------------------------------------------------------------------------- /soap-web-services/example-files/course-details.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/example-files/course-details.xsd -------------------------------------------------------------------------------- /soap-web-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/pom.xml -------------------------------------------------------------------------------- /soap-web-services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/readme.md -------------------------------------------------------------------------------- /soap-web-services/src/main/java/META-INF/JAXB/episode_xjc.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/META-INF/JAXB/episode_xjc.xjb -------------------------------------------------------------------------------- /soap-web-services/src/main/java/META-INF/JAXB/episode_xjc_1.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/META-INF/JAXB/episode_xjc_1.xjb -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/CourseDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/CourseDetails.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/DeleteCourseDetailsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/DeleteCourseDetailsRequest.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/DeleteCourseDetailsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/DeleteCourseDetailsResponse.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/GetAllCourseDetailsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/GetAllCourseDetailsRequest.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/GetAllCourseDetailsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/GetAllCourseDetailsResponse.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/GetCourseDetailsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/GetCourseDetailsRequest.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/GetCourseDetailsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/GetCourseDetailsResponse.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/ObjectFactory.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/Status.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/courses/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/courses/package-info.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/SoapCourseManagementApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/SoapCourseManagementApplication.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/CourseDetailsEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/CourseDetailsEndpoint.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/WebServiceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/WebServiceConfig.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/bean/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/bean/Course.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/exception/CourseNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/exception/CourseNotFoundException.java -------------------------------------------------------------------------------- /soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/service/CourseDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/java/com/in28minutes/soap/webservices/soapcoursemanagement/soap/service/CourseDetailsService.java -------------------------------------------------------------------------------- /soap-web-services/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /soap-web-services/src/main/resources/course-details.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/resources/course-details.xsd -------------------------------------------------------------------------------- /soap-web-services/src/main/resources/securityPolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/main/resources/securityPolicy.xml -------------------------------------------------------------------------------- /soap-web-services/src/test/java/com/in28minutes/soap/webservices/soapcoursemanagement/SoapCourseManagementApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/soap-web-services/src/test/java/com/in28minutes/soap/webservices/soapcoursemanagement/SoapCourseManagementApplicationTests.java -------------------------------------------------------------------------------- /spring-in-10-steps/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/HELP.md -------------------------------------------------------------------------------- /spring-in-10-steps/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/final.md -------------------------------------------------------------------------------- /spring-in-10-steps/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/notes.txt -------------------------------------------------------------------------------- /spring-in-10-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/pom.xml -------------------------------------------------------------------------------- /spring-in-10-steps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/readme.md -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/LearnSpringFrameworkApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/LearnSpringFrameworkApplication.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/enterprise/example/business/BusinessService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/enterprise/example/business/BusinessService.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/enterprise/example/data/DataService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/enterprise/example/data/DataService.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/enterprise/example/web/MyWebController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/enterprise/example/web/MyWebController.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/GameRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/GameRunner.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/GamingConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/GamingConsole.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/MarioGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/MarioGame.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/PacmanGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/PacmanGame.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/SuperContraGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/main/java/com/in28minutes/spring/learnspringframework/game/SuperContraGame.java -------------------------------------------------------------------------------- /spring-in-10-steps/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | logging.level.org.springframework=debug -------------------------------------------------------------------------------- /spring-in-10-steps/src/test/java/com/in28minutes/spring/learnspringframework/LearnSpringFrameworkApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-in-10-steps/src/test/java/com/in28minutes/spring/learnspringframework/LearnSpringFrameworkApplicationTests.java -------------------------------------------------------------------------------- /spring-web-services-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/spring-web-services-presentation.pdf -------------------------------------------------------------------------------- /springboot-in-10-steps/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/HELP.md -------------------------------------------------------------------------------- /springboot-in-10-steps/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/final.md -------------------------------------------------------------------------------- /springboot-in-10-steps/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/notes.txt -------------------------------------------------------------------------------- /springboot-in-10-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/pom.xml -------------------------------------------------------------------------------- /springboot-in-10-steps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/readme.md -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/Course.java -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/CourseController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/CourseController.java -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/CurrencyConfigurationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/CurrencyConfigurationController.java -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/CurrencyServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/CurrencyServiceConfiguration.java -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/LearnSpringBootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/java/com/in28minutes/springboot/learnspringboot/LearnSpringBootApplication.java -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | logging.level.org.springframework=info 2 | -------------------------------------------------------------------------------- /springboot-in-10-steps/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-in-10-steps/src/test/java/com/in28minutes/springboot/learnspringboot/LearnSpringBootApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/springboot-in-10-steps/src/test/java/com/in28minutes/springboot/learnspringboot/LearnSpringBootApplicationTests.java -------------------------------------------------------------------------------- /webserviceconfig-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/spring-web-services/HEAD/webserviceconfig-changes.md --------------------------------------------------------------------------------