├── Chapter01 ├── ReadMe.txt └── worldgdp │ ├── .classpath │ ├── .project │ ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ └── org.eclipse.wst.validation.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── nilangpatel │ │ │ │ └── worldgdp │ │ │ │ ├── AppConfiguration.java │ │ │ │ ├── WorldApplicationInitializer.java │ │ │ │ ├── config │ │ │ │ ├── DBConfiguration.java │ │ │ │ ├── PropertiesWithJavaConfig.java │ │ │ │ └── ViewConfiguration.java │ │ │ │ ├── controller │ │ │ │ ├── api │ │ │ │ │ ├── CityAPIController.java │ │ │ │ │ ├── CountryAPIController.java │ │ │ │ │ └── CountryLanguageAPIController.java │ │ │ │ └── view │ │ │ │ │ └── ViewController.java │ │ │ │ ├── dao │ │ │ │ ├── CityDAO.java │ │ │ │ ├── CountryDAO.java │ │ │ │ ├── CountryLanguageDAO.java │ │ │ │ ├── LookupDAO.java │ │ │ │ └── mapper │ │ │ │ │ ├── CityRowMapper.java │ │ │ │ │ ├── CountryLanguageRowMapper.java │ │ │ │ │ └── CountryRowMapper.java │ │ │ │ ├── external │ │ │ │ └── WorldBankApiClient.java │ │ │ │ └── model │ │ │ │ ├── City.java │ │ │ │ ├── Country.java │ │ │ │ ├── CountryGDP.java │ │ │ │ └── CountryLanguage.java │ │ ├── resources │ │ │ ├── application.properties │ │ │ ├── logback.xml │ │ │ └── templates │ │ │ │ ├── base.html │ │ │ │ ├── countries.html │ │ │ │ ├── country-form.html │ │ │ │ └── country.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ └── static │ │ │ ├── css │ │ │ └── style.css │ │ │ └── js │ │ │ ├── bootpag.js │ │ │ ├── common.js │ │ │ ├── countries.js │ │ │ ├── country-form.js │ │ │ └── country.js │ └── test │ │ ├── java │ │ └── com │ │ │ └── nilangpatel │ │ │ └── test │ │ │ ├── config │ │ │ ├── DBConfigurationTest.java │ │ │ ├── TestDBConfiguration.java │ │ │ └── controller │ │ │ │ └── api │ │ │ │ ├── CityAPIControllerTest.java │ │ │ │ ├── CountryAPIControllerTest.java │ │ │ │ └── CountryLanguageAPIControllerTest.java │ │ │ ├── dao │ │ │ ├── CityDAOTest.java │ │ │ ├── CountryDAOTest.java │ │ │ ├── CountryLanguageDAOTest.java │ │ │ └── LookupDAOTest.java │ │ │ └── external │ │ │ └── WorldBankApiClientTest.java │ │ └── resources │ │ └── h2_world.sql │ └── target │ ├── classes │ ├── application.properties │ ├── com │ │ └── nilangpatel │ │ │ └── worldgdp │ │ │ ├── AppConfiguration.class │ │ │ ├── WorldApplicationInitializer.class │ │ │ ├── config │ │ │ ├── DBConfiguration.class │ │ │ ├── PropertiesWithJavaConfig.class │ │ │ └── ViewConfiguration.class │ │ │ ├── controller │ │ │ ├── api │ │ │ │ ├── CityAPIController.class │ │ │ │ ├── CountryAPIController.class │ │ │ │ └── CountryLanguageAPIController.class │ │ │ └── view │ │ │ │ └── ViewController.class │ │ │ ├── dao │ │ │ ├── CityDAO.class │ │ │ ├── CountryDAO.class │ │ │ ├── CountryLanguageDAO.class │ │ │ ├── LookupDAO.class │ │ │ └── mapper │ │ │ │ ├── CityRowMapper.class │ │ │ │ ├── CountryLanguageRowMapper.class │ │ │ │ └── CountryRowMapper.class │ │ │ ├── external │ │ │ └── WorldBankApiClient.class │ │ │ └── model │ │ │ ├── City.class │ │ │ ├── Country.class │ │ │ ├── CountryGDP.class │ │ │ └── CountryLanguage.class │ ├── logback.xml │ └── templates │ │ ├── base.html │ │ ├── countries.html │ │ ├── country-form.html │ │ └── country.html │ ├── m2e-wtp │ └── web-resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ └── com.nilangpatel.worldgdp │ │ └── worldgdp │ │ ├── pom.properties │ │ └── pom.xml │ ├── maven-status │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── surefire-reports │ ├── TEST-com.nilangpatel.test.config.DBConfigurationTest.xml │ ├── TEST-com.nilangpatel.test.config.controller.api.CityAPIControllerTest.xml │ ├── TEST-com.nilangpatel.test.config.controller.api.CountryAPIControllerTest.xml │ ├── TEST-com.nilangpatel.test.config.controller.api.CountryLanguageAPIControllerTest.xml │ ├── TEST-com.nilangpatel.test.dao.CityDAOTest.xml │ ├── TEST-com.nilangpatel.test.dao.CountryDAOTest.xml │ ├── TEST-com.nilangpatel.test.dao.CountryLanguageDAOTest.xml │ ├── TEST-com.nilangpatel.test.dao.LookupDAOTest.xml │ ├── TEST-com.nilangpatel.test.external.WorldBankApiClientTest.xml │ ├── com.nilangpatel.test.config.DBConfigurationTest.txt │ ├── com.nilangpatel.test.config.controller.api.CityAPIControllerTest.txt │ ├── com.nilangpatel.test.config.controller.api.CountryAPIControllerTest.txt │ ├── com.nilangpatel.test.config.controller.api.CountryLanguageAPIControllerTest.txt │ ├── com.nilangpatel.test.dao.CityDAOTest.txt │ ├── com.nilangpatel.test.dao.CountryDAOTest.txt │ ├── com.nilangpatel.test.dao.CountryLanguageDAOTest.txt │ ├── com.nilangpatel.test.dao.LookupDAOTest.txt │ └── com.nilangpatel.test.external.WorldBankApiClientTest.txt │ └── test-classes │ ├── com │ └── nilangpatel │ │ └── test │ │ ├── config │ │ ├── DBConfigurationTest.class │ │ ├── TestDBConfiguration.class │ │ └── controller │ │ │ └── api │ │ │ ├── CityAPIControllerTest.class │ │ │ ├── CountryAPIControllerTest.class │ │ │ └── CountryLanguageAPIControllerTest.class │ │ ├── dao │ │ ├── CityDAOTest.class │ │ ├── CountryDAOTest.class │ │ ├── CountryLanguageDAOTest.class │ │ └── LookupDAOTest.class │ │ └── external │ │ └── WorldBankApiClientTest.class │ └── h2_world.sql ├── Chapter02 ├── ReadMe.txt ├── SpringWebFluxDemo │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── nilangpatel │ │ │ │ └── webflux │ │ │ │ ├── SpringWebFluxDemoApplication.java │ │ │ │ ├── controller │ │ │ │ └── StudentWebFluxController.java │ │ │ │ ├── functinal │ │ │ │ └── endpoint │ │ │ │ │ ├── StudentCompositeRoutes.java │ │ │ │ │ ├── StudentHandler.java │ │ │ │ │ ├── StudentRouter.java │ │ │ │ │ └── StudentRouterHandlerCombined.java │ │ │ │ ├── model │ │ │ │ └── Student.java │ │ │ │ ├── repository │ │ │ │ └── StudentMongoRepository.java │ │ │ │ └── websocket │ │ │ │ └── handler │ │ │ │ └── SampleWebSocketHandler.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── nilangpatel │ │ └── webflux │ │ └── SpringWebFluxDemoApplicationTests.java ├── simple-reactor-demo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── nilangpatel │ │ │ └── reactor │ │ │ ├── ReactorBasic.java │ │ │ ├── ReactorCustomSubscriber.java │ │ │ ├── ReactorFromOtherPublisher.java │ │ │ ├── ReactorLifecycleMethods.java │ │ │ └── ReactorWithSubscriberWays.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── reactor-demo │ │ │ └── simple-reactor-demo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── nilangpatel │ │ └── reactor │ │ ├── ReactorBasic.class │ │ ├── ReactorCustomSubscriber$CustomSubscriber.class │ │ ├── ReactorCustomSubscriber.class │ │ ├── ReactorFromOtherPublisher.class │ │ ├── ReactorLifecycleMethods.class │ │ └── ReactorWithSubscriberWays.class └── simple-rx-java-demo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ └── main │ │ └── java │ │ └── com │ │ └── nilangpatel │ │ └── rxjava │ │ ├── RxJavaBasics.java │ │ ├── RxJavaColdObservable.java │ │ ├── RxJavaCreateDemo.java │ │ ├── RxJavaCustomObserverDemo.java │ │ ├── RxJavaHotObservable1.java │ │ ├── RxJavaHotObservable2.java │ │ └── RxJavaIterableDemo.java │ └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── rx-java │ │ └── simple-rx-java-demo │ │ ├── pom.properties │ │ └── pom.xml │ └── com │ └── nilangpatel │ └── rxjava │ ├── EmployeeRating.class │ ├── RxJavaBasics.class │ ├── RxJavaColdObservable.class │ ├── RxJavaCreateDemo.class │ ├── RxJavaCustomObserverDemo$1.class │ ├── RxJavaCustomObserverDemo.class │ ├── RxJavaHotObservable1.class │ ├── RxJavaHotObservable2.class │ └── RxJavaIterableDemo.class ├── Chapter03 ├── ReadMe.txt └── blogpress │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── nilangpatel │ │ └── blogpress │ │ ├── BlogpressApplication.java │ │ ├── ServletInitializer.java │ │ ├── config │ │ └── ElasticDataConfig.java │ │ ├── constants │ │ ├── BlogStatus.java │ │ ├── BlogpressConstants.java │ │ └── CommentStatus.java │ │ ├── controller │ │ ├── BlogController.java │ │ └── BlogRESTController.java │ │ ├── model │ │ ├── Blog.java │ │ └── Comment.java │ │ ├── repository │ │ ├── BlogRepository.java │ │ ├── BlogRepositoryCustom.java │ │ └── impl │ │ │ └── BlogRepositoryCustomImpl.java │ │ ├── security │ │ └── WebSecurityConfig.java │ │ ├── service │ │ └── BlogService.java │ │ └── util │ │ ├── BlogpressCommentComparator.java │ │ └── BlogpressUtil.java │ └── resources │ ├── application.properties │ ├── static │ ├── css │ │ ├── blogpress.css │ │ └── bootstrap.min.css │ └── js │ │ ├── blogpress.js │ │ ├── bootstrap.min.js │ │ ├── jquery.min.js │ │ ├── mustache_min.js │ │ └── popper.js │ └── templates │ ├── add-new.html │ ├── control-page.html │ ├── edit-blog.html │ ├── header.html │ ├── home.html │ ├── login.html │ ├── manage-blogs.html │ ├── manage-comments.html │ ├── search.html │ └── view-blog.html ├── Chapter04 ├── ReadMe.txt ├── SpringAuthResource │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── nilangpatel │ │ │ └── springauthresource │ │ │ ├── ServletInitializer.java │ │ │ ├── SpringAuthResourceApplication.java │ │ │ ├── config │ │ │ ├── MethodSecurityConfig.java │ │ │ └── ResourceServerConfig.java │ │ │ ├── controller │ │ │ ├── ServiceAPIController.java │ │ │ └── WebController.java │ │ │ ├── model │ │ │ └── SampleUser.java │ │ │ └── security │ │ │ └── WebSecurityConfig.java │ │ └── resources │ │ ├── application.properties │ │ ├── static │ │ ├── css │ │ │ ├── blogpress.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ └── popper.js │ │ └── templates │ │ ├── authorize.html │ │ ├── header.html │ │ ├── home.html │ │ ├── login.html │ │ └── private-page.html ├── SpringCustomAuthorization │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── nilangpatel │ │ │ └── springcustomauth │ │ │ ├── ServletInitializer.java │ │ │ ├── SpringCustomAuthorizationApplication.java │ │ │ ├── config │ │ │ └── CustomAuthorizationConfig.java │ │ │ ├── controller │ │ │ └── WebController.java │ │ │ └── security │ │ │ └── WebSecurityConfig.java │ │ └── resources │ │ ├── application.properties │ │ ├── static │ │ ├── css │ │ │ ├── blogpress.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ └── popper.js │ │ └── templates │ │ ├── header.html │ │ ├── login.html │ │ └── private-page.html ├── SpringLdapAndOAuth │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── nilangpatel │ │ │ └── springauth │ │ │ ├── ServletInitializer.java │ │ │ ├── SpringAuthApplication.java │ │ │ ├── authprovider │ │ │ └── CustomLdapAuthProvider.java │ │ │ ├── config │ │ │ └── LdapDataConfig.java │ │ │ ├── constants │ │ │ ├── LdapAuthConstant.java │ │ │ └── PwdEncodingAlgo.java │ │ │ ├── controller │ │ │ └── SpringLdapController.java │ │ │ ├── mapper │ │ │ └── LdapRoleMapper.java │ │ │ ├── model │ │ │ ├── LdapAuthStructure.java │ │ │ ├── LdapAuthUser.java │ │ │ └── LdapGranntedAuthority.java │ │ │ ├── repository │ │ │ ├── LdapAuthRepository.java │ │ │ ├── LdapAuthRepositoryCustom.java │ │ │ └── impl │ │ │ │ └── LdapAuthRepositoryCustomImpl.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── LdapAuthService.java │ │ └── resources │ │ ├── application.properties │ │ ├── static │ │ ├── css │ │ │ ├── blogpress.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ └── popper.js │ │ └── templates │ │ ├── admin-page.html │ │ ├── header.html │ │ ├── home.html │ │ ├── login.html │ │ ├── private-page.html │ │ └── user-page.html ├── SpringOnlyLDAP │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── nilangpatel │ │ │ └── springldap │ │ │ ├── ServletInitializer.java │ │ │ ├── SpringLdapApplication.java │ │ │ ├── config │ │ │ └── LdapDataConfig.java │ │ │ ├── constants │ │ │ ├── LdapAuthConstant.java │ │ │ └── PwdEncodingAlgo.java │ │ │ ├── controller │ │ │ └── SpringLdapController.java │ │ │ ├── model │ │ │ └── LdapAuthStructure.java │ │ │ └── security │ │ │ └── WebSecurityConfig.java │ │ └── resources │ │ ├── application.properties │ │ ├── static │ │ ├── css │ │ │ ├── blogpress.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ └── popper.js │ │ └── templates │ │ ├── header.html │ │ ├── home.html │ │ ├── login.html │ │ └── private-page.html └── SpringOnlyOAuth │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── nilangpatel │ │ └── springoauth │ │ ├── ServletInitializer.java │ │ ├── SpringOAuthApplication.java │ │ ├── constants │ │ └── OAuthConstant.java │ │ ├── controller │ │ └── SpringOAuthController.java │ │ └── security │ │ └── WebSecurityConfig.java │ └── resources │ ├── application.properties │ ├── static │ ├── css │ │ ├── blogpress.css │ │ └── bootstrap.min.css │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery.min.js │ │ └── popper.js │ └── templates │ ├── header.html │ ├── home.html │ ├── login.html │ └── private-page.html ├── Chapter05 ├── ReadMe.txt └── gdp │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .huskyrc │ ├── .jhipster │ ├── City.json │ ├── Country.json │ └── CountryLanguage.json │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── .prettierignore │ ├── .prettierrc │ ├── .yo-rc.json │ ├── README.md │ ├── angular.json │ ├── download │ └── gdp_insert_script.sql │ ├── mvnw │ ├── mvnw.cmd │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ ├── postcss.config.js │ ├── proxy.conf.json │ ├── src │ ├── main │ │ ├── docker │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── entrypoint.sh │ │ │ ├── mysql.yml │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── com │ │ │ │ └── nilangpatel │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── GdpApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CacheConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LiquibaseConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── City.java │ │ │ │ ├── Country.java │ │ │ │ ├── CountryLanguage.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── PersistentToken.java │ │ │ │ ├── User.java │ │ │ │ ├── converter │ │ │ │ │ └── ContinentEnumConvertor.java │ │ │ │ ├── enumeration │ │ │ │ │ ├── Continent.java │ │ │ │ │ └── TrueFalse.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── CityRepository.java │ │ │ │ ├── CountryLanguageRepository.java │ │ │ │ ├── CountryRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── PersistentTokenRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── PersistentTokenRememberMeServices.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── CityService.java │ │ │ │ ├── CountryLanguageService.java │ │ │ │ ├── CountryQueryService.java │ │ │ │ ├── CountryService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── CityDTO.java │ │ │ │ │ ├── CountryCriteria.java │ │ │ │ │ ├── CountryDTO.java │ │ │ │ │ ├── CountryLanguageDTO.java │ │ │ │ │ ├── PasswordChangeDTO.java │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── impl │ │ │ │ │ ├── CityServiceImpl.java │ │ │ │ │ ├── CountryLanguageServiceImpl.java │ │ │ │ │ └── CountryServiceImpl.java │ │ │ │ ├── mapper │ │ │ │ │ ├── CityMapper.java │ │ │ │ │ ├── CountryLanguageMapper.java │ │ │ │ │ ├── CountryMapper.java │ │ │ │ │ ├── EntityMapper.java │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── CityResource.java │ │ │ │ ├── CountryLanguageResource.java │ │ │ │ ├── CountryResource.java │ │ │ │ ├── GenericRestResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── BadRequestAlertException.java │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── EmailAlreadyUsedException.java │ │ │ │ ├── EmailNotFoundException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ ├── InternalServerErrorException.java │ │ │ │ ├── InvalidPasswordException.java │ │ │ │ ├── LoginAlreadyUsedException.java │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── jib │ │ │ └── entrypoint.sh │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ ├── application-tls.yml │ │ │ │ ├── application.yml │ │ │ │ ├── liquibase │ │ │ │ │ ├── authorities.csv │ │ │ │ │ ├── changelog │ │ │ │ │ │ ├── 00000000000000_initial_schema.xml │ │ │ │ │ │ ├── 20181220143638_added_entity_Country.xml │ │ │ │ │ │ ├── 20181220143639_added_entity_City.xml │ │ │ │ │ │ ├── 20181220143639_added_entity_constraints_City.xml │ │ │ │ │ │ ├── 20181220143640_added_entity_CountryLanguage.xml │ │ │ │ │ │ └── 20181220143640_added_entity_constraints_CountryLanguage.xml │ │ │ │ │ ├── master.xml │ │ │ │ │ ├── users.csv │ │ │ │ │ └── users_authorities.csv │ │ │ │ └── tls │ │ │ │ │ └── keystore.p12 │ │ │ ├── i18n │ │ │ │ ├── messages.properties │ │ │ │ └── messages_en.properties │ │ │ ├── logback-spring.xml │ │ │ └── templates │ │ │ │ ├── error.html │ │ │ │ └── mail │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.scss │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ ├── sessions │ │ │ │ │ ├── session.model.ts │ │ │ │ │ ├── sessions.component.html │ │ │ │ │ ├── sessions.component.ts │ │ │ │ │ ├── sessions.route.ts │ │ │ │ │ └── sessions.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-update.component.html │ │ │ │ │ ├── user-management-update.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ └── user-management.route.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── core │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-session.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── core.module.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language │ │ │ │ │ ├── language.constants.ts │ │ │ │ │ └── language.helper.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ └── login.service.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ ├── entities │ │ │ │ ├── city │ │ │ │ │ ├── city-delete-dialog.component.html │ │ │ │ │ ├── city-delete-dialog.component.ts │ │ │ │ │ ├── city-detail.component.html │ │ │ │ │ ├── city-detail.component.ts │ │ │ │ │ ├── city-update.component.html │ │ │ │ │ ├── city-update.component.ts │ │ │ │ │ ├── city.component.html │ │ │ │ │ ├── city.component.ts │ │ │ │ │ ├── city.module.ts │ │ │ │ │ ├── city.route.ts │ │ │ │ │ ├── city.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── country-language │ │ │ │ │ ├── country-language-delete-dialog.component.html │ │ │ │ │ ├── country-language-delete-dialog.component.ts │ │ │ │ │ ├── country-language-detail.component.html │ │ │ │ │ ├── country-language-detail.component.ts │ │ │ │ │ ├── country-language-update.component.html │ │ │ │ │ ├── country-language-update.component.ts │ │ │ │ │ ├── country-language.component.html │ │ │ │ │ ├── country-language.component.ts │ │ │ │ │ ├── country-language.module.ts │ │ │ │ │ ├── country-language.route.ts │ │ │ │ │ ├── country-language.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── country │ │ │ │ │ ├── country-delete-dialog.component.html │ │ │ │ │ ├── country-delete-dialog.component.ts │ │ │ │ │ ├── country-detail.component.html │ │ │ │ │ ├── country-detail.component.ts │ │ │ │ │ ├── country-update.component.html │ │ │ │ │ ├── country-update.component.ts │ │ │ │ │ ├── country.component.html │ │ │ │ │ ├── country.component.ts │ │ │ │ │ ├── country.module.ts │ │ │ │ │ ├── country.route.ts │ │ │ │ │ ├── country.service.ts │ │ │ │ │ └── index.ts │ │ │ │ └── entity.module.ts │ │ │ ├── gdp │ │ │ │ ├── gdp.module.ts │ │ │ │ ├── gdp.route.ts │ │ │ │ ├── gdp.service.ts │ │ │ │ ├── search-country.component.html │ │ │ │ ├── search-country.component.ts │ │ │ │ ├── show-gdp.component.html │ │ │ │ └── show-gdp.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ ├── home.scss │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── active-menu.directive.ts │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ ├── navbar.route.ts │ │ │ │ │ └── navbar.scss │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.scss │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ └── has-any-authority.directive.ts │ │ │ │ ├── constants │ │ │ │ │ ├── error.constants.ts │ │ │ │ │ ├── input.constants.ts │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language │ │ │ │ │ └── find-language-from-key.pipe.ts │ │ │ │ ├── login │ │ │ │ │ ├── login.component.html │ │ │ │ │ └── login.component.ts │ │ │ │ ├── model │ │ │ │ │ ├── chart.gdp.model.ts │ │ │ │ │ ├── city.model.ts │ │ │ │ │ ├── country-language.model.ts │ │ │ │ │ └── country.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── util │ │ │ │ │ ├── datepicker-adapter.ts │ │ │ │ │ └── request-util.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ └── loading.css │ │ │ ├── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster192.png │ │ │ │ ├── hipster256.png │ │ │ │ ├── hipster2x.png │ │ │ │ ├── hipster384.png │ │ │ │ ├── hipster512.png │ │ │ │ └── logo-jhipster.png │ │ │ └── scss │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── global.scss │ │ │ │ └── vendor.scss │ │ │ ├── favicon.ico │ │ │ ├── i18n │ │ │ └── en │ │ │ │ ├── activate.json │ │ │ │ ├── audits.json │ │ │ │ ├── city.json │ │ │ │ ├── configuration.json │ │ │ │ ├── continent.json │ │ │ │ ├── country.json │ │ │ │ ├── countryLanguage.json │ │ │ │ ├── error.json │ │ │ │ ├── global.json │ │ │ │ ├── health.json │ │ │ │ ├── home.json │ │ │ │ ├── login.json │ │ │ │ ├── logs.json │ │ │ │ ├── metrics.json │ │ │ │ ├── password.json │ │ │ │ ├── register.json │ │ │ │ ├── reset.json │ │ │ │ ├── sessions.json │ │ │ │ ├── settings.json │ │ │ │ ├── trueFalse.json │ │ │ │ └── user-management.json │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ └── swagger-ui │ │ │ ├── dist │ │ │ └── images │ │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── java │ │ └── com │ │ │ └── nilangpatel │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ ├── WebConfigurerTestController.java │ │ │ └── timezone │ │ │ │ └── HibernateTimeZoneTest.java │ │ │ ├── repository │ │ │ ├── CustomAuditEventRepositoryIntTest.java │ │ │ └── timezone │ │ │ │ ├── DateTimeWrapper.java │ │ │ │ └── DateTimeWrapperRepository.java │ │ │ ├── security │ │ │ ├── DomainUserDetailsServiceIntTest.java │ │ │ └── SecurityUtilsUnitTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── CityResourceIntTest.java │ │ │ ├── CountryLanguageResourceIntTest.java │ │ │ ├── CountryResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserResourceIntTest.java │ │ │ ├── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ │ └── util │ │ │ └── PaginationUtilUnitTest.java │ │ ├── javascript │ │ ├── jest-global-mocks.ts │ │ ├── jest.conf.js │ │ ├── jest.ts │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ ├── sessions │ │ │ │ │ └── sessions.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ ├── audits.component.spec.ts │ │ │ │ │ └── audits.service.spec.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.spec.ts │ │ │ │ │ └── configuration.service.spec.ts │ │ │ │ ├── health │ │ │ │ │ └── health.component.spec.ts │ │ │ │ ├── logs │ │ │ │ │ ├── logs.component.spec.ts │ │ │ │ │ └── logs.service.spec.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.spec.ts │ │ │ │ │ ├── metrics.component.spec.ts │ │ │ │ │ └── metrics.service.spec.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.spec.ts │ │ │ │ │ ├── user-management-detail.component.spec.ts │ │ │ │ │ ├── user-management-update.component.spec.ts │ │ │ │ │ └── user-management.component.spec.ts │ │ │ ├── core │ │ │ │ └── user │ │ │ │ │ └── user.service.spec.ts │ │ │ ├── entities │ │ │ │ ├── city │ │ │ │ │ ├── city-delete-dialog.component.spec.ts │ │ │ │ │ ├── city-detail.component.spec.ts │ │ │ │ │ ├── city-update.component.spec.ts │ │ │ │ │ ├── city.component.spec.ts │ │ │ │ │ └── city.service.spec.ts │ │ │ │ ├── country-language │ │ │ │ │ ├── country-language-delete-dialog.component.spec.ts │ │ │ │ │ ├── country-language-detail.component.spec.ts │ │ │ │ │ ├── country-language-update.component.spec.ts │ │ │ │ │ ├── country-language.component.spec.ts │ │ │ │ │ └── country-language.service.spec.ts │ │ │ │ └── country │ │ │ │ │ ├── country-delete-dialog.component.spec.ts │ │ │ │ │ ├── country-detail.component.spec.ts │ │ │ │ │ ├── country-update.component.spec.ts │ │ │ │ │ ├── country.component.spec.ts │ │ │ │ │ └── country.service.spec.ts │ │ │ └── shared │ │ │ │ ├── alert │ │ │ │ └── alert-error.component.spec.ts │ │ │ │ └── login │ │ │ │ └── login.component.spec.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-active-modal.service.ts │ │ │ ├── mock-alert.service.ts │ │ │ ├── mock-event-manager.service.ts │ │ │ ├── mock-language.service.ts │ │ │ ├── mock-login.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ ├── mock-state-storage.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── templates │ │ └── mail │ │ └── testEmail.html │ ├── tsconfig-aot.json │ ├── tsconfig.json │ ├── tslint.json │ └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── Chapter06 ├── ReadMe.txt ├── book-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── bookstore │ │ │ │ └── book │ │ │ │ ├── BookServiceApplication.java │ │ │ │ ├── model │ │ │ │ ├── Book.java │ │ │ │ ├── Category.java │ │ │ │ └── Publisher.java │ │ │ │ ├── repository │ │ │ │ ├── BookRepository.java │ │ │ │ ├── CategoryRepository.java │ │ │ │ └── PublisherRepository.java │ │ │ │ └── restcontroller │ │ │ │ └── BookRESTController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── bookstore │ │ └── book │ │ └── BookServiceApplicationTests.java ├── bookstore-authorization-server │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── bookstore │ │ │ │ └── auth │ │ │ │ ├── BookstoreAuthorizationServerApplication.java │ │ │ │ ├── config │ │ │ │ ├── CustomAuthorizationConfig.java │ │ │ │ └── WebSecurityConfig.java │ │ │ │ ├── controller │ │ │ │ └── WebMvcController.java │ │ │ │ └── user │ │ │ │ ├── dto │ │ │ │ └── UserDTO.java │ │ │ │ ├── model │ │ │ │ └── User.java │ │ │ │ └── repository │ │ │ │ └── UserRepository.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── templates │ │ │ └── login.html │ │ └── test │ │ └── java │ │ └── com │ │ └── bookstore │ │ └── auth │ │ └── BookstoreAuthorizationServerApplicationTests.java ├── catalog-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── bookstore │ │ │ │ └── catalog │ │ │ │ ├── CatalogServiceApplication.java │ │ │ │ ├── cofig │ │ │ │ └── ResourceServerConfig.java │ │ │ │ ├── dto │ │ │ │ └── BookDTO.java │ │ │ │ ├── model │ │ │ │ ├── Book.java │ │ │ │ ├── Category.java │ │ │ │ └── Publisher.java │ │ │ │ ├── repository │ │ │ │ ├── BookRepository.java │ │ │ │ ├── CategoryRepository.java │ │ │ │ └── PublisherRepository.java │ │ │ │ └── restcontroller │ │ │ │ ├── CatalogRESTController.java │ │ │ │ └── TestRESTController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── bootstrap.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── bookstore │ │ └── book │ │ └── BookServiceApplicationTests.java ├── eureka-discovery-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── eureka │ │ │ │ └── discovery │ │ │ │ └── EurekaDiscoveryServiceApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── eureka │ │ └── discovery │ │ └── EurekaDiscoveryServiceApplicationTests.java ├── inventory-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── bookstore │ │ │ │ └── inventory │ │ │ │ ├── InventoryServiceApplication.java │ │ │ │ ├── config │ │ │ │ └── ResourceServerConfig.java │ │ │ │ ├── dto │ │ │ │ └── BookDTO.java │ │ │ │ ├── feignproxy │ │ │ │ └── CatalogServiceProxy.java │ │ │ │ ├── inerceptor │ │ │ │ └── FeignClientInterceptor.java │ │ │ │ ├── model │ │ │ │ ├── Inventory.java │ │ │ │ └── InventoryHistory.java │ │ │ │ ├── repository │ │ │ │ └── InventoryRepository.java │ │ │ │ └── restcontroller │ │ │ │ └── InventoryRESTController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── templates │ │ │ └── home.html │ │ └── test │ │ └── java │ │ └── com │ │ └── bookstore │ │ └── inventory │ │ └── InventoryServiceApplicationTests.java ├── order-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── bookstore │ │ │ │ └── order │ │ │ │ ├── OrderServiceApplication.java │ │ │ │ ├── model │ │ │ │ ├── Order.java │ │ │ │ └── OrderItem.java │ │ │ │ └── repository │ │ │ │ └── OrderRepository.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── bookstore │ │ └── order │ │ └── OrderServiceApplicationTests.java ├── spring-cloud-config-server │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── spring │ │ │ │ └── cloud │ │ │ │ └── config │ │ │ │ └── SpringCloudConfigServerApplication.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── bootstrap.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── spring │ │ └── cloud │ │ └── config │ │ └── SpringCloudConfigServerApplicationTests.java ├── user-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── bookstore │ │ │ │ └── user │ │ │ │ ├── UserServiceApplication.java │ │ │ │ ├── config │ │ │ │ └── UserConfiguration.java │ │ │ │ ├── dto │ │ │ │ └── UserDTO.java │ │ │ │ ├── model │ │ │ │ ├── User.java │ │ │ │ └── UserAddress.java │ │ │ │ ├── repository │ │ │ │ ├── CustomUserRepository.java │ │ │ │ └── UserRepository.java │ │ │ │ └── restcontroller │ │ │ │ └── UserRESTController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── bookstore │ │ └── user │ │ └── UserServiceApplicationTests.java └── zuul-api-gateway │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zuul │ │ │ └── apigateway │ │ │ ├── ZuulApiGatewayApplication.java │ │ │ ├── config │ │ │ └── ResourceServerConfig.java │ │ │ ├── filter │ │ │ ├── CustomPostFilter.java │ │ │ └── CustomPreFilter.java │ │ │ └── interceptor │ │ │ └── FeignClientInterceptor.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── zuul │ └── apigateway │ └── ZuulApiGatewayApplicationTests.java ├── Chapter07 ├── KotlinBasics │ ├── .idea │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── encodings.xml │ │ ├── kotlinc.xml │ │ ├── libraries │ │ │ └── KotlinJavaRuntime.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── uiDesigner.xml │ │ └── workspace.xml │ ├── KotlinBasics.iml │ ├── out │ │ └── production │ │ │ └── KotlinBasics │ │ │ ├── META-INF │ │ │ └── KotlinBasics.kotlin_module │ │ │ └── com │ │ │ └── nilangpatel │ │ │ └── kotlin │ │ │ ├── dataclasses │ │ │ ├── DataClassesDemoKt.class │ │ │ ├── StudentVOJava.class │ │ │ └── StudentVOKotlin.class │ │ │ ├── function │ │ │ ├── defaultarg │ │ │ │ └── CubeVolumeKt.class │ │ │ ├── expression │ │ │ │ └── Function_expressionKt.class │ │ │ ├── extension │ │ │ │ └── FunExtensionKt.class │ │ │ ├── lamda │ │ │ │ ├── Applicant.class │ │ │ │ ├── LamdaDemo1Kt$main$1.class │ │ │ │ ├── LamdaDemo1Kt$main$addition$1.class │ │ │ │ ├── LamdaDemo1Kt$main$addition2$1.class │ │ │ │ ├── LamdaDemo1Kt$main$greetingMsg$1.class │ │ │ │ ├── LamdaDemo1Kt$main$showWarning$1.class │ │ │ │ ├── LamdaDemo1Kt.class │ │ │ │ ├── LamdaDemo2Kt$main$isEligible$1.class │ │ │ │ ├── LamdaDemo2Kt$main$isEligible2$1.class │ │ │ │ └── LamdaDemo2Kt.class │ │ │ └── returnfromotherfun │ │ │ │ ├── Dog.class │ │ │ │ ├── Fox.class │ │ │ │ ├── Lion.class │ │ │ │ ├── ReturnFromOtherFunDemoKt$getAnimalVoiceFun$1.class │ │ │ │ ├── ReturnFromOtherFunDemoKt$main$getAnimalVoice$1$1.class │ │ │ │ ├── ReturnFromOtherFunDemoKt$main$getAnimalVoice$1.class │ │ │ │ ├── ReturnFromOtherFunDemoKt.class │ │ │ │ └── WildAnimal.class │ │ │ ├── interoperability │ │ │ ├── CheckInterOperabilityKt.class │ │ │ ├── JavaFile.class │ │ │ └── KotlinFileKt.class │ │ │ ├── nullcheck │ │ │ └── NullCheckDemoKt.class │ │ │ ├── operatoroverload │ │ │ ├── CoordinatePoint.class │ │ │ └── OperatorOverloadDemoKt.class │ │ │ └── smartcast │ │ │ ├── CastExampleJava.class │ │ │ └── CastExampleKotlinKt.class │ ├── src │ │ └── com │ │ │ └── nilangpatel │ │ │ └── kotlin │ │ │ ├── dataclasses │ │ │ ├── DataClassesDemo.kt │ │ │ ├── StudentVOJava.java │ │ │ └── StudentVOKotlin.kt │ │ │ ├── function │ │ │ ├── defaultarg │ │ │ │ └── CubeVolume.kt │ │ │ ├── expression │ │ │ │ └── function-expression.kt │ │ │ ├── extension │ │ │ │ └── FunExtension.kt │ │ │ ├── lamda │ │ │ │ ├── LamdaDemo1.kt │ │ │ │ └── LamdaDemo2.kt │ │ │ └── returnfromotherfun │ │ │ │ └── ReturnFromOtherFunDemo.kt │ │ │ ├── interoperability │ │ │ ├── CheckInterOperability.kt │ │ │ ├── JavaFile.java │ │ │ └── KotlinFile.kt │ │ │ ├── nullcheck │ │ │ └── NullCheckDemo.kt │ │ │ ├── operatoroverload │ │ │ └── OperatorOverloadDemo.kt │ │ │ └── smartcast │ │ │ ├── CastExampleJava.java │ │ │ └── CastExampleKotlin.kt │ └── test ├── ReadMe.txt └── taskmanagementsystem │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── kotlin │ │ └── com │ │ │ └── nilangpatel │ │ │ └── tms │ │ │ ├── TaskmanagementsystemApplication.kt │ │ │ ├── constant │ │ │ ├── TaskMgmntConstant.kt │ │ │ └── TaskStatus.kt │ │ │ ├── controller │ │ │ ├── TaskMgmntRESTController.kt │ │ │ └── TaskMgmtSystemController.kt │ │ │ ├── dto │ │ │ ├── CommentDTO.kt │ │ │ ├── TaskDTO.kt │ │ │ ├── UserDTO.kt │ │ │ └── UserRegistrationDTO.kt │ │ │ ├── model │ │ │ ├── Comments.kt │ │ │ ├── CustomGrantedAuthority.kt │ │ │ ├── CustomUserPrinciple.kt │ │ │ ├── Role.kt │ │ │ ├── Task.kt │ │ │ └── User.kt │ │ │ ├── repository │ │ │ ├── CommentRepository.kt │ │ │ ├── RoleRepository.kt │ │ │ ├── TaskRepository.kt │ │ │ └── UserRepository.kt │ │ │ ├── security │ │ │ └── WebSecurityConfig.kt │ │ │ └── service │ │ │ └── CustomUserDetailsService.kt │ └── resources │ │ ├── application.properties │ │ ├── static │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ ├── popper.js │ │ │ └── tms.js │ │ └── templates │ │ ├── control-menu.html │ │ ├── control-page.html │ │ ├── header.html │ │ ├── home.html │ │ ├── login.html │ │ ├── task-add.html │ │ ├── task-edit.html │ │ ├── task-list.html │ │ ├── task-view.html │ │ └── users.html │ └── test │ └── kotlin │ └── com │ └── nilangpatel │ └── tms │ └── taskmanagementsystem │ └── TaskmanagementsystemApplicationTests.kt ├── LICENSE └── README.md /Chapter01/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/ReadMe.txt -------------------------------------------------------------------------------- /Chapter01/worldgdp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.classpath -------------------------------------------------------------------------------- /Chapter01/worldgdp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.project -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.settings/.jsdtscope -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter01/worldgdp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter01/worldgdp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/pom.xml -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/AppConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/AppConfiguration.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/dao/CityDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/dao/CityDAO.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/dao/CountryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/dao/CountryDAO.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/dao/LookupDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/dao/LookupDAO.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/model/City.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/model/City.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/model/Country.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/model/Country.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/model/CountryGDP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/java/com/nilangpatel/worldgdp/model/CountryGDP.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/resources/logback.xml -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/resources/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/resources/templates/base.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/resources/templates/countries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/resources/templates/countries.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/resources/templates/country-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/resources/templates/country-form.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/resources/templates/country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/resources/templates/country.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/static/css/style.css -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/static/js/bootpag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/static/js/bootpag.js -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/static/js/common.js -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/static/js/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/static/js/countries.js -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/static/js/country-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/static/js/country-form.js -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/main/webapp/static/js/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/main/webapp/static/js/country.js -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/test/java/com/nilangpatel/test/dao/CityDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/test/java/com/nilangpatel/test/dao/CityDAOTest.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/test/java/com/nilangpatel/test/dao/CountryDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/test/java/com/nilangpatel/test/dao/CountryDAOTest.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/test/java/com/nilangpatel/test/dao/LookupDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/test/java/com/nilangpatel/test/dao/LookupDAOTest.java -------------------------------------------------------------------------------- /Chapter01/worldgdp/src/test/resources/h2_world.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/src/test/resources/h2_world.sql -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/application.properties -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/AppConfiguration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/AppConfiguration.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/dao/CityDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/dao/CityDAO.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/dao/CountryDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/dao/CountryDAO.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/dao/LookupDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/dao/LookupDAO.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/model/City.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/model/City.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/model/Country.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/model/Country.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/model/CountryGDP.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/com/nilangpatel/worldgdp/model/CountryGDP.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/logback.xml -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/templates/base.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/templates/countries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/templates/countries.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/templates/country-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/templates/country-form.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/classes/templates/country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/classes/templates/country.html -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/surefire-reports/com.nilangpatel.test.dao.CityDAOTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/surefire-reports/com.nilangpatel.test.dao.CityDAOTest.txt -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/test-classes/com/nilangpatel/test/dao/CityDAOTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/test-classes/com/nilangpatel/test/dao/CityDAOTest.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/test-classes/com/nilangpatel/test/dao/LookupDAOTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/test-classes/com/nilangpatel/test/dao/LookupDAOTest.class -------------------------------------------------------------------------------- /Chapter01/worldgdp/target/test-classes/h2_world.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter01/worldgdp/target/test-classes/h2_world.sql -------------------------------------------------------------------------------- /Chapter02/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/ReadMe.txt -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/.gitignore -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/mvnw -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/mvnw.cmd -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/pom.xml -------------------------------------------------------------------------------- /Chapter02/SpringWebFluxDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/SpringWebFluxDemo/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter02/simple-reactor-demo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-reactor-demo/.classpath -------------------------------------------------------------------------------- /Chapter02/simple-reactor-demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-reactor-demo/.project -------------------------------------------------------------------------------- /Chapter02/simple-reactor-demo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-reactor-demo/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter02/simple-reactor-demo/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-reactor-demo/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /Chapter02/simple-reactor-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-reactor-demo/pom.xml -------------------------------------------------------------------------------- /Chapter02/simple-reactor-demo/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-reactor-demo/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Chapter02/simple-rx-java-demo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-rx-java-demo/.classpath -------------------------------------------------------------------------------- /Chapter02/simple-rx-java-demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-rx-java-demo/.project -------------------------------------------------------------------------------- /Chapter02/simple-rx-java-demo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-rx-java-demo/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter02/simple-rx-java-demo/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-rx-java-demo/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /Chapter02/simple-rx-java-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-rx-java-demo/pom.xml -------------------------------------------------------------------------------- /Chapter02/simple-rx-java-demo/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter02/simple-rx-java-demo/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Chapter03/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/ReadMe.txt -------------------------------------------------------------------------------- /Chapter03/blogpress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/.gitignore -------------------------------------------------------------------------------- /Chapter03/blogpress/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter03/blogpress/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter03/blogpress/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/mvnw -------------------------------------------------------------------------------- /Chapter03/blogpress/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/mvnw.cmd -------------------------------------------------------------------------------- /Chapter03/blogpress/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/pom.xml -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/ServletInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/ServletInitializer.java -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/model/Blog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/model/Blog.java -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/model/Comment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/model/Comment.java -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/util/BlogpressUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/java/com/nilangpatel/blogpress/util/BlogpressUtil.java -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/css/blogpress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/css/blogpress.css -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/js/blogpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/js/blogpress.js -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/js/mustache_min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/js/mustache_min.js -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/add-new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/add-new.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/control-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/control-page.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/edit-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/edit-blog.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/manage-blogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/manage-blogs.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/manage-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/manage-comments.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/search.html -------------------------------------------------------------------------------- /Chapter03/blogpress/src/main/resources/templates/view-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter03/blogpress/src/main/resources/templates/view-blog.html -------------------------------------------------------------------------------- /Chapter04/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/ReadMe.txt -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/.gitignore -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/mvnw -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/mvnw.cmd -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/pom.xml -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/static/css/blogpress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/static/css/blogpress.css -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/templates/authorize.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter04/SpringAuthResource/src/main/resources/templates/private-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringAuthResource/src/main/resources/templates/private-page.html -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/.gitignore -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/mvnw -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/mvnw.cmd -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/pom.xml -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/static/css/blogpress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/static/css/blogpress.css -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter04/SpringCustomAuthorization/src/main/resources/templates/private-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringCustomAuthorization/src/main/resources/templates/private-page.html -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/.gitignore -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/mvnw -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/mvnw.cmd -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/pom.xml -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/static/css/blogpress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/static/css/blogpress.css -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/templates/admin-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/templates/admin-page.html -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/templates/private-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/templates/private-page.html -------------------------------------------------------------------------------- /Chapter04/SpringLdapAndOAuth/src/main/resources/templates/user-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringLdapAndOAuth/src/main/resources/templates/user-page.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/.gitignore -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/mvnw -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/mvnw.cmd -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/pom.xml -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/static/css/blogpress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/static/css/blogpress.css -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyLDAP/src/main/resources/templates/private-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyLDAP/src/main/resources/templates/private-page.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/.gitignore -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/mvnw -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/mvnw.cmd -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/pom.xml -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/static/css/blogpress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/static/css/blogpress.css -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter04/SpringOnlyOAuth/src/main/resources/templates/private-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter04/SpringOnlyOAuth/src/main/resources/templates/private-page.html -------------------------------------------------------------------------------- /Chapter05/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/ReadMe.txt -------------------------------------------------------------------------------- /Chapter05/gdp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.editorconfig -------------------------------------------------------------------------------- /Chapter05/gdp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.gitattributes -------------------------------------------------------------------------------- /Chapter05/gdp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.gitignore -------------------------------------------------------------------------------- /Chapter05/gdp/.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.huskyrc -------------------------------------------------------------------------------- /Chapter05/gdp/.jhipster/City.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.jhipster/City.json -------------------------------------------------------------------------------- /Chapter05/gdp/.jhipster/Country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.jhipster/Country.json -------------------------------------------------------------------------------- /Chapter05/gdp/.jhipster/CountryLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.jhipster/CountryLanguage.json -------------------------------------------------------------------------------- /Chapter05/gdp/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /Chapter05/gdp/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter05/gdp/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter05/gdp/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | target 3 | -------------------------------------------------------------------------------- /Chapter05/gdp/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.prettierrc -------------------------------------------------------------------------------- /Chapter05/gdp/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/.yo-rc.json -------------------------------------------------------------------------------- /Chapter05/gdp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/README.md -------------------------------------------------------------------------------- /Chapter05/gdp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/angular.json -------------------------------------------------------------------------------- /Chapter05/gdp/download/gdp_insert_script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/download/gdp_insert_script.sql -------------------------------------------------------------------------------- /Chapter05/gdp/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/mvnw -------------------------------------------------------------------------------- /Chapter05/gdp/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/mvnw.cmd -------------------------------------------------------------------------------- /Chapter05/gdp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/package-lock.json -------------------------------------------------------------------------------- /Chapter05/gdp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/package.json -------------------------------------------------------------------------------- /Chapter05/gdp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/pom.xml -------------------------------------------------------------------------------- /Chapter05/gdp/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/postcss.config.js -------------------------------------------------------------------------------- /Chapter05/gdp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/proxy.conf.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/docker/.dockerignore -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/docker/app.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/docker/entrypoint.sh -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/docker/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/docker/mysql.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/ApplicationWebXml.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/GdpApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/GdpApp.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/ApplicationProperties.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/CacheConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/Constants.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/DefaultProfileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/DefaultProfileUtil.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/LiquibaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/LiquibaseConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/MetricsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/MetricsConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/WebConfigurer.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/audit/AuditEventConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/audit/AuditEventConverter.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/audit/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/audit/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/config/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/Authority.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/City.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/City.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/Country.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/Country.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/CountryLanguage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/CountryLanguage.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/PersistentAuditEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/PersistentAuditEvent.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/PersistentToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/PersistentToken.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/User.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/enumeration/Continent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/enumeration/Continent.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/enumeration/TrueFalse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/enumeration/TrueFalse.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/domain/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/repository/AuthorityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/repository/AuthorityRepository.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/repository/CityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/repository/CityRepository.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/repository/CountryRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/repository/CountryRepository.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/repository/UserRepository.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/repository/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/security/SecurityUtils.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/security/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/AuditEventService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/AuditEventService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/CityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/CityService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/CountryLanguageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/CountryLanguageService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/CountryQueryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/CountryQueryService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/CountryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/CountryService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/MailService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/UserService.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CityDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CityDTO.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CountryCriteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CountryCriteria.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CountryDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CountryDTO.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CountryLanguageDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/CountryLanguageDTO.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/PasswordChangeDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/PasswordChangeDTO.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/UserDTO.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/dto/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Data Transfer Objects. 3 | */ 4 | package com.nilangpatel.service.dto; 5 | -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/impl/CityServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/impl/CityServiceImpl.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/impl/CountryServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/impl/CountryServiceImpl.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/CityMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/CityMapper.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/CountryMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/CountryMapper.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/EntityMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/EntityMapper.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/mapper/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/service/util/RandomUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/service/util/RandomUtil.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/AccountResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/AuditResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/AuditResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/CityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/CityResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/CountryLanguageResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/CountryLanguageResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/CountryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/CountryResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/GenericRestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/GenericRestResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/LogsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/LogsResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/UserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/UserResource.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/util/HeaderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/util/HeaderUtil.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/util/PaginationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/util/PaginationUtil.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/KeyAndPasswordVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/KeyAndPasswordVM.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/LoggerVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/LoggerVM.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/java/com/nilangpatel/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/jib/entrypoint.sh -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/banner.txt -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/liquibase/authorities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/liquibase/authorities.csv -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/liquibase/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/liquibase/users.csv -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/liquibase/users_authorities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/liquibase/users_authorities.csv -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/templates/mail/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/templates/mail/activationEmail.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/templates/mail/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/templates/mail/creationEmail.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/resources/templates/mail/passwordResetEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/resources/templates/mail/passwordResetEmail.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/404.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/account.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/account.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/account.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/activate/activate.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/activate/activate.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/activate/activate.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/activate/activate.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/activate/activate.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/activate/activate.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/activate/activate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/activate/activate.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/password/password-strength-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/password/password-strength-bar.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/password/password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/password/password.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/password/password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/password/password.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/password/password.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/password/password.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/password/password.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/password/password.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/register/register.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/register/register.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/register/register.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/register/register.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/register/register.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/register/register.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/sessions/session.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/sessions/session.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/sessions/sessions.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/settings/settings.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/settings/settings.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/account/settings/settings.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/account/settings/settings.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/admin.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/admin.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/admin.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/audits/audit-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/audits/audit-data.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/audits/audit.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/audits/audit.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/audits/audits.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/audits/audits.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/audits/audits.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/audits/audits.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/audits/audits.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/audits/audits.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/audits/audits.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/audits/audits.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/configuration/configuration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/configuration/configuration.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/configuration/configuration.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/configuration/configuration.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/configuration/configuration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/configuration/configuration.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/docs/docs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/docs/docs.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/docs/docs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/docs/docs.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/docs/docs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/docs/docs.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/health/health-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/health/health-modal.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/health/health-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/health/health-modal.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/health/health.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/health/health.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/health/health.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/health/health.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/health/health.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/health/health.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/health/health.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/health/health.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/logs/log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/logs/log.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/logs/logs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/logs/logs.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/logs/logs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/logs/logs.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/logs/logs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/logs/logs.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/logs/logs.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics-modal.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics-modal.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/metrics/metrics.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/admin/user-management/user-management.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/admin/user-management/user-management.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/app-routing.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/blocks/config/prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/blocks/config/prod.config.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/blocks/config/uib-pagination.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/blocks/config/uib-pagination.config.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/blocks/interceptor/auth-expired.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/blocks/interceptor/auth-expired.interceptor.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/blocks/interceptor/errorhandler.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/blocks/interceptor/errorhandler.interceptor.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/blocks/interceptor/notification.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/blocks/interceptor/notification.interceptor.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/auth/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/auth/account.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/auth/auth-session.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/auth/auth-session.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/auth/csrf.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/auth/csrf.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/auth/principal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/auth/principal.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/auth/state-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/auth/state-storage.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/auth/user-route-access-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/auth/user-route-access-service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/core.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/language/language.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/language/language.constants.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/language/language.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/language/language.helper.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/login/login-modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/login/login-modal.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/login/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/login/login.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/user/account.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/user/account.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/user/user.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/core/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/core/user/user.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city-delete-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city-delete-dialog.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city-delete-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city-delete-dialog.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city-detail.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city-detail.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city-update.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city-update.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/city.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/city.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/city/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/city/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country-language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country-language/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country-detail.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country-detail.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country-update.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country-update.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/country.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/country.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/country/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/country/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/entities/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/entities/entity.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/gdp.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/gdp.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/gdp.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/gdp.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/gdp.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/gdp.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/search-country.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/search-country.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/search-country.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/search-country.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/show-gdp.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/show-gdp.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/gdp/show-gdp.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/gdp/show-gdp.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/home/home.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/home/home.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/home/home.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/error/error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/error/error.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/error/error.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/error/error.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/error/error.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/footer/footer.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/footer/footer.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/main/main.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/main/main.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/navbar/active-menu.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/navbar/active-menu.directive.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.route.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/navbar/navbar.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/profiles/page-ribbon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/profiles/page-ribbon.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/profiles/page-ribbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/profiles/page-ribbon.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/profiles/profile-info.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/profiles/profile-info.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/layouts/profiles/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/layouts/profiles/profile.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/alert/alert-error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/alert/alert-error.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/alert/alert.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/auth/has-any-authority.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/auth/has-any-authority.directive.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/constants/error.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/constants/error.constants.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/constants/input.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/constants/input.constants.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/language/find-language-from-key.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/language/find-language-from-key.pipe.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/login/login.component.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/login/login.component.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/model/chart.gdp.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/model/chart.gdp.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/model/city.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/model/city.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/model/country-language.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/model/country-language.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/model/country.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/model/country.model.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/shared-common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/shared-common.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/shared-libs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/shared-libs.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/util/datepicker-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/util/datepicker-adapter.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/shared/util/request-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/shared/util/request-util.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/css/loading.css -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/hipster.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/hipster192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/hipster192.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/hipster256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/hipster256.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/hipster2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/hipster2x.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/hipster384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/hipster384.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/hipster512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/hipster512.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/images/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/images/logo-jhipster.png -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/scss/_bootstrap-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/scss/_bootstrap-variables.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/scss/global.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/content/scss/vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/content/scss/vendor.scss -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/activate.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/audits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/audits.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/city.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/configuration.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/continent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/continent.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/country.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/countryLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/countryLanguage.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/error.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/global.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/health.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/home.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/login.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/logs.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/metrics.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/password.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/register.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/reset.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/sessions.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/settings.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/trueFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/trueFalse.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/i18n/en/user-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/i18n/en/user-management.json -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/index.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/swagger-ui/dist/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/swagger-ui/dist/images/throbber.gif -------------------------------------------------------------------------------- /Chapter05/gdp/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/security/SecurityUtilsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/security/SecurityUtilsUnitTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/service/MailServiceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/service/MailServiceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/service/UserServiceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/service/UserServiceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/AccountResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/AccountResourceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/AuditResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/AuditResourceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/CityResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/CityResourceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/CountryResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/CountryResourceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/LogsResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/LogsResourceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/TestUtil.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/UserResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/java/com/nilangpatel/web/rest/UserResourceIntTest.java -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/jest-global-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/jest-global-mocks.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/jest.conf.js -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/jest.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/admin/audits/audits.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/admin/audits/audits.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/admin/audits/audits.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/admin/audits/audits.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/admin/health/health.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/admin/health/health.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/admin/logs/logs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/admin/logs/logs.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/admin/logs/logs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/admin/logs/logs.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/admin/metrics/metrics.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/admin/metrics/metrics.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/core/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/core/user/user.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/entities/city/city.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/entities/city/city.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/entities/city/city.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/entities/city/city.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/app/shared/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/app/shared/login/login.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-account.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-active-modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-active-modal.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-alert.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-event-manager.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-event-manager.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-language.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-login.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-principal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-principal.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-route.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-route.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/mock-state-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/mock-state-storage.service.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/helpers/spyobject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/helpers/spyobject.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/resources/logback.xml -------------------------------------------------------------------------------- /Chapter05/gdp/src/test/resources/templates/mail/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/src/test/resources/templates/mail/testEmail.html -------------------------------------------------------------------------------- /Chapter05/gdp/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/tsconfig-aot.json -------------------------------------------------------------------------------- /Chapter05/gdp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/gdp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/tslint.json -------------------------------------------------------------------------------- /Chapter05/gdp/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /Chapter05/gdp/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/webpack/utils.js -------------------------------------------------------------------------------- /Chapter05/gdp/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/webpack/webpack.common.js -------------------------------------------------------------------------------- /Chapter05/gdp/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/webpack/webpack.dev.js -------------------------------------------------------------------------------- /Chapter05/gdp/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter05/gdp/webpack/webpack.prod.js -------------------------------------------------------------------------------- /Chapter06/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/ReadMe.txt -------------------------------------------------------------------------------- /Chapter06/book-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/.gitignore -------------------------------------------------------------------------------- /Chapter06/book-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/book-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/book-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/mvnw -------------------------------------------------------------------------------- /Chapter06/book-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/book-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/pom.xml -------------------------------------------------------------------------------- /Chapter06/book-service/src/main/java/com/bookstore/book/model/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/src/main/java/com/bookstore/book/model/Book.java -------------------------------------------------------------------------------- /Chapter06/book-service/src/main/java/com/bookstore/book/model/Category.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/src/main/java/com/bookstore/book/model/Category.java -------------------------------------------------------------------------------- /Chapter06/book-service/src/main/java/com/bookstore/book/model/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/src/main/java/com/bookstore/book/model/Publisher.java -------------------------------------------------------------------------------- /Chapter06/book-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/book-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/.gitignore -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/mvnw -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/pom.xml -------------------------------------------------------------------------------- /Chapter06/bookstore-authorization-server/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/bookstore-authorization-server/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter06/catalog-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/.gitignore -------------------------------------------------------------------------------- /Chapter06/catalog-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/catalog-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/catalog-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/mvnw -------------------------------------------------------------------------------- /Chapter06/catalog-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/catalog-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/pom.xml -------------------------------------------------------------------------------- /Chapter06/catalog-service/src/main/java/com/bookstore/catalog/dto/BookDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/src/main/java/com/bookstore/catalog/dto/BookDTO.java -------------------------------------------------------------------------------- /Chapter06/catalog-service/src/main/java/com/bookstore/catalog/model/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/src/main/java/com/bookstore/catalog/model/Book.java -------------------------------------------------------------------------------- /Chapter06/catalog-service/src/main/java/com/bookstore/catalog/model/Category.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/src/main/java/com/bookstore/catalog/model/Category.java -------------------------------------------------------------------------------- /Chapter06/catalog-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/catalog-service/src/main/resources/bootstrap.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/catalog-service/src/main/resources/bootstrap.properties -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/.gitignore -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/mvnw -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/pom.xml -------------------------------------------------------------------------------- /Chapter06/eureka-discovery-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/eureka-discovery-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/inventory-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/.gitignore -------------------------------------------------------------------------------- /Chapter06/inventory-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/inventory-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/inventory-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/mvnw -------------------------------------------------------------------------------- /Chapter06/inventory-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/inventory-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/pom.xml -------------------------------------------------------------------------------- /Chapter06/inventory-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/inventory-service/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/inventory-service/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter06/order-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/.gitignore -------------------------------------------------------------------------------- /Chapter06/order-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/order-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/order-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/mvnw -------------------------------------------------------------------------------- /Chapter06/order-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/order-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/pom.xml -------------------------------------------------------------------------------- /Chapter06/order-service/src/main/java/com/bookstore/order/model/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/src/main/java/com/bookstore/order/model/Order.java -------------------------------------------------------------------------------- /Chapter06/order-service/src/main/java/com/bookstore/order/model/OrderItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/src/main/java/com/bookstore/order/model/OrderItem.java -------------------------------------------------------------------------------- /Chapter06/order-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/order-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/.gitignore -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/mvnw -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/pom.xml -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/spring-cloud-config-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/spring-cloud-config-server/src/main/resources/bootstrap.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/user-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/.gitignore -------------------------------------------------------------------------------- /Chapter06/user-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/user-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/user-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/mvnw -------------------------------------------------------------------------------- /Chapter06/user-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/user-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/pom.xml -------------------------------------------------------------------------------- /Chapter06/user-service/src/main/java/com/bookstore/user/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/src/main/java/com/bookstore/user/dto/UserDTO.java -------------------------------------------------------------------------------- /Chapter06/user-service/src/main/java/com/bookstore/user/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/src/main/java/com/bookstore/user/model/User.java -------------------------------------------------------------------------------- /Chapter06/user-service/src/main/java/com/bookstore/user/model/UserAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/src/main/java/com/bookstore/user/model/UserAddress.java -------------------------------------------------------------------------------- /Chapter06/user-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/user-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/.gitignore -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/mvnw -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/mvnw.cmd -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/pom.xml -------------------------------------------------------------------------------- /Chapter06/zuul-api-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter06/zuul-api-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/encodings.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/KotlinBasics.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/KotlinBasics.iml -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/dataclasses/DataClassesDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/dataclasses/DataClassesDemo.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/dataclasses/StudentVOJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/dataclasses/StudentVOJava.java -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/dataclasses/StudentVOKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/dataclasses/StudentVOKotlin.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/function/lamda/LamdaDemo1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/function/lamda/LamdaDemo1.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/function/lamda/LamdaDemo2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/function/lamda/LamdaDemo2.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/interoperability/JavaFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/interoperability/JavaFile.java -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/interoperability/KotlinFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/interoperability/KotlinFile.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/nullcheck/NullCheckDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/nullcheck/NullCheckDemo.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/smartcast/CastExampleJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/smartcast/CastExampleJava.java -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/smartcast/CastExampleKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/KotlinBasics/src/com/nilangpatel/kotlin/smartcast/CastExampleKotlin.kt -------------------------------------------------------------------------------- /Chapter07/KotlinBasics/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/ReadMe.txt -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/.gitignore -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/mvnw -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/mvnw.cmd -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/pom.xml -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/dto/TaskDTO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/dto/TaskDTO.kt -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/dto/UserDTO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/dto/UserDTO.kt -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/model/Role.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/model/Role.kt -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/model/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/model/Task.kt -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/kotlin/com/nilangpatel/tms/model/User.kt -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/static/js/popper.js -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/static/js/tms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/static/js/tms.js -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/control-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/control-menu.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/control-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/control-page.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/header.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/task-add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/task-add.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/task-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/task-edit.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/task-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/task-list.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/task-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/task-view.html -------------------------------------------------------------------------------- /Chapter07/taskmanagementsystem/src/main/resources/templates/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/Chapter07/taskmanagementsystem/src/main/resources/templates/users.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Projects/HEAD/README.md --------------------------------------------------------------------------------