-
Notifications
You must be signed in to change notification settings - Fork 786
Open
Description
Dear Ranga, classmates and friends:
Here my transcription ordered for the Course Agenda, I hope you will like and having useful:
- Journey from JDBC To JPA Step01 - Setting up a project with JDBC, JPA, H2 and Web Dependencies
- seccion 1: Introduction 01. Master Hibernate and JPA with Spring Boot - Preview
- seccion 1: Introduction 02. Congratulations
- seccion 1: Introduction 03. One thing you should do
- seccion 1: Introduction 04. Master Hibernate and JPA with Spring Boot - Course Overview
- seccion 1: Introduction 05. Master Hibernate and JPA with Spring Boot - Git Repository
- seccion 1: Introduction 06. Master Hibernate and JPA with Spring Boot - Installing Basic Tools
- seccion 1: Introduction 07. Quick introduction to JPA
- seccion 1: Introduction 08. DO NOT SKIP: Join in28minutes learning community
- sección 2: Introduction to Spring Boot in 10 steps 09. Do not skip. New to Spring framework?
- sección 2: Introduction to Spring Boot in 10 steps 10. Step 01 - Getting Started with Spring Boot - Goals?
- sección 2: Introduction to Spring Boot in 10 steps 11. Step 02 - Setting up New Spring Boot Project with Spring?
- sección 2: Introduction to Spring Boot in 10 steps 12. Step 03 - Setting up New Spring Boot Project with Spring?
- sección 2: Introduction to Spring Boot in 10 steps 13. Step 04 - Build a Hello World with API with Spring Boot
- sección 2: Introduction to Spring Boot in 10 steps 14. Step 05 - Understanding the goal of Spring Boot
- sección 2: Introduction to Spring Boot in 10 steps 15. Step 06 - Understanding the Spring Boot Magic - Spring Boot Starter
- sección 2: Introduction to Spring Boot in 10 steps 16. Step 07 - Understanding the Spring Boot Magic - Auto Configuration
- sección 2: Introduction to Spring Boot in 10 steps 17. Step 08 - Build Faster with Spring Boot DevTools
- sección 2: Introduction to Spring Boot in 10 steps 18. Step 09 - Get Production ready with Spring Boot 1 Profiles
- sección 2: Introduction to Spring Boot in 10 steps 19. Step 10 - Get Production ready with Spring Boot 2 Configuration Properties
- sección 2: Introduction to Spring Boot in 10 steps 20. Step 11 - Get Production ready with Spring Boot DevTools 3 Embedded Servers
- sección 2: Introduction to Spring Boot in 10 steps 21. Step 12 - Get Production ready with Spring Boot DevTools 4 Actuator
- sección 2: Introduction to Spring Boot in 10 steps 22. Step 13 - Understanding Spring Boot vs Spring vs Spring MVC
- sección 2: Introduction to Spring Boot in 10 steps 23. Step 14 - Getting started with Spring Boot - Review
- Journey from JDBC To JPA 24. introduction to Journey from JDBC To JPA
- Journey from JDBC To JPA 25. Step01 - Setting up a project with JDBC, JPA, H2 and Web Dependencies
- Journey from JDBC To JPA 26. COURSE UPDATE: H2 Database URL
- Journey from JDBC To JPA 27. Step02 - Launching up H2 Console
- Journey from JDBC To JPA 28. Troubleshooting Your Problems
- Journey from JDBC To JPA 29. Step03 - Creating a Database Table in H2
- Journey from JDBC To JPA 30. Step04 - Populate data into Person Table
- Journey from JDBC To JPA 31. Step05 - Implement findAll persons Spring JDBC Query Method
- Journey from JDBC To JPA 32. Step06 - Execute the findAll method using CommandLineRunner
- Journey from JDBC To JPA 33. Step07 - A Quick Review - JDBC vs Spring JDBC
- Journey from JDBC To JPA 34. Step08 - Whats in the background? Understanding Spring Boot Autoconfiguration
- Journey from JDBC To JPA 35. Step09 - Implementing findById Spring JDBC Query Method
- Journey from JDBC To JPA 36. Step10 - Implementing deleteById Spring JDBC Update Method
- Journey from JDBC To JPA 37. Step11 - Implementing insert and update Spring JDBC Update Methods
- Journey from JDBC To JPA 38. Step12 - Creating a custom Spring JDBC RowMapper
- Journey from JDBC To JPA 39. Step13 - Quick introduction to JPA
- Journey from JDBC To JPA 40. Step14 - Defining Person Entity
- Journey from JDBC To JPA 41. Step15 - Implementing findById JPA Repository Method
- Journey from JDBC To JPA 42. Step16 - Implementing insert and update JPA Repository Methods
- Journey from JDBC To JPA 43. Step17 - Implementing deleteById JPA Repository Method
- Journey from JDBC To JPA 44. Step18 - Implementing findAll using JPQL Named Query
- Sección 4: Introduction to JUnit in 5 Steps 45. Introduction to JUnit in 5 Steps
- Sección 4: Introduction to JUnit in 5 Steps 46. Step 01: What is Junit and Unit Testing?
- Sección 4: Introduction to JUnit in 5 Steps 47. Step 02: Your First Junit Project and Green Bar
- Sección 4: Introduction to JUnit in 5 Steps 48. Step 03: Your First Junit Code and First Unit Test
- Sección 4: Introduction to JUnit in 5 Steps 49. Step 04: Exploring other assert methods
- Sección 4: Introduction to JUnit in 5 Steps 50. Step 05: Exploring few important Junit annotations
- Sección 5: JPA/Hibernate in Depth 51. Introduction to JPA and Hibernate in Depth
- Sección 5: JPA/Hibernate in Depth 52. Step01 - Create a JPA Project with H2 and Spring Boot
- Sección 5: JPA/Hibernate in Depth 53. COURSE UPDATE: H2 Database URL
- Sección 5: JPA/Hibernate in Depth 54. Step02 - Create JPA Entity Course
- Sección 5: JPA/Hibernate in Depth 55. Step03 - Create findById using JPA Entity Manager
- Sección 5: JPA/Hibernate in Depth 56. Step04 - Configuring application.properties to enable H2 console and additional logging
- Sección 5: JPA/Hibernate in Depth 57. COURSE UPDATE : JUnit 4 vs JUnit 5
- Sección 5: JPA/Hibernate in Depth 58. Step05 - Writing Unit Test for findById method
- Sección 5: JPA/Hibernate in Depth 59. Step06 - Writing a deleteByID method to delete an Entity
- Sección 5: JPA/Hibernate in Depth 60. Step07 - Writing Unit Test for deleteById method
- Sección 5: JPA/Hibernate in Depth 61. Step08 - Writing a save method to update and insert an Entity
- Sección 5: JPA/Hibernate in Depth 62. Step09 - Writing Unit Test for save method
- Sección 5: JPA/Hibernate in Depth 63. Step10 - Quick Review and Debugging Tips
- Sección 5: JPA/Hibernate in Depth 64. Step11 - Playing with Entity Manager
- Sección 5: JPA/Hibernate in Depth 65. Step12 - Entity Manager Methods - clear and detach
- Sección 5: JPA/Hibernate in Depth 66. Step13 - Entity Manager Methods - refresh
- Sección 5: JPA/Hibernate in Depth 67. Step14 - A Quick Review of Entity Manager
- Sección 5: JPA/Hibernate in Depth 68. Step15 - JPQL - Basics
- Sección 5: JPA/Hibernate in Depth 69. Step16 - JPA and Hibernate Annotations - @table
- Sección 5: JPA/Hibernate in Depth 70. Step17 - JPA and Hibernate Annotations - @column
- Sección 5: JPA/Hibernate in Depth 71. Step18 - JPA and Hibernate Annotations - @UpdateTimestamp and @CreationTimestamp
- Sección 5: JPA/Hibernate in Depth 72. Step19 - JPA and Hibernate Annotations - @NamedQuery and @NamedQueries
- Sección 5: JPA/Hibernate in Depth 73. Step20 - Native Queries - Basics
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 74. Step21 - Entities and Relationships - An overview
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 75. Step22 - Defining Entities - Student, Passport and Review
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 76. Step23 - Introduction to One to One Relationship
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 77. Step24 - OneToOne Mapping - Insert Student with Passport
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 78. Step25 - OneToOne Mapping - Retrieving Student with Passport and Eager Fetch
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 79. Step26 - OneToOne Mapping - Lazy Fetch
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 80. Step27 - Session vs Transaction
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 81. Step28 - OneToOne Mapping - Bidirectional Relationship - Part 1
- Sección 6: Establishing Relationsships with JPA and Hibernate - OneToOne 82. Step29 - OneToOne Mapping - Bidirectional Relationship - Part 2
- Sección 7. Lets' review with a fes FAQs about Hibernate and JPA 83. FAQ 1 - When does Hibernate send updates to the database?
- Sección 7. Lets' review with a fes FAQs about Hibernate and JPA 84. FAQ 2 - When do we need @transactional in an Unit Test?
- Sección 7. Lets' review with a fes FAQs about Hibernate and JPA 85. FAQ 3 - Do read only methods need a transaction?
- Sección 7. Lets' review with a fes FAQs about Hibernate and JPA 86. FAQ 4 - Why do we use @DirtiesContext in an Unit Test?
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 87. Step30 - ManyToOne Mapping - Designing the database
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 88. Step30 - Part 2 - ManyToOne Mapping - Implementing the Mapping
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 89. Step31 - ManyToOne Mapping - Retrieving and inserting Reviews for Course
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 89. Step31 - ManyToOne Mapping - Retrieving and inserting Reviews for Course
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 90. Step32 - ManyToOne Mapping - Generalizing Insert Reviews
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 91. Step33 - ManyToOne Mapping - Wrapping up
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 92. Step34 - ManyToMany Mapping - Table Design
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 93. Step35 - ManyToMany Mapping - Adding Annotations on Entities
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 94. Step36 - ManyToMany Mapping - Fixing two join tables problem
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 95. Step37 - ManyToMany Mapping - Customizing the Join Table
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 96. Step38 - ManyToMany Mapping - Insert Data and Write Join Query
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 97. Step39 - ManyToMany Mapping - Retrieve Data using JPA Relationships
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 98. Step40 - ManyToMany Mapping - Insert Student and Course
- Sección 8: Establishing Relationships with JPA and Hibernate - OneToMany and ManyToMany 99. Step41 - Relationships between JPA Entities - A summary
- Sección 9: Inheritance Hierachies with JPA and Hibernate 100. Step42 - Introduction to Inheritance Hierarchies and Mappings
- Sección 9: Inheritance Hierachies with JPA and Hibernate 101. Step43 - JPA Inheritance Hierarchies and Mappings - Setting up entities
- Sección 9: Inheritance Hierachies with JPA and Hibernate 102. Step44 - JPA Inheritance Hierarchies and Mappings - Setting up a Repository
- Sección 9: Inheritance Hierachies with JPA and Hibernate 103. Step45 - JPA Inheritance Hierarchies and Mappings - Single Table
- Sección 9: Inheritance Hierachies with JPA and Hibernate 104. Step46 - JPA Inheritance Hierarchies and Mappings - Table Per Class
- Sección 9: Inheritance Hierachies with JPA and Hibernate 105. Step47 - JPA Inheritance Hierarchies and Mappings - Joined
- Sección 9: Inheritance Hierachies with JPA and Hibernate 106. Step48 - JPA Inheritance Hierarchies and Mappings - Mapped Super Class
- Sección 9: Inheritance Hierachies with JPA and Hibernate 107. Step49 - JPA Inheritance Hierarchies and Mappings - How to Choose?
- Sección 10: Queries with Entities using JPQL 108. Step50 - JPQL - Courses without Students
- Sección 10: Queries with Entities using JPQL 109. Step51 - JPQL - Courses with atleast 2 Students and order by
- Sección 10: Queries with Entities using JPQL 110. Step52 - JPQL - Courses like 100 Steps
- Sección 10: Queries with Entities using JPQL 111. Step53 - JPQL - Using Joins
- Sección 11: Queries using Java API - Criteria Queries 112. Step54 - Criteria Query - Retrieving all courses
- Sección 11: Queries using Java API - Criteria Queries 113. Step55 - Criteria Query - Courses like 100 Steps
- Sección 11: Queries using Java API - Criteria Queries 114. Step56 - Criteria Query - Courses without Students
- Sección 11: Queries using Java API - Criteria Queries 115. Step57 - Criteria Query - Using Joins
- Sección 12: Transaction Management 116. Step58 - Introduction to Transaction Management
- Sección 12: Transaction Management 117. Step59 - Transaction Management - ACID Properties
- Sección 12: Transaction Management 118. Step60 - Understanding Dirty, Phanthom and Non Repeatable Reads
- Sección 12: Transaction Management 119. Step61 - Understand 4 Isolation Levels
- Sección 12: Transaction Management 120. Step62 - Choosing between Isolation Levels
- Sección 12: Transaction Management 121. Step63 - Implementing Transaction Management - 3 Things to Decide
- Sección 13: Spring Data JPA & Spring Data REST 122. Step64 - Introduction to Spring Data JPA
- Sección 13: Spring Data JPA & Spring Data REST 123. Step65 - Testing the Spring Data JPA Repository with findById.
- Sección 13: Spring Data JPA & Spring Data REST 124. Step66 - Spring Data JPA Repository - CRUD Methosd
- Sección 13: Spring Data JPA & Spring Data REST 125. Step67 - Sorting using Spring Data JPA Repository
- Sección 13: Spring Data JPA & Spring Data REST 126. Step68 - Pagination using Spring Data JPA Repository
- Sección 13: Spring Data JPA & Spring Data REST 127. Step69 - Custom Queries using Spring Data JPA Repository
- Sección 13: Spring Data JPA & Spring Data REST 128. Step70 - Spring Data REST
- Sección 14: Caching with Hibertate & JPA 129. Step71 - Introduction to Caching
- Sección 14: Caching with Hibertate & JPA 130. Step72 - Hibernate and JPA Caching - First Level Cache
- Sección 14: Caching with Hibertate & JPA 131. Step73 - Hibernate and JPA Caching - Basics of Second Level Cache with EhCache
- Sección 14: Caching with Hibertate & JPA 132. Step74 - Hibernate and JPA Caching - Second Level Cache Part 2
- Sección 15: Hibernate & JPA Tips 133. Step75 - Hibernate Tips - Hibernate Soft Deletes - @SQLDelete and @where
- Sección 15: Hibernate & JPA Tips 134. Step76 - Hibernate Soft Deletes - Part 2
- Sección 15: Hibernate & JPA Tips 135. Step77 - JPA Entity Life Cycle Methods
- Sección 15: Hibernate & JPA Tips 136. Step78 - Using Embedded and Embeddable with JPA
- Sección 15: Hibernate & JPA Tips 137. Step79 - Using Enums with JPA
- Sección 15: Hibernate & JPA Tips 138. Step80 - JPA Tip - Be cautious with toString method implementations
- Sección 15: Hibernate & JPA Tips 139. Step81 - JPA Tip - When do you use JPA?
- Sección 16: Performance Tuning Tips with Hibernate & JPA 140. Step82 - Performance Tuning - Measure before Tuning
- Sección 16: Performance Tuning Tips with Hibernate & JPA 141. Step83 - Performance Tuning - Indexes
- Sección 16: Performance Tuning Tips with Hibernate & JPA 142. Step84 - Performance Tuning - Use Appropriate Caching
- Sección 16: Performance Tuning Tips with Hibernate & JPA 143. Step85 - Performance Tuning - Eager vs Lazy Fetch
- Sección 16: Performance Tuning Tips with Hibernate & JPA 144. Step86 - Performance Tuning - Avoid N+1 Problems
- Sección 17: Few more FAQ 145. FAQ 5 - How to connect to a differente database sith Spring Boot
- Sección 17: Few more FAQ 146. FAQ 6 - Approach to design great applications with JPA?
- Sección 17: Few more FAQ 147. FAQ 7 - Good Practices for developing JPA Applications
- Sección 18: Congratulations 148. Bonus Lecture
- Sección 18: Congratulations 149. Congratulations
Metadata
Metadata
Assignees
Labels
No labels