Courses

    Pages & Posts

      • IT Training
        • Amazon Cloud (AWS)
        • Analytics and Big Data
        • Cisco
        • Citrix
        • Cloud Computing
        • CompTIA Certification
        • Cybersecurity
        • Deep Learning and AI
        • Development Tools
        • DevOps
        • F5
        • FlexPod
        • IBM
        • IT Security
        • Java
        • Juniper Networks
        • Linux
        • Microsoft
        • Mobile Computing
        • NetApp
        • Oracle
        • Salesforce
        • VMware
        • Web Development, HTML, and JavaScript
        • WebSphere
      • Business Training
        • Business Analysis
        • Enterprise Architecture
        • HIPAA Certification & Training
        • IT Governance
        • ITIL® Certification
        • Project Management
        • Salesforce
        • Scrum & Agile
        • Seminars
      • Services
        • APM Practice
        • Authorized Cisco Training
        • BPM Practice
        • Cloudera Training
        • Distance Learning
        • ITIL® Certification
        • Linux Certification Training
        • Media Security Solutions
        • Microsoft 365
        • Microsoft Official Courses On Demand
        • NetApp Training
        • Salesforce Training
        • Training Facilities
        • Visual Studio TFS Training
        • Enterprise Training Solutions
        • Room Rentals
        • State & Local Government
      • Student Resources
        • Ohio Workforce Training Voucher Program
        • Student Guide / Daily Schedule
        • College Credits / Tuition Reimbursement
        • Career Programs (WIA)
        • Student Policies
        • Testing & Certifications
        • Promotions
        • Local Hotels
        • Local Restaurants
      • Developing J2EE Applications Using Hibernate

      Course Details

      Download PDF
      BSP-1442
      3 Days
      1 (?)
      $1,495.00
      Request a Course Date

      Developing J2EE Applications Using Hibernate

      Share this course

      Tweet Share

      This training course provides students with the knowledge needed to use the Hibernate Object/Relational Mapping (ORM) framework to implement the persistence layer of J2EE applications.

      Upon completion of this course, you should be able to:
      • Understand the concepts of object/relational mappings
      • Understand the architecture of Hibernate
      • Integrate and configure Hibernate in J2EE applications
      • Create Hibernate mappings
      • Retrieve and update persistent objects using Hibernate
      • Use HQL (Hibernate Query Language) and criteria queries
      • Know when to use database and application transactions
      • Understand the Hibernate caching architecture
      • Tune performance of Hibernate operations
      • Use various Hibernate tools

      • Course Outline
      • Audience

      Course Outline

      1. Introduction to Hibernate
      • Topics
      • What is Hibernate?
      • Relational Database Technology
      • Accessing Relational Databases from Java
      • Domain Models
      • Comparing Object and Relational Models
      • Identity Modeling
      • Granularity of Objects and Tables
      • Association Modeling
      • Navigation
      • Inheritance
      • What is Object/Relational Mapping?
      • Advantages of using an ORM Tool
      • Architecture of Hibernate
      • Hibernate API
      • Extension Interfaces
      • Hibernate Configuration
      • Hibernate Mappings
      • Hibernate Properties
      • Hibernate XML Configuration Files
      • Non-Managed and Managed Environments
      • Configuration in a Non-Managed Environment
      • Configuration in a Managed Environment
      • Binding SessionFactory to JNDI
      • A Simple Example
      • Alternatives to Hibernate
      • EJB Entity Beans
      • Java Persistence API
      • Hand-Coded Persistence Using JDBC
      • Object-Oriented Databases
      • Other ORM Tools

      2. Basic Mappings
      • Topics
      • Creating the Domain Model
      • Domain Model
      • Domain Objects
      • Hibernate Requirements
      • Object Identity
      • Primary Keys
      • Natural Keys vs. Surrogate Keys
      • Identifier Property
      • Identifier Generators
      • Hibernate Managed Identifiers
      • Mapping Metadata
      • Mapping Properties
      • Property Access Strategies
      • Derived Properties
      • Preventing Insert/Update
      • Using Database Schemas
      • Quoted SQL Identifiers
      • Specifying Java Packages
      • Entity and Value Types
      • Components
      • Bi-Directional Components
      • Other Component Details
      • Association Mappings
      • Many-to-One Association
      • One-to-Many Association
      • Inheritance Mapping Strategies
      • Table per Concrete Class
      • Table per Subclass
      • Table per Class Hierarchy

       

      3. Manipulating Persistent Objects
      • Topics
      • Object States
      • Transient Objects
      • Persistent Objects
      • Detached Objects
      • Object Identity
      • Persisting a Transient Object
      • Retrieving and Updating a Persistent Object
      • Deleting a Persistent Object
      • Updating a Detached Object
      • Transitive Persistence
      • Using save-update
      • Differentiating Between Transient and Detached Objects
      • HQL Queries
      • Parameter Binding
      • Pagination
      • Named Queries
      • Polymorphic Queries
      • Restriction
      • String Comparison
      • Logical Operators
      • Ordering the Results
      • Join Queries
      • Implicit Joins
      • Where Clause Joins
      • Criteria Queries
      • Polymorphic Criteria Queries
      • Restricting Criteria Queries
      • Comparing Strings in Criteria Queries
      • Using Logical Operators in Criteria Queries
      • Ordering Results in Criteria Queries
      • Using Joins in Criteria Queries
      • Using Dot Notation to Get Component Properties

       

      4. Advanced Mappings
      • Topics
      • One-to-One Associations
      • Many-to-Many Associations
      • Polymorphic Associations
      • Entity vs. Value Types
      • Built-in Mapping Types
      • Using Mapping Types
      • Custom Mapping Types
      • Collections of Value Types
      • Set of Value Types
      • Bag of Value Types
      • List of Value Types
      • Map of Value Types
      • Collections of Components
      • Sorting Collections

       

      5. Transactions, Concurrency and Performance
      • Topics
      • Database Transactions
      • JDBC and JTA Transactions
      • Hibernate Transactions
      • Hibernate Transactions
      • Hibernate Transactions
      • Flushing the Hibernate Session
      • Isolation Issues
      • Isolation Levels
      • Configuring the Isolation Level
      • Pessimistic Locking
      • Application Transactions
      • Application Transaction Isolation
      • Managed Versioning
      • Using Existing Properties to Implement Optimistic Locking
      • Caching
      • Hibernate Cache Architecture
      • The First-Level Cache
      • The Second-Level Cache
      • Cache Concurrency Strategies
      • Enabling the Second-Level Cache
      • Cache Regions
      • Specifying a Cache Provider
      • Support for Cache Providers
      • Explicitly Evicting Objects From the Second-Level Cache
      • Fetching Strategies
      • Fetching Strategies in Mappings Single Point Associations
      • Fetching Strategies in Mappings Single Point Associations
      • Fetching Strategies in Mappings Single Point Associations
      • Fetching Strategies in Mappings Collections
      • Fetching Strategies in Mappings Batches
      • Explicit Initialization of Lazily Loaded Objects
      • Fetching Strategies in HQL Queries
      • Fetching Strategies in Criteria Queries
      • The N+1 Selects Issue
      • Report Queries - Projections
      • Report Queries Projections
      • Report Queries Projections
      • Report Queries Aggregation
      • Report Queries Grouping

       

      6. Tools and Design Techniques
      • Topics
      • Generating the Database Schema
      • Generating the Domain Model
      • Generating the Database Schema
      • Using Middlegen
      • Using XDoclet
      • The Open Session in View Pattern
      • Using a Natural Key
      • Using a Composite Key
      • Dealing with Database Triggers

      Audience

      Software designers, developers and programmers

      Related Courses

      Java EE Programming with Spring 3 Using Eclip...

      This course shows how to use the popular Spring framework with some of the most ...

      View course details

      College Credit, CEUs, PDUs and CDUs
      When you take courses with the Babbage Simmel, be sure you get the credit you deserve. Curriculum offered by Babbage Simmel can earn you college credit, CEUs, PDUs or CDUs.

      College Credit
      Select curriculum offered by Babbage Simmel is part of the accredited University of Findlay's undergraduate course catalogs. For questions please E-Mail: info@babsim.com or call 614-481-4345.

      Continuing Education Units (CEUs)
      Continuing Education Units (CEUs) are nationally recognized standard units of measurement earned for satisfactory completion of qualified programs of continuing education. If you need more information about CEUs, please E-Mail: info@babsim.com or call 614-481-4345.

      Professional Development Units (PDUs)
      Professional Development Units (PDUs) can be issued by PMI® for formal learning activities related to project management. Project Management Professionals (PMPs®) are required to earn a minimum of 60 PDUs every 3 years to maintain certification. For more information about this program go to the PMI® web site or call 1-855 746 4849.

      Continuing Development Units (CDUs)
      CDUs may be earned by attending professional development (e.g. courses, seminars) offered by organizations endorsed by IIBA® and designated as an EEP vendor. As an IIBA Endorsed Education Provider (EEP) Babbage Simmel's IIBA® endorsed courses qualify for CDU credit. For more information about CDUs go the IIBA® web site or call 1-647-426-3735.

      Our babsimLIVE distance learning brings the classroom learning experience to you by seating you virtually into a real-life instructor-led classroom taught by award winning world-class instructors with other IT professionals like yourself. From the comfort of your home, workplace, or at the Babbage Simmel Columbus Campus, you acquire the training you need, when you want it, in the environment that is most comfortable for you to be successful.

      About Us Contact Us Blog Find A Course

      © Copyright 2018 • Babbage Simmel. All Rights Reserved. Columbus Web Design by Jetpack | Privacy Policy