Core Spring 4

Schedule

Start End Duration Location Details

Course Details

Core Spring 4

Duration: 3 Days

Prerequisite:

Java SE programming experience and an understanding of object-oriented design principles. Fundamental knowledge of XML is helpful but not required. HOTT's course Java Programming or equivalent knowledge provides a solid foundation.

Course Description:

This course introduces the techniques for using the powerful capabilities of Spring 4 including 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. It also provides guidelines for when and how to use each one.

The course starts with in-depth coverage on using the powerful capabilities of Spring's Core module to reduce coupling and increase the flexibility, ease of maintenance, and testing of your applications. Coverage also includes integrating persistence layers (e.g. Hibernate/JPA) with Spring, using Spring's powerful Aspect Oriented Programming (AOP) to program cross-cutting concerns in a safe and maintainable way and using Spring's declarative transaction capabilities. It also covers integration of Spring with Java EE Web applications.

This course will enable you to build working Spring applications and give you an understanding of the important concepts and technology. Comprehensive hands-on labs provide reinforcement of the topics covered in the course and practical experience deploying solutions.

Course Objectives:

•    Understanding the core principles of Spring and of Dependency Injection (DI) / Inversion of Control
•    Using the Spring Core module and DI to configure and wire application objects (beans) together
•    Knowing the different types of metadata (XML, annotations/@Component, and Java Configuration/@Configuration) and how and when to use them
•    Understanding and using the complete capabilities of the Core module, such as lifecycle events, bean scopes and the Spring API
•    Working with the ORM (Object-Relational Mapping) module to integrate Spring with technologies such as Hibernate or JPA
•    Understanding and using Spring's powerful AOP capabilities for programming cross-cutting concerns across multiple points in an application
•    Learning safe and maintainable techniques for programming with AOP
•    Understanding and using Spring's transaction support, including the easy-to-use Java annotation support, as well as the tx/aop XML configuration elements
•    Integrating Spring with Java EE Web applications

Course Outline:

Introduction to Spring
•    Overview of Spring Technology
? Challenges for Modern Applications
? Motivation for Spring, Spring Architecture
? The Spring Framework

•    Spring Introduction
? Managing Beans
? Inversion of Control / IoC, Dependency Injection / DI
? Configuration Metadata Overview, Configuring Beans (XML)

•    The Spring Container
? Overview of the Spring Container
? ApplicationContext Overview
? ClassPathXmlApplicationContext, FileSystemXmlApplicationContext, AnnotationConfigApplicationContext
? API and Usage

•    Dependencies and Dependency Injection (DI)
? Examining Dependencies
? Dependency Inversion
? Configuration and Usage of Dependency Injection (DI) in Spring

Wiring in Depth

•    Value Injection
? Configuring Value Properties
? Property Conversions
? Externalizing Values in Properties Files

•    Constructor Injection
? Constructor Injection Overview
? Configuration - @Configuration and XML
? p: and c: namespaces for XML configuration

•    Qualifiers / Domain Specific Language (DSL)
? Limitations of Autowiring
? Qualifiers and DSL
? Creating and Using an Annotation-Based DSL for Bean Configuration
? Benefits of Qualifiers for Bean Configuration

•    Profiles
? Profiles Overview
? Configuring Profiles (XML and @Configuration)
? Activating Profiles

•    Overview of SpEL

Aspect Oriented Programming (AOP)

•    Overview of AOP
? Crosscutting Concerns
? AOP Basics, Aspect, Joinpoint, Advice, Pointcut

•    Spring AOP Introduction
? Configuration - XML and @AspectJ
? Defining an Aspect, Pointcut, and Advice
? How Advice is Triggered

•    Pointcut Expressions and Advice
? Pointcut Expression Overview
? The execution() Designator
? Other Designators (within, target, args, @target, ...)
? Kinds of Advice - before, after, around, after-returning, after-throwing

•    Marker Annotations (Rubber Stamp AOP)
? Issue with AOP Configuration
? Defining an AOP Marker / Rubber Stamp
? Configuring AOP Using a Marker
? Advantages of Marker Annotations

•    @AspectJ Based AOP Support
? @AspectJ Annotations Overview
? Defining an Aspect, Pointcut, and Advice

•    Other Considerations
? Spring AOP Proxies and Self-Invocation Issues
? Load-Time Weaving
? Caveats of AOP

Web Applications with Spring

•    Integrating Spring with Java EE Web Apps
•    ContextLoaderListener
•    WebApplicationContext
•    Using Spring Beans in Wep App Controller Logic