Discover Classes. Earn Rewards.

Introduction to the Spring 4 Framework is unfortunately unavailable

Thankfully we have 3 other Java Classes for you to choose from. Check our top choices below or see all classes for more options.

Java Programming Level 1: Introduction for Programmers

ONLC Training Centers @ 2 Park Ave, New York, NY

Master Java programming with this live, instructor-led course. Ideal for programmers with prior experience in other languages, you'll learn how Java works, manipulate strings, perform math operations, work with Java operators and loops, and gain a deeper understanding of Object Oriented Programming concepts. Enhance your skills and expand your programming knowledge at ONLC Training Centers.

(7) Intermediate 18 and older
$1,195

3 sessions

Gift it!

Java Programming Level 2: Advanced Programming

ONLC Training Centers @ 2 Park Ave, New York, NY

Take your Java programming skills to the next level with advanced techniques in this comprehensive course. Learn encryption, regular expressions, functional programming with lambda expressions, processing data with streams, and unit testing. Enhance your expertise and become a proficient Java programmer.

(7) Advanced 18 and older
$995

2 sessions

Gift it!

Java Programming Level 1: Introduction for Non-Programmers

ONLC Training Centers @ 626 Reckson/RexCorp Plaza, Uniondale, NY & Virtually Online

Learn the fundamentals of Java programming and gain a strong foundation to further your skills in this introductory course for non-programmers. Explore Java syntax, control code, data types, and object-oriented principles, as well as GUI development and database connectivity. Ideal for new developers or those looking to transition to the Java platform.

(7) Beginner 18 and older
$1,595

4 sessions

Gift it!
See all Java classes NYC

Introduction to the Spring 4 Framework

  • All levels
  • 18 and older
  • $1,795
  • (Exact location to be announced), New York, NY
  • 24 hours over 3 sessions

Start Dates (0)

  • $1,795
  • NY - Manhattan @ (Exact location to be announced), New York, NY 00000
  • 24 hours over 3 sessions
Showing 10 of 0

Class Description

Description

What you'll learn in this java class:

All HOTT courses are available face-to-face, remote-live, on-demand or on-site at your facility

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.


Students requiring an introduction to JEE Web Development, JDBC, JNDI, and JSP as well as Spring and Hibernate, may want to take the Programming Java EE and Frameworks: Web Application Development class instead.


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



Course Syllabus

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

Configuration in Depth

  • Annotation Driven Configuration
    - JSR 330 (@Named) and Spring (@Component) Annotation Styles
    - @Named/@Component, @Inject/@Autowired, @Repository, @Service
    - Configuring Beans and Autowiring with Annotations
    - Enabling Annotations - context:component-scan
  • Java Based Configuration (@Configuration)
    - Overview - code-centric Configuration
    - @Configuration and @Bean
    - Dependency Injection
    - Resolving Dependencies on Other Beans
    - Injecting Configuration Classes
  • Integrating Configuration Types
    - Choosing a Configuration Style
    - Integrating Configuration Styles
    - Importing: @Import and
    - Scanning with @Configuration style
  • Bean Scope and Lifecycle
    - Bean Scope Defined - Singleton, Prototype, and Other Scopes
  • Configuring Scope
    - Bean Creation Lifecycle
    - Lifecycle Callbacks
    - BeanPostProcessor
    - Event Handling

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

Database Access with Spring

  • Overview of Spring Database Support
  • Configuring a DataSource
  • Using Spring with Hibernate
    - High Level Hibernate Overview
    - SessionFactory configuration
    - LocalSessionFactoryBean
    - Contextual Sessions and Spring Integration
  • Using Spring with JPA
    - Managing the EntityManager (EM)
    - LocalContainerEntityManagerFactoryBean and Container-managed EMs
    - JEE and JNDI Lookup of the EM
    - Configuration and Vendor Adaptors
    - Creating a JPA Repository/DAO Bean - @PersistenceUnit, @PersistenceContext

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

Spring Transaction (TX) Management

  • Introduction to Spring Transaction Management
    - Spring Transaction Managers
    - Spring Declarative TX Management
    - Spring TX Scope and Propagation
    - Spring TX Attributes (REQUIRED, SUPPORTS, etc)
  • XML Configuration of Transactions
    - Specifying Advice, TX Attributes, and Methods
    - Linking Advice with Pointcuts
    - Benefits of XML Configuration of TX Behavior

Web Applications with Spring

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

XML Specific Configuration

  • Collection Valued Properties
    - Configuring and Using Lists and Sets
  • Factory Classes and Factory Methods
  • Definition Inheritance (Parent Beans)
  • AutoWiring with XML
  • Inner Beans
  • Compound Names

Refund Policy

Tuition includes all course materials. Students may withdraw before the second day of class to receive a 100% refund, provided course materials are returned to the instructor. Prorated refunds may be granted for withdrawals after the first day.

Cancellations and Changes: There are no cancellation fees.

Attendance Requirements: Students must attend each day of a course and successfully complete hands on exercises in order to receive a certificate of completion. If a student wishes to retake any portion of a class that he or she completes, the student may do so within 12 months at no extra cost.

Intended Audience: Hands On Technology Transfer, Inc., provides IT training designed for technology professionals who wish to quickly upgrade their computer skills. In most states, the employer bears all training costs.

Reviews of Classes at Hands On Technology Transfer, Inc. (7)

(4.6-star rating across 7 reviews)
See reviews for other classes at Hands On Technology Transfer, Inc.
loading...
Hide Reviews

Review Summary by CourseHorse

Students who took the Introduction to the Spring 4 Framework class had a positive experience and felt that the instructor was knowledgeable, friendly, and helpful. They found the class to be excellent and praised the remote class option. The instructor was highly regarded for their expertise in the subject matter and the informative nature of their teaching. Students expressed their desire for additional training with instructors as knowledgeable as them. They also appreciated the personal attention provided by the staff at SST and felt that the course material, lab explanations, and the help they received exceeded their expectations. Quotes from the reviews: 1. "The instructor was very knowledgeable, friendly, and helpful. Overall class experience was excellent." 2. "Amazing instructor. Knew the material very well and his class was very informative. I hope to have additional training with instructors as knowledgeable as him." 3. "SST hires excellent staff from administration to instructors who offer superior personal attention. Both classes I've attended have exceeded my expectations from the course material to the explanation of the labs and the help I received."

Similar Classes

Benefits of Booking Through CourseHorse

  • Booking is safe. When you book with us your details are protected by a secure connection.
  • Lowest price guaranteed. Classes on CourseHorse are never marked up.
  • This class will earn you 17950 points. Points give you money off your next class!

Questions & Answers (0)

Get quick answers from CourseHorse and past students.

Hands On Technology Transfer, Inc.

HOTT delivers instructor-led technical training across the United States, Canada and the United Kingdom. Whether you attend in person, remote-live or on-demand, our classroom-based training philosophy zeroes in on your ability to work more productively and with higher quality results after training....

Read more about Hands On Technology Transfer, Inc.

CourseHorse Approved

This school has been carefully vetted by CourseHorse and is a verified NYC educator.

Hands On Technology Transfer, Inc.

Hands On Technology Transfer, Inc.

All classes at this location

Google Map

Give This Course as a Gift Card

  • Thousands of classes
  • No expiration
  • Unique and memorable gifts for any occasion
  • Personalized
  • Explore a passion, gain a new skill, discover a new hobby, engage in a memorable experience
  • Instant delivery
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™

Buy a Gift Card

Book this Class as a Group Event

Booking this class for a group? Find great private group events

Or see all Coding Group Events

Explore group events and team building activities ranging from cooking, art, escape rooms, trivia, and more.

CourseHorse Gift Cards

  • Creative & unique gift for any occasion
  • Thousands of classes & experiences
  • No expiration date
  • Instant e-delivery (or choose a date)
  • Add a personalized message
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™
Buy a Gift Card
gift card with the CourseHorse logo gift card with the CourseHorse logo
Loading...