没有合适的资源?快使用搜索试试~ 我知道了~
首页Learn Microservices with Spring Boot 2017
Learn Microservices with Spring Boot 2017
需积分: 9 59 浏览量
更新于2023-03-16
评论
收藏 5.1MB PDF 举报
Microservices are getting very popular these days. It’s not a surprise; this software architecture style has a lot of advantages, like flexibility and ease of scale. Mapping them into small teams in an organization also gives you a lot of efficiency in development. However, going on the adventure of microservices knowing only the benefits is a wrong call: you need to know what you are facing and be prepared for that in advance. You can get a lot of knowledge from many books and articles on the Internet but, when you get hands-on code, the story changes.
资源详情
资源评论
资源推荐

Learn Microservices with Spring Boot: A Practical Approach to
RESTful Services using RabbitMQ, Eureka, Ribbon, Zuul and Cucumber
ISBN-13 (pbk): 978-1-4842-3164-7 ISBN-13 (electronic): 978-1-4842-3165-4
https://doi.org/10.1007/978-1-4842-3165-4
Library of Congress Control Number: 2017962334
Copyright © 2017 by Moises Macero
is work is subject to copyright. All rights are reserved by the Publisher, whether the whole or
part of the material is concerned, specically the rights of translation, reprinting, reuse of
illustrations, recitation, broadcasting, reproduction on microlms or in any other physical way,
and transmission or information storage and retrieval, electronic adaptation, computer software,
or by similar or dissimilar methodology now known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark
symbol with every occurrence of a trademarked name, logo, or image we use the names, logos,
and images only in an editorial fashion and to the benet of the trademark owner, with no
intention of infringement of the trademark.
e use in this publication of trade names, trademarks, service marks, and similar terms, even if
they are not identied as such, is not to be taken as an expression of opinion as to whether or not
they are subject to proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of
publication, neither the authors nor the editors nor the publisher can accept any legal
responsibility for any errors or omissions that may be made. e publisher makes no warranty,
express or implied, with respect to the material contained herein.
Cover image by Freepik (www.freepik.com)
Managing Director: Welmoed Spahr
Editorial Director: Todd Green
Acquisitions Editor: Steve Anglin
Development Editor: Matthew Moodie
Technical Reviewer: Manuel Jordan Elera
Coordinating Editor: Mark Powers
Copy Editor: Kezia Endsley
Distributed to the book trade worldwide by Springer Science+Business Media NewYork,
233 Spring Street, 6th Floor, NewYork, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505,
e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a
California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc
(SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.
For information on translations, please e-mail rights@apress.com, or visit
http://www.apress.com/rights-permissions.
Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook
versions and licenses are also available for most titles. For more information, reference our Print
and eBook Bulk Sales web page at http://www.apress.com/bulk-sales.
Any source code or other supplementary material referenced by the author in this book is
available to readers on GitHub via the book’s product page, located at www.apress.com/
9781484231647. For more detailed information, please visit http://www.apress.com/
source-code.
Printed on acid-free paper
MoisesMacero
New York, USA
www.allitebooks.com

iii
About the Author ���������������������������������������������������������������������������������ix
About the Technical Reviewer �������������������������������������������������������������xi
Table of Contents
Chapter 1: Introduction�������������������������������������������������������������������������1
Setting theScene ��������������������������������������������������������������������������������������������������1
Who Are You? ��������������������������������������������������������������������������������������������������������2
How Is This Book Different fromOther Books andGuides? ����������������������������������3
Reasoning Behind theTechniques ������������������������������������������������������������������3
Learning: AnIncremental Process ������������������������������������������������������������������� 4
Is This aGuide or aBook? �������������������������������������������������������������������������������4
Contents ���������������������������������������������������������������������������������������������������������������� 5
From theBasics toAdvanced Topics ��������������������������������������������������������������� 5
Skeleton withSpring Boot, theProfessional Way �������������������������������������������� 5
Test-Driven Development ��������������������������������������������������������������������������������6
Connecting Microservices �������������������������������������������������������������������������������6
Event-Driven System ��������������������������������������������������������������������������������������� 6
End-to-End Testing ������������������������������������������������������������������������������������������7
Summary���������������������������������������������������������������������������������������������������������������7
www.allitebooks.com

iv
Chapter 2: The Basic Spring Boot Application ��������������������������������������9
Business Requirements ����������������������������������������������������������������������������������������9
The Skeleton App ������������������������������������������������������������������������������������������������10
Skinny vs� Real-Life Apps ������������������������������������������������������������������������������ 10
Creating theSkeleton ������������������������������������������������������������������������������������11
Warming Up: Some TDD inAction �����������������������������������������������������������������������13
Summary�������������������������������������������������������������������������������������������������������������21
Chapter 3: A Real Three- Tier Spring Boot Application ������������������������23
Introduction ���������������������������������������������������������������������������������������������������������23
Completing theBasics ����������������������������������������������������������������������������������������26
Designing theDomain �����������������������������������������������������������������������������������������33
The Business Logic Layer �����������������������������������������������������������������������������������38
The Presentation Layer (REST API) ����������������������������������������������������������������������41
The Multiplication Controller �������������������������������������������������������������������������43
The Results Controller �����������������������������������������������������������������������������������48
The Frontend (Web Client) �����������������������������������������������������������������������������������53
Playing withtheApplication (Part I) �������������������������������������������������������������������� 58
New Requirements forData Persistence ������������������������������������������������������������59
Refactoring theCode ������������������������������������������������������������������������������������������63
The Data Layer ����������������������������������������������������������������������������������������������������68
The Data Model ���������������������������������������������������������������������������������������������71
The Repositories ��������������������������������������������������������������������������������������������77
Completing User Story 2: Going ThroughtheLayers�������������������������������������������87
Playing withtheApplication (Part II) ������������������������������������������������������������������� 94
Summary�������������������������������������������������������������������������������������������������������������97
Table of ConTenTsTable of ConTenTs
www.allitebooks.com
剩余336页未读,继续阅读
安全验证
文档复制为VIP权益,开通VIP直接复制

评论0