Home    |    Instructor-led Training    |    Online Training     
         
 
Courses
ADA
Adobe
Agile
AJAX
Android
Apache
AutoCAD
Big Data
BlockChain
Business Analysis
Business Intelligence
Business Objects
Business Skills
C/C++/Go programming
Cisco
Citrix
Cloud Computing
COBOL
Cognos
ColdFusion
COM/COM+
CompTIA
CORBA
CRM
Crystal Reports
Data Science
Datawarehousing
DB2
Desktop Application Software
DevOps
DNS
Embedded Systems
Google Web Toolkit (GWT)
IPhone
ITIL
Java
JBoss
LDAP
Leadership Development
Lotus
Machine learning/AI
Macintosh
Mainframe programming
Mobile
MultiMedia and design
.NET
NetApp
Networking
New Manager Development
Object oriented analysis and design
OpenVMS
Oracle
Oracle VM
Perl
PHP
PostgreSQL
PowerBuilder
Professional Soft Skills Workshops
Project Management
Rational
Ruby
Sales Performance
SAP
SAS
Security
SharePoint
SOA
Software quality and tools
SQL Server
Sybase
Symantec
Telecommunications
Teradata
Tivoli
Tomcat
Unix/Linux/Solaris/AIX/
HP-UX
Unisys Mainframe
Visual Basic
Visual Foxpro
VMware
Web Development
WebLogic
WebSphere
Websphere MQ (MQSeries)
Windows programming
XML
XML Web Services
Other
Developing RESTful Services with Spring (Version 4.1)
Java Training Overview

This course enables the experienced Java developer to use the Spring MVC framework to create RESTful web services. We begin by developing fluency with the Spring container and configuration practices, and then learn the annotation-driven MVC system for REST controllers. We consider persistence techniques and unit testing to round out the week.

Java Training Learning Objectives
  • Understand the scope, purpose, and architecture of Spring.
  • Use Spring application contexts to declare application components, rather than hard-coding their states and lifecycles.
  • Use dependency injection to further control object relationships from outside the Java code base.
  • Use annotations to take advantage of Spring post-processors for automated bean instantiation and wiring.
  • Configure systems of Spring beans using either Java or XML.
  • Build web applications and RESTful services as a Spring DispatcherServlet and associated application context.
  • Use Spring MVC annotations to map request URLs, methods, content types, and parameters to Java methods, and to bind request data to method parameters.
  • Validate input via HTTP requests, and use exception handlers to produce appropriate HTTP error responses.
  • Build REST clients using Spring's "REST template."
  • Connect REST controllers to persistent stores using Spring for JDBC or JPA.
  • Control transactions either programmatically with TransactionTemplate or declaratively with @Transaction annotations.
  • Use the Spring testing framework for tests of core components, REST controllers, and persistence components.
Java Training Prerequisites
  • Java programming
  • Basic knowledge of XML
Java Training Course duration

5 days

Java Training Course outline

Chapter 1. Overview of Spring
  • Java EE: The Good, The Bad, and the Ugly
  • Enter the Framework
  • Spring Value Proposition
  • The Spring Container
  • Web Applications
  • Persistence Support
  • Aspect-Oriented Programming
  • The Java EE Module(s)
Chapter 2. The Container
  • JavaBeans, Reconsidered
  • The Factory Pattern
  • Inversion of Control
  • XML View: Declaring Beans
  • Java View: Using Beans
  • Singletons and Prototypes
Chapter 3. Instantiation and Configuration
  • Configuring Through Properties
  • Configuration Namespaces
  • The p: Notation
  • Bean (Configuration) Inheritance
  • Configuring Through Constructors
  • Bean Post-Processors
  • Lifecycle Hooks
  • Integrating Existing Factory Code
  • Awareness Interfaces
Chapter 4. Dependency Injection
  • Assembling Object Graphs
  • Dependency Injection
  • Single and Multiple Relationships
  • The Utility Schema
  • Using Spring Expression Language (SpEL)
  • Inner Beans
  • Autowiring
  • @Component, @Service, & Company
  • @Autowired Properties
  • Best Practices with Spring Annotations
  • Java Classes as @Configurations
  • AnnotationConfigApplicationContext
  • Capabilities and Limitations
  • Mixing and Importing XML and Java Configurations
Chapter 5. Assembling Object Models
  • Collections and Maps
  • Support for Generics
  • The Spring Utility Schema (util:)
  • Autowiring to Multiple Beans
  • Order of Instantiation
  • Bean Factory vs. Application Context
Chapter 6. REST Basics
  • The REST Vision
  • Use of HTTP
  • Use of URIs
  • Use of Content Types
  • CRUD Operations and Business Operations
  • Hypermedia, and the Richardson Maturity Model
Chapter 7. The Web Module
  • Servlets and JSPs: What's Missing
  • The MVC Pattern
  • The Front Controller Pattern
  • DispatcherServlet
  • A Request/Response Cycle
  • The Strategy Pattern
  • Web Application Contexts
  • Annotation-Based Handler Mappings
  • @Controller and @RequestMapping
  • "Creating" a Model
  • Entities, Not Views
Chapter 8. Handling Requests
  • Matching URLs
  • Matching Methods
  • Matching Content Types
  • Path Variables
  • Request Parameters
  • Headers and Cookies
  • Injectable Method Parameters
  • Command Objects vs. Entities
  • @RequestBody and @ResponseBody
  • @RestController
  • HttpEntity<T> and ResponseEntity<T>
Chapter 9. Producing Responses
  • Return Types
  • Default Content Types
  • Default Status Codes
  • @ResponseStatus and HttpStatus
  • The produces Element
  • ResponseEntity<T>
  • Binary Content
Chapter 10. Entities and Complex Content
  • Converters and Formatters
  • HttpMessageConverter
  • Using <mvc:annotation-driven />
  • Built-In HttpMessageConverters
  • Working with XML
  • Working with JSON
  • Custom Message Converters
Chapter 11. Generic Services
  • Applying Patterns
  • Generic Service Methods
  • Annotation Inheritance
  • Separation of Concerns
  • CRUD, Sub-Resource, and Business Methods
  • Entity Representations
  • Entity Relationships
Chapter 12. Error Handling and Validation
  • Error Handling for REST Services
  • HandlerException Resolver
  • @ExceptionHandler
  • @ControllerAdvice for Global Handling
  • Validation in Spring MVC
  • Java-EE Bean Validation
  • Configuration
  • Support for @Valid
  • Message Sources and Localization
  • Resolving Error Codes
Chapter 13. Data Representations and Hypermedia
  • Multiple Representations
  • Filtering with @JsonView
  • Handling Object Associations: Embedding
  • Handling Object Associations: Passing IDs
  • Handling Object Associations: Linking
  • Hypermedia
Chapter 14. REST Clients
  • RestTemplate
  • Sending HTTP Requests
  • Translating Entities
  • Reading Responses
  • Error Handlers
Chapter 15. Persistence with JDBC
  • Reducing Code Complexity
  • The DataAccessException Hierarchy
  • JdbcTemplate
  • RowMapper<T> and ResultSetExtractor<T>
  • The DaoSupport Hierarchy
  • Capturing Generated Keys
  • Transaction Control
  • TransactionTemplate
  • Isolation Levels
  • Transaction Propagation
Chapter 16. Persistence with JPA
  • Object/Relational Mapping
  • The Java Persistence API
  • JpaDaoSupport and JpaTemplate
  • @PersistenceUnit and @PersistenceContext
  • Shared Entity Managers
  • Using <tx:annotation-driven>
  • The @Transaction Annotation
  • Isolation and Propagation
  • A Limitation of @Transactional
  • Understanding Entity States
  • Bean Validation in JPA
  • Optimistic Locking
  • Bi-Directional Associations and Serialization
  • Using @XmlTransient
  • Using @JsonView
Chapter 17. Testing
  • Testability of Spring Applications
  • Dependency Injection
  • Mocking
  • SpringJUnit4ClassRunner
  • TestContext
  • @ContextConfiguration
  • Mocking Spring MVC
  • Building Requests
  • Checking Content
  • xpath() and jsonPath()
  • Profiles
  • Testing Persistence Components
System Requirements

Hardware Requirements (Minimum)
  • Core i5, 1.8 GHz, 4 gig RAM, 1 gig disk space.
Hardware Requirements (Recommended)
  • Core i5, 2.8 GHz GHz, 8 gig RAM, 1 gig disk space.
Operating System
  • ested on Windows 7/8, Mac OS 10.8.5.
Network and Security
  • Limited privileges required
Software Requirements
  • All free downloadable tools.

Please contact your training representative for more details on having this course delivered onsite or online

Training Outlines - the one stop shopping center for IT training.
© Training Outlines All rights reserved