Book Image

Mastering Spring MVC 4

By : Geoffroy Warin
Book Image

Mastering Spring MVC 4

By: Geoffroy Warin

Overview of this book

<p>Spring MVC is the ideal tool to build modern web applications on the server side. With the arrival of Spring Boot, developers can really focus on the code and deliver great value, leveraging the rich Spring ecosystem with minimal configuration.</p> <p>Spring makes it simple to create RESTful applications, interact with social services, communicate with modern databases, secure your system, and make your code modular and easy to test. It is also easy to deploy the result on different cloud providers.</p> <p>Mastering Spring MVC will take you on a journey from developing your own web application to uploading it on the cloud.</p> <p>You begin by generating your own Spring project using Spring Tool suite and Spring Boot.</p> <p>As you develop an advanced-level interactive application that can handle file uploads as well as complex URLs, you will dive into the inner workings of Spring MVC and the principles of modern web architectures.</p> <p>You will then test, secure, and optimize your Spring web application and design RESTful services that will be consumed on the frontend.</p> <p>Finally, when everything is ready, you will release your application on a cloud provider and invite everyone to see.</p>
Table of Contents (17 chapters)
Mastering Spring MVC 4
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

The deployment


Spring Boot provides the ability to run and distribute your Spring application as a simple JAR and is a wonderful success in that regard.

It is, without a doubt, a step in the right direction, but sometimes your web application isn't the only thing you want to deploy.

When dealing with a complex system with multiple servers and datasources, the work of the operation team can become quite a headache.

Docker

Who hasn't heard about Docker? It is the new cool kid in the container world and has become quite a success, thanks to its vibrant community.

The ideas behind Docker are not new, it leverages LinuX Containers (LXC) and cgroups to provide a fully isolated environment for applications to run in.

You can find a tutorial on the Spring website that will guide you through your first steps with Docker at https://spring.io/guides/gs/spring-boot-docker.

Pivotal Cloud Foundry has been using container technology for years in their container manager called Warden. They recently moved to Garden...