Skip to content

PacktPublishing/Learning-Spring-5.0

Repository files navigation

Learning Spring 5.0

This is the code repository for Learning Spring 5.0, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Beginning with an introduction to Spring and setting up the environment, the book will teach you in detail about the Bean life cycle and help you discover the power of wiring for dependency injection. Gradually, you will learn the core elements of Aspect-Oriented Programming and how to work with Spring MVC and then understand how to link to the database and persist data configuring ORM, using Hibernate.

Instructions and Navigation

The code for Chapter 05 is organized into one folder, Chapter05 and the rest in one separate folder.

The code will look like the following:

public static void main(String[] args) {
  // TODO Auto-generated method stub
  RestTemplate template=new RestTemplate();
  Book book= template.getForObject(
    "http://localhost:8081/Ch09_Spring_Rest_JDBC/books/14", Book.class);
  System.out.println(book.getAuthor()+"\t"+book.getISBN());
}

Related Products

About

Learning Spring 5.0, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •