$2,050.00
Duration | Three Days |
Description
Duration: 3 Days
Description
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 course.
Learning Objectives
- 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.
Prerequisites
- Understanding of Spring Core – Spring Framework Core is excellent preparation.
- Basic knowledge of XML
Course Outline
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
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
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>
Producing Responses
- Return Types
- Default Content Types
- Default Status Codes
- @ResponseStatus and HttpStatus
- The produces Element
- ResponseEntity<T>
- Binary Content
Entities and Complex Content
- Converters and Formatters
- HttpMessageConverter
- Using <mvc:annotation-driven />
- Built-In HttpMessageConverters
- Working with XML
- Working with JSON
- Custom Message Converters
Generic Services
- Applying Patterns
- Generic Service Methods
- Annotation Inheritance
- Separation of Concerns
- CRUD, Sub-Resource, and Business Methods
- Entity Representations
- Entity Relationships
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
Data Representations and Hypermedia
- Multiple Representations
- Filtering with @JsonView
- Handling Object Associations: Embedding
- Handling Object Associations: Passing IDs
- Handling Object Associations: Linking
- Hypermedia
REST Clients
- RestTemplate
- Sending HTTP Requests
- Translating Entities
- Reading Responses
- Error Handlers
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
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
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