Spring Boot Cookbook
eBook - ePub

Spring Boot Cookbook

Alex Antonov

Compartir libro
  1. 206 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Spring Boot Cookbook

Alex Antonov

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

Over 35 recipes to help you build, test, and run Spring applications using Spring Boot

About This Book

  • Learn to create different types of Spring Boot applications, configure behavior, and add custom components
  • Become more efficient in testing, deploying, and monitoring Spring Boot based applications
  • This is a practical guide that will help Spring developers to develop and deploy applications using Spring Boot

Who This Book Is For

If you are a Spring Developer who has good knowledge level and understanding of Spring Boot and application development and now want to learn efficient Spring Boot development techniques in order to make the existing development process more efficient, then this book is for you.

What You Will Learn

  • Create Spring Boot applications from scratch
  • Configure and tune web applications and containers
  • Create custom Spring Boot auto-configurations and starters
  • Use Spring Boot Test framework with JUnit, Cucumber, and Spock
  • Configure and tune web applications and containers
  • Deploy Spring Boot as self-starting executables and Docker containers
  • Monitor data using DropWizard, Graphite, and Dashing

In Detail

Spring Boot is Spring's convention-over-configuration solution. This feature makes it easy to create Spring applications and services with absolute minimum fuss. Spring Boot has the great ability to be customized and enhanced, and is specifically designed to simplify development of a new Spring application.

This book will provide many detailed insights about the inner workings of Spring Boot, as well as tips and recipes to integrate the third-party frameworks and components needed to build complex enterprise-scale applications.

The book starts with an overview of the important and useful Spring Boot starters that are included in the framework, and teaches you to create and add custom Servlet Filters, Interceptors, Converters, Formatters, and PropertyEditors to a Spring Boot web application. Next it will cover configuring custom routing rules and patterns, adding additional static asset paths, and adding and modifying servlet container connectors and other properties such as enabling SSL.

Moving on, the book will teach you how to create custom Spring Boot Starters, and explore different techniques to test Spring Boot applications. Next, the book will show you examples of configuring your build to produce Docker images and self-executing binary files for Linux/OSX environments.

Finally, the book will teach you how to create custom health indicators, and access monitoring data via HTTP and JMX.

Style and approach

This book is a cohesive collection of recipes that provide developers with a set of connected guidelines on how to build, configure, and customize their application, starting from the design and development stages, all the way through testing, deployment, and production monitoring.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Spring Boot Cookbook un PDF/ePUB en línea?
Sí, puedes acceder a Spring Boot Cookbook de Alex Antonov en formato PDF o ePUB, así como a otros libros populares de Informatique y Programmation en Java. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2015
ISBN
9781785284151
Edición
1
Categoría
Informatique

Spring Boot Cookbook


Table of Contents

Spring Boot Cookbook
Credits
About the Author
Acknowledgment
About the Reviewers
www.PacktPub.com
Support files, eBooks, discount offers, and more
Why Subscribe?
Free Access for Packt account holders
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Downloading the example code
Errata
Piracy
Questions
1. Getting Started with Spring Boot
Introduction
Using a Spring Boot template and starters
How to do it…
How it works…
Creating a simple application
How to do it…
How it works…
Launching an application using Gradle
How to do it…
How it works…
Using the command-line runners
How to do it…
How it works…
Setting up a database connection
Getting ready
How to do it…
How it works…
Setting up a data repository service
How to do it…
How it works…
Scheduling executors
Getting ready
How to do it…
How it works…
2. Configuring Web Applications
Creating a basic RESTful application
How to do it…
How it works…
Creating a Spring Data REST service
How to do it…
How it works…
Configuring custom servlet filters
How to do it…
How it works…
Configuring custom interceptors
How to do it…
How it works…
Configuring custom HttpMessageConverters
How to do it…
How it works…
Configuring custom PropertyEditors
How to do it…
How it works…
Configuring custom type Formatters
How to do it…
How it works…
3. Web Framework Behavior Tuning
Introduction
Configuring route matching patterns
How to do it…
How it works…
Configuring custom static path mappings
How to do it…
How it works…
Tuning Tomcat via EmbeddedServletContainerCustomizer
How to do it…
How it works…
Choosing embedded servlet containers
How to do it…
How it works…
Adding custom connectors
Getting ready
How to do it…
How it works…
4. Writing Custom Spring Boot Starters
Introduction
Understanding Spring Boot autoconfiguration
How to do it…
How it works…
Creating a custom Spring Boot autoconfiguration starter
How to do it…
How it works…
Configuring custom conditional bean instantiations
How to do it…
How it works…
Using custom @Enable* annotations to toggle configurations
How to do it…
How it works…
5. Application Testing
Introduction
Creating tests for Spring MVC Controllers
How to do it…
How it works…
Automatically configuring the database schema and populating it with data
How to do it…
How it works…
Initializing the database with Spring JPA and Hibernate
Initializing the database with Spring JDBC
Creating tests using in-memory database with data fixtures
How to do it…
How it works…
Creating tests using Mockito to mock DB
How to do it…
How it works…
Writing tests using Cucumber
How to do it…
How it works…
Writing tests using Spock
How to do it…
How it works…
6. Application Packaging and Deployment
Introduction
Creating a Spring Boot executable JAR
How to do it…
How it works…
Creating Docker images
How to do it…
How it works…
Building self-executing binaries
Getting ready
How to do it…
How it works…
Spring Boot environment config hierarchy and precedence
How to do it…
How it works…
Externalizing environmental config using property files
How to do it…
How it works…
Externalizing environmental config using environment variables
How to do it…
How it works…
Externalizing environmental config using Java system properties
How to do it…
How it works…
Setting up Consul
How to do it…
How it works…
Externalizing environmental config using Consul and envconsul
Getting ready
How to do it…
How it works…
7. Health Monitoring and Data Visualization
Introduction
Writing custom health indicators
How to do it…
How it works…
Emitting metrics
Getting ready
How to do it…
How it works…
Monitoring Spring Boot via JMX
Getting ready
How to do it…
How it works…
Management of Spring Boot via CRaSH and writing custom remote shell commands
How to do it…
How it works…
Integrating Codahale/Dropwizard metrics with Graphite
Getting ready
How to do it…
How it works…
Integrating Codahale/Dropwizard metrics with Dashing
Getting ready
How to do it…
How it works…
Index

Spring Boot Cookbook

Copyright © 2015 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: September 2015
Production reference: 1240915
Published by Packt Publishing Ltd.
Livery Place
35 Livery Street
Birmingham B3 2PB, UK.
ISBN 978-1-78528-415-1
www.packtpub.com

Credits

Author
Alex Antonov
Reviewers
Theo Pack
Eric Pirard
Geoffroy Warin
Ricky Yim
Commissioning Editor
Dipali Goankar
Acquisition Editor
Sonali Vernekar
Content Development Editor
Shweta Pant
Technical Editor
Bharat Patil
Copy Editor
Tasneem Fatehi
Project Coordinator
Shipra Chawhan
Proofreader
Safis Editing
Indexer
Monica Ajmera Mehta
Production Coordinator
Arvindkumar Gupta
Cover Work
Arvindkumar Gupta

About the Author

Alex Antonov is a very passionate technologist with a hunger to learn new tools, languages, techniques, and concepts behind enterprise application design. His specialty lies in designing highly scalable distributed large-scale enterprise systems, which he has been successfully doing for the last 12 years. He is also a frequent presenter on the topics of architecture and design at conferences such as UberConf, JavaOne, and Spring 2GX.
Alex joined Orbitz Worldwide in 2004, and in his current role of Senior Principal Engineer, he is responsible for providing technical leadership and guidance in the development of foundational technologies, core libraries, and APIs for enterprise-wide use, as well as establishing and maintaining common design principles and standards used within the company and integration of new software development practices within the development community. He has extensive experience in enterprise architecture designing distributed systems, and spends a lot of time doing object domain modeling and focusing on domain-driven design and behavior-driven development and testing. Prior to that, Alex was a lead engineer in the same team that was responsible for web application frameworks and developing common practices and additional functionality on top of Spring MVC and Webflow.
He has ...

Índice