├── .gitattributes ├── .gitignore ├── Chapter03 └── Code files.zip ├── Chapter06 └── Code files.zip ├── Chapter07 └── Code files.zip ├── Chapter08 └── Code files.zip ├── Chapter09 └── Code files.zip ├── Chapter10 └── Code files.zip ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /Chapter03/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Microservices-Second-Edition/42e8bc21cb779533f1e940f3b7e3f925a0a8907f/Chapter03/Code files.zip -------------------------------------------------------------------------------- /Chapter06/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Microservices-Second-Edition/42e8bc21cb779533f1e940f3b7e3f925a0a8907f/Chapter06/Code files.zip -------------------------------------------------------------------------------- /Chapter07/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Microservices-Second-Edition/42e8bc21cb779533f1e940f3b7e3f925a0a8907f/Chapter07/Code files.zip -------------------------------------------------------------------------------- /Chapter08/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Microservices-Second-Edition/42e8bc21cb779533f1e940f3b7e3f925a0a8907f/Chapter08/Code files.zip -------------------------------------------------------------------------------- /Chapter09/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Microservices-Second-Edition/42e8bc21cb779533f1e940f3b7e3f925a0a8907f/Chapter09/Code files.zip -------------------------------------------------------------------------------- /Chapter10/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Spring-5.0-Microservices-Second-Edition/42e8bc21cb779533f1e940f3b7e3f925a0a8907f/Chapter10/Code files.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Packt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Spring 5.0 Microservices - Second Edition 2 | This is the code repository for [Spring 5.0 Microservices - Second Edition](https://www.packtpub.com/application-development/spring-50-microservices-second-edition?utm_source=github&utm_medium=repository&utm_campaign=9781787127685), published by [Packt](https://www.packtpub.com/?utm_source=github). It contains all the supporting project files necessary to work through the book from start to finish. 3 | ## About the Book 4 | The Spring Framework is an application framework and inversion of the control container for the Java platform. The framework's core features can be used by any Java application, but there are extensions to build web applications on top of the Java EE platform. 5 | 6 | 7 | ## Instructions and Navigation 8 | All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter03. 9 | 10 | Chapters 1, 2, 4, 5, 11 does not have any code files. 11 | 12 | The code will look like the following: 13 | ``` 14 | @SpringBootApplication 15 | public class Application { 16 | public static void main(String[] args) { 17 | SpringApplication.run(Application.class, args); 18 | } 19 | } 20 | ``` 21 | You will need the following tools for running the codes in the book: 22 | * JDK 1.8 23 | * Spring Tool Suite 3.8.2 (STS) 24 | * Maven 3.3.1 25 | * Spring Framework 5.0.0.RC1 26 | * Spring Boot 2.0.0. SNAPSHOT 27 | * spring-boot-cli-2.0.0.SNAPSHOT-bin.zip 28 | * Rabbit MQ 3.5.6 29 | * FakeSMTP 2.0 30 | * Spring Cloud Dalston RELEASE 31 | * elasticsearch-1.5.2 32 | * kibana-4.0.2-darwin-x64 33 | * logstash-2.1.2 34 | * Docker version (17.03.1-ce) 35 | * Docker Hub 36 | * Mesos version 1.2.0 37 | * Docker version 17.03.1-ce 38 | * Marathon version 3.4.9 39 | 40 | 41 | ## Related Products 42 | * [Learning Spring 5.0](https://www.packtpub.com/application-development/learning-spring-50?utm_source=github&utm_medium=repository&utm_campaign=9781787120341) 43 | 44 | * [Essentials of Spring 5.0 for Developers [Video]](https://www.packtpub.com/application-development/essentials-spring-50-developers-video?utm_source=github&utm_medium=repository&utm_campaign=9781787283893) 45 | 46 | * [Spring 5.0 Recipes](https://www.packtpub.com/application-development/spring-50-recipes?utm_source=github&utm_medium=repository&utm_campaign=9781787128316) 47 | --------------------------------------------------------------------------------