• Complain

Sharma - Mastering Microservices with Java

Here you can read online Sharma - Mastering Microservices with Java full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Birmingham, year: 2016, publisher: Packt Publishing, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Sharma Mastering Microservices with Java
  • Book:
    Mastering Microservices with Java
  • Author:
  • Publisher:
    Packt Publishing
  • Genre:
  • Year:
    2016
  • City:
    Birmingham
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Mastering Microservices with Java: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Mastering Microservices with Java" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Cover; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: A Solution Approach; Evolution of Services; Monolithic architecture overview; Limitation of monolithic architecture versus its solution with Services; One dimension scalability; Release rollback in case of failure; Problems in adopting new technologies; Alignment with Agile practices; Ease of development -- could be done better; Microservices build pipeline; Deployment using a container such as Docker; Containers; Docker; Dockers architecture; Docker container.;Sourabh Sharmas Mastering Microservices with Java allows readers to master the art of implementing microservices in the production environment with ease.

Mastering Microservices with Java — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Mastering Microservices with Java" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Mastering Microservices with Java

Mastering Microservices with Java

Copyright 2016 Packt Publishing

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book.

Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information.

First published: June 2016

Production reference: 1240616

Published by Packt Publishing Ltd.

Livery Place

35 Livery Street

Birmingham B3 2PB, UK.

ISBN 978-1-78528-517-2

www.packtpub.com

Credits

Author

Sourabh Sharma

Reviewer

Guido Grazioli

Commissioning Editor

Veena Pagare

Acquisition Editor

Indrajit Das

Content Development Editor

Arun Nadar

Technical Editor

Tanmayee Patil

Copy Editor

Safis Editing

Project Coordinator

Ritika Manoj

Proofreader

Safis Editing

Indexer

Rekha Nair

Production Coordinator

Manu Joseph

Cover Work

Manu Joseph

About the Author

Sourabh Sharma has more than a decade of experience of product/app development. His expertise lies in developing, deploying, and testing N-tier web applications. He loves to troubleshoot complex problems and look for the best solutions.

In his career, he has successfully developed and delivered various standalone and cloud apps to happy Fortune 500 customers.

Sourabh has also initiated and developed a microservices-based product for his US-based top enterprise product company. He started writing Java programs in his college days, in the late 90s, and he still loves it.

About the Reviewer

Guido Grazioli has worked as an application developer, software architect, and systems integrator for a wide variety of business applications, crossing several domains. He is a hybrid software engineer, with deep knowledge of the Java platform and tooling, as well as Linux system administration. He is particularly interested in SOAs, EIPs, Continuous Integration and Delivery, and service orchestration in the cloud.

www.PacktPub.com
eBooks, discount offers, and more

Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at > for more details.

At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters and receive exclusive discounts and offers on Packt books and eBooks.

httpswww2packtpubcombookssubscriptionpacktlib Do you need instant - photo 1

https://www2.packtpub.com/books/subscription/packtlib

Do you need instant solutions to your IT questions? PacktLib is Packt's online digital book library. Here, you can search, access, and read Packt's entire library of books.

Why subscribe?
  • Fully searchable across every book published by Packt
  • Copy and paste, print, and bookmark content
  • On demand and accessible via a web browser
Preface

Microservices architecture is a style of software architecture. With the introduction of the cloud, enterprise application development moved from monolithic applications to small, lightweight, and process-driven components called microservices. As the name suggests, microservices refers to small services. They are the next big thing in designing scalable, easy-to-maintain applications. It not only makes app development easier but also offers great flexibility to utilize various resources optimally.

This book is a hands-on guide to help you build enterprise-ready implementations of microservices. It also explains the domain-driven design and its adoption in microservices. It teaches you how to build smaller, lighter, and faster services that can be implemented easily in a production environment. It also gives you the complete life cycle of enterprise app development, from designing and developing to deploying, testing, and security.

What this book covers

, A Solution Approach , covers the high-level design of large software projects, the common problems faced in the production environment, and the solutions to the problems.

, Setting Up the Development Environment , teaches you how to set up the development environment, from the IDE and other development tools to different libraries. It deals with creating the basic project up to setting up spring boot configuration to build and develop our first microservice.

, Domain-Driven Design , sets the tone for the rest of the chapters by referring to one sample project. It uses this sample project to drive through different functional and domain combinations of services or apps to explain domain-driven design.

, Implementing a Microservice , takes you from design to implementation of the sample project. It covers not only the coding but also the different aspects of microservicesbuild, unit testing, and packaging. At the end of this chapter, a sample microservice project will be ready for deployment and consumption.

, Deployment and Testing , teaches you how to deploy microservices in different forms, from standalone to a container such as Docker. It will also demonstrate how Docker can be used to deploy our sample project on a cloud service such as AWS. You will also grasp the knowledge of microservices testing using REST Java clients and other tools.

, Securing Microservices , explains how to secure microservices with respect to authentication and authorization. Authentication will be explained using basic authentication and authentication tokens. Similarly, authorization will be explained using Sprint Security. This chapter will also explain the common security problems and their solutions.

, Consuming Services Using a Microservice Web App , explains how to develop a web application (UI) using Knockout, Require, and Bootstrap JS libraries to build the prototype of web application that would consume the microservices to show data and the flow of sample projecta small utility project.

, Best Practices and Common Principles , teaches the best practices and common principles of microservice design. It also provides the details about microservice development using industry practices and examples. This chapter also contains the few examples where microservice implementation goes wrong and how you can avoid such problems.

, Troubleshooting Guide , explains the common problems encountered during the development of microservices and their solutions. This will help you follow the book smoothly and make learning swift.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Mastering Microservices with Java»

Look at similar books to Mastering Microservices with Java. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Mastering Microservices with Java»

Discussion, reviews of the book Mastering Microservices with Java and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.