Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Spring 5.0 By Example
Spring 5.0 By Example

Spring 5.0 By Example: Grasp the fundamentals of Spring 5.0 to build modern, robust, and scalable Java applications

eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Spring 5.0 By Example

Starting in the Spring World – the CMS Application

Now, we'll create our first application; at this point, we have learned the Spring concepts, and we are ready to put them into practice. At the beginning of this chapter, we'll introduce the Spring dependencies to create a web application, also we know that Spring Initializr is a fantastic project that enables developers to create Spring skeleton projects, with as many dependencies as they want. In this chapter, we will learn how to put up our first Spring application on IDE and command line, expose our first endpoint, understand how this works under the hood, and get to know the main annotations of Spring REST support. We will figure out how to create a service layer for the CMS (Content Management System) application and understand how Dependency Injection works in a Spring container. We will...

Creating the CMS application structure

Now we will create our first application with the Spring Framework; we will create a basic structure for the CMS application with Spring Initializr. This page helps to bootstrap our application, it's a kind of guide which allows us to configure the dependencies on Maven or Gradle. We can also choose the language and version of Spring Boot.

The page looks like this:

In the Project Metadata section, we can put the coordinates for Maven projects; there is a group field which refers to the groupId tag, and we have artifacts which refer to the artifactId. This is all for the Maven coordinates.

The dependencies section enables the configuration of the Spring dependencies, the field has the autocomplete feature and helps developers to put in the correct dependency.

...

Running the application

Before we run the application, let's have a walk through our project structure. 

Open the project on IntelliJ IDEA using the Import Project or Open options (both are similar), the following page will be displayed:

Then we can open or import the pom.xml file.

The following project structure should be displayed:

Open the pom.xml, we have three dependencies, spring-boot-starter-thymeleafspring-boot-starter-webspring-boot-starter-test, and an interesting plugin, spring-boot-maven-plugin.

These starter dependencies are a shortcut for developers because they provide full dependencies for the module. For instance, on the spring-boot-starter-web, there is web-mvc, jackson-databind, hibernate-validator-web, and some others; these dependencies must be on the classpath to run the web applications, and starters...

Creating the REST resources

Now, we have an application up and running in this section, and we will add some REST endpoints and model some initial classes for the CMS application, the REST endpoints will be useful for the AngularJS integration.

One of the required characteristics for the APIs is the documentation, and a popular tool to help us with these tasks is Swagger. The Spring Framework supports Swagger, and we can do it with a couple of annotations. The project's Spring Fox is the correct tool to do this, and we will take a look at the tool in this chapter.

Let's do this.

Models

Before we start to create our class, we will add the Lombok dependency in our project. It is a fantastic library which provides some...

Adding service layer

Now, we have the skeleton for the REST layer ready, and in this section, we will start to create a service layer for our application. We will show how the Dependency Injection works under the hood, learn the stereotype annotations on Spring Framework and also start to think about our persistence storage, which will be presented in the next section.

Changes in the model

We need to make some changes to our model, specifically in the News class. In our business rules, we need to keep our information safe, then we need to review all the news. We will add some methods to add a new review done by a user, and also we will add a method to check if the news was reviewed by all mandatory reviewers...

Integrate with AngularJS

The AngularJS Framework has been becoming a trend for a few years, the community is super active, the project was created by Google.

The main idea of the framework is to help developers handle the complexities of the frontend layer, especially in the HTML part. The HTML markup language is static. It is a great tool to create static documents, but today it is not a requirement for modern web applications. These applications need to be dynamic. The UX teams around the world, work hard to create amazing applications, with different effects, these guys try to keep the applications more comfortable for the users.

AngularJS adds the possibility of extending the HTML with some additional attributes and tags. In this section, we will add some interesting behaviors on the frontend application. Let's do it.

...

Summary

In this chapter, we created our first Spring application. We saw Spring Initializr, the amazing tool that helps developers create the application skeleton.

We looked at how Spring works under the hood and how the framework got configured with a couple of annotations. Now, we have a basic knowledge of the Spring Bootstrap functions, and we can understand the Dependency Injection and component scan features present in the framework.

This knowledge is the basis for the next chapters, and now we are ready to start to work with more advanced features, such as persistence. Here we go. See you in the next chapter.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • • Learn reactive programming by implementing a reactive application with Spring Webflux
  • • Create a robust and scalable messaging application with Spring messaging support
  • • Apply your knowledge to build three real-world projects in Spring

Description

With growing demands, organizations are looking for systems that are robust and scalable. Therefore, the Spring Framework has become the most popular framework for Java development. It not only simplifies software development but also improves developer productivity. This book covers effective ways to develop robust applications in Java using Spring. The book has three parts, where each one covers the building of a comprehensive project in Java and Spring. In the first part, you will construct a CMS Portal using Spring's support for building REST APIs. You will also learn to integrate these APIs with AngularJS and later develop this application in a reactive fashion using Project Reactor, Spring WebFlux, and Spring Data. In the second part, you’ll understand how to build a messaging application, which will consume the Twitter API and perform filtering and transformations. Here, you will also learn about server-sent events and explore Spring’s support for Kotlin, which makes application development quick and efficient. In the last part, you will build a real microservice application using the most important techniques and patterns such as service discovery, circuit breakers, security, data streams, monitoring, and a lot more from this architectural style. By the end of the book, you will be confident about using Spring to build your applications.

Who is this book for?

If you’re a developer starting out with Spring, then this book will help you learn about the new Spring 5.0 framework concepts followed by their implementation in Java and Kotlin. The book will also help experienced Spring developers gain insights into the new features added in Spring 5.0.

What you will learn

  • • Implement REST APIs with Spring REST support
  • • Introduce the Spring Boot and understand how it makes creating robust applications extremely simple
  • • Understand how Spring Data helps us add persistence in MongoDB and SQL databases
  • • Introduce Reactive Programming and use this with Spring Webflux
  • • Implement a Reactive REST client and learn how it can create asynchronous applications
  • • Create a robust, scalable, and fault tolerant application with Spring Messaging
  • • Implement a websocket to add interactive behaviors in your applications
  • • Introduce the Spring Cloud projects

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Feb 26, 2018
Length: 356 pages
Edition : 1st
Language : English
ISBN-13 : 9781788628020
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Feb 26, 2018
Length: 356 pages
Edition : 1st
Language : English
ISBN-13 : 9781788628020
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 110.97
Building RESTful Web Services with Spring 5
€36.99
Spring Boot 2.0 Cookbook
€36.99
Spring 5.0 By Example
€36.99
Total 110.97 Stars icon
Banner background image

Table of Contents

10 Chapters
Journey to the Spring World Chevron down icon Chevron up icon
Starting in the Spring World – the CMS Application Chevron down icon Chevron up icon
Persistence with Spring Data and Reactive Fashion Chevron down icon Chevron up icon
Kotlin Basics and Spring Data Redis Chevron down icon Chevron up icon
Reactive Web Clients Chevron down icon Chevron up icon
Playing with Server-Sent Events Chevron down icon Chevron up icon
Airline Ticket System Chevron down icon Chevron up icon
Circuit Breakers and Security Chevron down icon Chevron up icon
Putting It All Together Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7
(3 Ratings)
5 star 33.3%
4 star 0%
3 star 0%
2 star 33.3%
1 star 33.3%
Daniel de Souza Teixeira Apr 19, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is exactly what I expected. Easy to read and to follow the examples with new Spring features. I highly recommend!
Amazon Verified review Amazon
jay Jun 26, 2019
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
This book is littered with typos, run on sentences, and nonsensical phrasing. I am reading through it in an attempt to get the most I can out of it, but this feels like someone rushed the entire thing. There is valuable information in the book if you have the patience to read it. Was it worth paying for? Not really.
Amazon Verified review Amazon
Java Student Jun 15, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Amazon should not allow this type of books with big and unimplemented content of it. I wish i could my money get back. Not worthy at all.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.