Webucator Logo
Home
Course Catalog
Training Delivery Methods
Live Online Classes
Private Classes
Self-Paced Training
Enterprise Training
All Training Options
Purchase Courseware
Pricing & Savings
About Us
Sign In
Contact Us
  1-877-932-8228
© 2022 Webucator, Inc. All Rights Reserved.
Courses
Webucator Logo
Browse Courses
SIGN IN
Toggle Contact Dropdown
Contact Us 1-877-932-8228
Toggle More Dropdopwn
Course Catalog Live Online Classes Private Classes Self-Paced Training Enterprise Training All Training Options Pricing & Savings
Purchase Courseware
About Us
  1. Home
  2. Catalog
  3. Spring
  4. Introduction to Spring 5, Spring MVC, and Spring REST
  1. Catalog
  2. Spring

Custom Course

This is a custom course that may have been designed with a specific client (you?) in mind. If you have happened upon this page without being directed here by a Webucator representative and are interested in learning more about the course, please email sales@webucator.com.

Introduction to Spring 5, Spring MVC, and Spring REST

Introduction to Spring 5, Spring MVC, and Spring REST

4.8 out of 5 - Read Testimonials
Course Length: 5 days
Delivery Methods: Available as private class only
Course Overview

Spring 5 provides an evolutionary advance of Spring's powerful capabilities. This course introduces these capabilities, as well as providing guidelines on when and how to use them. It includes coverage of the three main configuration styles: Java-based (@Configuration), annotation-based (@Component), and the traditional XML-based configuration that may still play an important role in existing and new projects.

The course starts with in-depth coverage of Spring's Core module to reduce coupling and increase the flexibility, ease of maintenance, and testing of your applications. It goes on to cover many of the most important capabilities of Spring, including easing configuration with Spring Boot, integrating Hibernate and JPA persistence layers with Spring and Spring Data, and using Spring's declarative transaction capabilities.

The course includes integration of Spring with Java EE Web applications, a solid introduction to Spring MVC, and coverage of building RESTful resources with Spring MVC. It also provides an overview of Springs reactive programming model for repositories and Web resources.

This course is hands on with labs to reinforce all the important concepts. It will enable you to build working Spring applications and give you an understanding of the important concepts and technology in a very short time.

Register Now
Course Benefits
  • Understand the core principles of Spring, and of Dependency Injection (DI) / Inversion of Control
  • Use the Spring Core module and DI to configure and wire application objects (beans) together
  • Know the different types of metadata (XML, annotations/@Component, and Java Configuration/@Configuration), and how and when to use them
  • Understand and use the complete capabilities of the Core module, such as lifecycle events, bean scopes, and the Spring API
  • Use Spring Boot to simplify dependency management and configuration
  • Work with the ORM (Object-Relational Mapping) module to integrate Spring with technologies such as Hibernate or JPA.
  • Use Spring Data to automatically generate JPA-based repository classes
  • Understand and use Spring's transaction support, including the easy-to-use Java annotation support, as well as the tx/aop XML configuration elements
  • Integrate Spring with Java EE Web applications
  • Build Web applications with Spring MVC, including configuration using Java config and Servlet 3 capabilities
  • Understand and use the core capabilities of Spring's Reactive programming support
  • Understand REST, and use Spring MVC to build RESTful services
  • Use Ajax-based front ends with Spring MVC / Spring REST
Course Outline
  1. Introduction to Spring
    1. Overview of Spring Technology
      1. Motivation for Spring, Spring Architecture
      2. The Spring Framework
    2. Spring Introduction
      1. Declaring and Managing Beans
      2. ApplicationContexts - The Spring Container
      3. XML and @Component/@Named Config
    3. Dependencies and Dependency Injection (DI)
      1. Examining Dependencies
      2. Dependency Inversion / Dependency Injection (DI)
      3. DI in Spring - XML and @Autowired
  2. Configuration in Depth
    1. Java Based Configuration (@Configuration)
      1. Overview, @Configuration, @Bean
      2. Dependency Injection
      3. Resolving Dependencies
    2. Integrating Configuration Types
      1. XML and @Component Pros/Cons
      2. @Configuration Pros/Cons
      3. Choosing a Configuration Style
      4. Integrating with @Import and <import>
    3. Bean Scope and Lifecycle
      1. Singleton, Prototype, and Other Scopes
      2. Configuring Scope
      3. Bean Lifecycle / Callbacks
    4. Externalizing Properties
      1. Properties Files
      2. @PropertySource, property-placeholder
      3. Using @Value
      4. SpEL
    5. Profiles
      1. Overview and Configuration
      2. Activating Profiles
  3. Spring Boot Overview
    1. maven and Spring
    2. Spring Boot Structure
    3. Spring POMs with Boot Parents
    4. Spring Boot Starters
    5. Other Capabilities
  4. Spring Testing
    1. Testing and JUnit Overview
      1. Writing Tests - Test Classes, asserts, Naming Conventions
      2. Running Tests - IDE, maven, ...
      3. Test Fixtures - setup and teardown
    2. Spring TestContext Framework
      1. Overview
      2. Configuration
      3. Running Tests
  5. Spring and Spring Data with Hibernate/JPA
    1. Overview of Spring database support
    2. Configuring a DataSource
    3. Using Spring with Hibernate
      1. High Level Hibernate Overview
      2. SessionFactory configuration, LocalSessionFactoryBean
      3. Contextual Sessions and Spring Integration
    4. Using Spring with JPA
      1. Managing the EntityManager (EM)
      2. LocalContainerEntityManagerFactoryBean and Container-managed EMs
      3. JEE and JNDI Lookup of the EM
      4. Configuration and Vendor Adaptors
      5. Creating a JPA Repository/DAO Bean - @PersistenceUnit, @PersistenceContext
    5. Spring Data Overview
      1. Overview and Architecture
      2. Configuring Spring Data
      3. Repositories and JPA Repositories
      4. Using CrudRepository
    6. Using Spring Data
      1. Naming Conventions for Querying
      2. Creating more Complex Queries
      3. Query Configuration
  6. Spring Transaction (TX) Management
    1. Overview
    2. Declarative TX Management (REQUIRED, etc.)
    3. TX Scope and Propagation
    4. Pointcut-based Configuration of Transactions
  7. Spring Web Integration and Intro to Spring MVC
    1. Java EE Web App Integration
    2. ContextLoaderListener and WebApplicationContext
    3. Web MVC Overview
    4. Spring MVC Basics
      1. Configuration and the DispatcherServlet
      2. @Controller, @RequestMapping (Handlers)
      3. @RequestParam and Parameter Binding
      4. View Resolvers
      5. Controller Details - @RequestParam, @PathVariable
      6. Model Data and @ModelAttribute
  8. Additional Spring MVC Capabilities
    1. @ModelAttribute and Reference Data
    2. Forms and Binding, Spring Form Tags
    3. Sessions and @SessionAttributes
    4. Validation / JSR-303
  9. RESTful Services with Spring
    1. REST Overview and Principles
    2. REST and Spring MVC
      1. Spring support for REST
      2. @RequestMapping/@PathVariable, @RequestBody, @ResponseBody
      3. URI Templates and @PathVariable
      4. Controllers with @RestController
    3. Requests and Responses
    4. Ajax Overview
  10. Working with JSON and XML
    1. Generating JSON
      1. JSON Overview
      2. JSON Representations for Resources
      3. Message Converters
    2. Generating XML
      1. JAXB and Jackson Message Converters for XML
      2. JAXB / @XmlRootElement
    3. Content Negotiation
  11. Java Clients for RESTful Services
    1. Client Requirements and Spring's RestTemplate
    2. getForObject() / getForEntity()
    3. Other RestTemplate Methods
    4. Accessing Headers / exchange()
  12. Common REST Patterns
    1. GET: Read
    2. POST: Create
    3. PUT: Update
    4. DELETE: Delete
    5. Programming on server side, and client side (with RestTemplate)
  13. Additional New Features in Spring 5
    1. Updates to Spring Core
    2. WebFlux / Reactive Web Framework
Class Materials

Each student will receive a comprehensive set of materials, including course notes and all the class examples.

Training Options

  • Live Online
  • Self-Paced Courses
  • Customized Onsite
  • Enterprise Solutions
  • All Training Options

Course Catalog

  • Full Catalog
  • Pricing & Savings

About Us

  • Contact Us
  • About Webucator
  • Client Testimonials
  • Client List
  • Privacy Policy
  • In The Community
  • Train for Us
  • Cancellation Policy
  • Make a Payment

Microsoft

  • Microsoft Training
  • Certified Microsoft Course List
  • Software Assurance Training

Resources

  • Newsletter
  • Setup Pages
  • Articles

Courseware

  • Purchase Courseware
© 2004-2022 Webucator, Inc. All Rights Reserved.