in samenwerking met
-
Inloggen
-- Inloggen
  • accountoverzicht
  • bestellingen
  • facturen betalen
  • downloadcentrum
  • gegevens
  • financieel
  • inloggen
  • uitloggen

Uw winkelwagen

Naar winkelwagen Verder winkelen
Titel niet gevonden? Wij gaan voor u op zoek!
Vul onderstaand formulier zo volledig mogelijk in, dan gaan wij voor u op zoek.
Vul onderstaand formulier zo volledig mogelijk in.
Alle rubrieken
Alle boeken
  • Cadeauboeken
  • Computer & Informatica
  • Economie
  • Filosofie
  • Flora en fauna
  • Geneeskunde
  • Geschiedenis
  • Gezondheid
  • Jeugd
  • Koken en eten
  • Kunst en cultuur
  • Literatuur en romans
  • Management
  • Mens en maatschappij
  • Naslagwerken
  • Non-fictie informatief/professioneel
  • Paramedisch
  • Psychologie
  • Reizen
  • Religie
  • Schoolboeken
  • Spiritualiteit
  • Sport, hobby, lifestyle
  • Thrillers en spanning
  • Wetenschap en techniek
  • Woordenboeken en taal
010-4091943
Klantenservice
Mijn account
Mijn bestellingen
010-4091943
Boeken IT-management / ICT Enterprise Microservices
Enterprise Microservices
Ken Finnigan

Ken Finnigan has worked as an engineer and consultant for nearly 20 years. He currently co-leads the development of WildFly Swarm for Red Hat.

Meer over Ken Finnigan
Ken Finnigan

Enterprise Microservices

Specificaties
Paperback, 272 blz. | Engels
Manning Publications | 1e druk, 2019
ISBN13: 9781617294242
Rubricering
Manning Publications 1e druk, 2019 9781617294242
Verwachte levertijd ongeveer 9 werkdagen
59,74
In winkelwagen
 
Stel een vraag over dit boek
Samenvatting Specificaties Over de auteur Inhoudsopgave

Samenvatting

Microservices break down a large application into smaller components, each interacting with each other to create a united whole. As each component can start, stop, and scale independently, so the whole system benefits from better fault-tolerance and resilience.

Enterprise Java Microservices is an example-rich tutorial that shows readers how to design and manage large-scale Java applications as a collection of microservices.

Key features
- The microservices mental model
- Fault tolerance with Netflix Hystrix
- Securing your microservices
- Deploying to the cloud

This book is for Java developers familiar with distributed n-tier application architecture.

Enterprise Java is a set of APIs, and their implementations, that can provide the entire stack of an application from UI down to the database, communicate with external applications via webservices, and integrate with internal legacy systems, to name a few, with the goal of supporting the business requirements of an Enterprise.

Trefwoorden

microservices   java ee   cloud native   programmeren   gedistribueerde architectuur   rest   fault tolerance   thorntail   service discovery   beveiligen   monoliet   jax-rs   kafka   testen   spring boot   keycloak   hystrix   openshift   domain driven design   microprofile   payara micro   dropwizard   continuous integration   containerisatie   circuit breaker   bulkhead pattern  

Trefwoorden

Specificaties

ISBN13:9781617294242
Taal:Engels
Bindwijze:paperback
Aantal pagina's:272
Uitgever:Manning Publications
Druk:1
Verschijningsdatum:25-1-2019
Hoofdrubriek:IT-management / ICT

Over Ken Finnigan

Ken Finnigan has worked as an engineer and consultant for nearly 20 years. He currently co-leads the development of WildFly Swarm for Red Hat.

Andere boeken door Ken Finnigan

Bekijk alle boeken

Inhoudsopgave

U kunt van deze inhoudsopgave een PDF downloaden

PART 1: MICROSERVICES BASICS
1 ENTERPRISE JAVA MICROSERVICES
1.1 Enterprise Java pitfalls
1.1.1 What is Enterprise Java?
1.1.2 Typical Enterprise Java Architecture
1.1.3 What is a Monolith?
1.1.4 What are the problems associated with monoliths?
1.2 Microservices and Distributed Architecture
1.2.1 Do One Thing Well
1.2.2 What is a Distributed Architecture?
1.2.3 Why should I care about being Distributed?
1.2.4 What can be done to assist in developing microservices?
1.2.5 Product over Project
1.2.6 Continuous integration and delivery
1.3 Patterns for migration to microservices
1.3.1 Domain Driven Design
1.3.2 Big Bang Pattern
1.3.3 Strangler Pattern
1.3.4 Hybrid Pattern
1.4 What are Enterprise Java microservices?
1.4.1 Why Enterprise Java is a good fit for microservices
Summary

2 DEVELOPING A SIMPLE RESTFUL MICROSERVICE
2.1 Cayambe Monolith
2.2 New administration site
2.2.1 Use cases
2.2.2 Architecture of the application
2.2.3 Creating RESTFul endpoints with JAX-RS
2.2.4 Running it
Summary

3 JUST ENOUGH APPLICATION SERVER FOR MICROSERVICES
3.1 Just enough Application Server
3.1.1 3.1.1 What does JeAS mean?
3.1.2 What are the benefits?
3.1.3 Eclipse MicroProfile
3.2 Choosing Just enough Application Server
3.2.1 Beach Vacation example application
3.2.2 Dropwizard — The Original Opinionated microservice runtime
3.2.3 Payara Micro — Slimmed Java EE App Server in a Jar
3.2.4 Spring Boot — Opinionated Spring microservices
3.2.5 Thorntail — The most flexible JeAS runtime
3.2.6 How do they compare?
Summary

4 MICROSERVICE TESTING
4.1 What type of testing do we need?
4.2 Unit testing
4.3 What is immutability?
4.4 Integration Testing
4.5 Consumer Driven Contract Testing
4.6 Additional Reading
4.7 Additional Exercises
Summary

5 CLOUD NATIVE DEVELOPMENT
5.1 What is Cloud anyway?
5.2 Service Models
5.3 Cloud Native Development
5.4 Deploying to the Cloud
5.5 Starting Minishift
5.6 Microservice Cloud deployment
5.7 Testing in the Cloud
5.8 Additional Exercises
Summary

PART 2: IMPLEMENTING ENTERPRISE JAVA MICROSERVICES
6 CONSUMING MICROSERVICES
6.1 Consuming a microservice with a Java Client Library
6.1.1 java.net
6.1.2 Apache HttpClient
6.2 Consuming a microservice with a JAX-RS Client Library
6.2.1 JAX-RS Client
6.2.2 RESTEasy Client
Summary

7 DISCOVERING MICROSERVICES FOR CONSUMPTION
7.1 Why does a microservice need to be discovered?
7.1.1 What is Service Discovery?
7.1.2 What are the benefits of Service Discovery and a Registry?
7.1.3 Stateless vs Stateful microservices
7.1.4 What is Netflix Ribbon?
7.2 Registering a microservice with Thorntail
7.2.1 Thorntail’s Topologies
7.2.2 Registering a microservice with a Topology
7.3 Consuming a registered microservice with Thorntail
7.3.1 Service lookup with Netflix Ribbon
7.3.2 Service lookup with RESTEasy Client
Summary

8 STRATEGIES FOR FAULT TOLERANCE AND MONITORING
8.1 Microservice Failures in a Distributed Architecture
8.2 Network Failures
8.3 Mitigating Against Failures
8.3.1 What is Hystrix?
8.3.2 Circuit Breakers
8.3.3 Bulkheads
8.3.4 Fallbacks
8.3.5 Request caching
8.3.6 Putting it all together
8.3.7 Hystrix Dashboard
8.4 Adding Hystrix to our Payment microservice
8.4.1 Hystrix with RESTEasy Client
8.4.2 Hystrix with Ribbon Client
Summary

9 SECURING A MICROSERVICE
9.1 Importance of Securing microservice
9.1.1 Why is Security Important?
9.1.2 What does it need to solve?
9.2 Working with Keycloak
9.2.1 Understanding Keycloak’s features
9.2.2 Setting up Keycloak
9.3 Securing Stripe microservice
9.3.1 Configuring Keycloak
9.3.2 Securing the Stripe resource
9.3.3 Authenticating in the Payment resource
9.3.4 Testing your secured microservice
9.4 Capturing user authentication
9.4.1 Configuring Keycloak
9.4.2 Securing category deletion
9.4.3 Authenticating the user in a UI
9.4.4 Testing that the new UI and service all work
Summary

10 ARCHITECTING A MICROSERVICE HYBRID
10.1 The Cayambe monolith
10.2 Running the Cayambe monolith
10.2.1 Database setup
10.2.2 WildFly setup
10.2.3 Running Cayambe
10.3 Cayambe hybrid—monolith with microservices
10.3.1 Integrating Payment microservice
10.3.2 Integrating Admin microservice
10.3.3 New administration UI
10.3.4 Cayambe hybrid summary
10.4 Deploying everything to a Hybrid Cloud
10.4.1 Database
10.4.2 Security
10.4.3 Microservices
10.4.4 Cayambe hybrid
10.4.5 Cayambe EAR
10.4.6 Admin UI
Summary

11 DATA STREAMING WITH APACHE KAFKA
11.1 What can Apache Kafka do for you?
11.1.1 Data Streaming
11.1.2 Apache Kafka
11.2 Simplifying your monolith architecture with streaming
11.3 Deploying and using Kafka for data streaming
11.3.1 Kafka on OpenShift
11.3.2 Admin microservice
11.3.3 Kafka consumer
11.4 Additional exercises
Summary

APPENDIXES
APPENDIX A: SPRING BOOT MICROSERVICES

Anderen die dit boek kochten, kochten ook

  • Reactive Systems in Java
    Clement Escoffier
    Reactive Systems in Java
    € 91,29
  • Kubernetes Native Microservices with Quarkus, and MicroProfile
    John Clingan
    Kubernetes Native Microservices with Quarkus, and MicroProfile
    € 70,54
  • AI voor iedereen
    Erdinç Saçan
    AI voor iedereen
    € 34,99
  • Bestuurlijke informatievoorziening
    Willem Leijnse
    Bestuurlijke informatievoorziening
    € 72,95
  • ArchiMate® 3.2 Specification
    The Open Group
    ArchiMate® 3.2 Specification
    € 49,00
  • AI Agents
    Job van den Berg
    AI Agents
    € 34,95

Rubrieken

Uw cookie-instellingen
Deze website maakt gebruik van verschillende soorten cookies. Sommige cookies worden geplaatst door diensten van derden die op onze pagina's worden weergegeven. Om deze externe content te kunnen tonen is nodig dat u toestemming geeft voor het zetten van persoonlijke en marketingcookies. U kunt uw toestemming op elk moment wijzigen of intrekken. In onze cookieverklaring vindt u meer informatie.

Functionele cookies
Deze zijn noodzakelijk voor de werking van de website, zonder deze cookies kan de website niet naar behoren werken.

Persoonlijke en marketingcookies
Wij gebruiken cookies voor statistieken om bij te houden en rapportages te krijgen over hoe bezoekers de website gebruiken. Zo kunnen wij onze website verbeteren. Marketingcookies worden gebruikt om bezoekers te volgen wanneer ze verschillende websites bezoeken. Hun doel is advertenties weergeven die zijn toegesneden op en relevant zijn voor de individuele gebruiker.
Gratis verzending – 5% korting bij 2 of meer Nederlandse boeken – 10% korting op buitenlandse boeken

Klantenservice

Contact Voorwaarden

Bestellen en retourneren
DE STUDIEBOEKHANDEL VOOR HANZEHOGESCHOOL
Algemene voorwaarden Privacy Cookies Service & Contact
© 2025 Wristers Boekverkopers BV

Populaire producten

    Personen

      Trefwoorden

        Enterprise Microservices

        Enterprise Microservices
        Ken Finnigan
        /
        loader
        Recensiebeleid
        Noordhoff terugkoopgarantie

        Noordhoff koopt jouw boek terug, zonder zorgen!

        Heb je jouw boeken niet meer nodig?

        Als je jouw studieboeken gekocht hebt bij hanzestudybook.nl, kun je geselecteerde titels moeiteloos terugverkopen aan Noordhoff. Geen vragen, geen gedoe en lekker duurzaam.

        Volledige informatie op Noordhoff.nl

        AI-book

        Wat is een AI-book?

        Een AI-book is niet een boek dat geschreven is door AI maar een boek dat verrijkt is met AI. Het maakt de inhoud van een boek interactief via WhatsApp, zodat je ermee kunt chatten. Zie het als een razend slimme assistent die het boek perfect begrijpt en er alles uit onthouden heeft. Jij kunt deze assistent alles vragen. Vraag bijvoorbeeld hoe je iets kunt toepassen op jouw persoonlijke situatie, om een korte samenvatting, of wat de belangrijkste inzichten zijn. AI-books zijn alleen te gebruiken via WhatsApp, je hoeft er geen aparte app voor te installeren.
        Meer informatie over AI-books

        ?

        Geef uw beoordeling

        Enterprise Microservices

        Verwijder uw beoordeling