Это пробный урок. Оформите подписку, чтобы получить доступ ко всем материалам курса. Премиум

  1. Урок 1. 00:02:29
    Course Introduction
  2. Урок 2. 00:00:51
    Prerequisites
  3. Урок 3. 00:05:23
    Introduction to Kotlin
  4. Урок 4. 00:01:39
    How Kotlin Works with the JVM?
  5. Урок 5. 00:02:53
    Project Setup
  6. Урок 6. 00:03:26
    Hello Kotlin!
  7. Урок 7. 00:04:39
    val & var variables in Kotlin
  8. Урок 8. 00:06:24
    Basic Types - Int, Long, Double, String
  9. Урок 9. 00:07:41
    Conditionals - If and when block
  10. Урок 10. 00:03:31
    Ranges & Loops
  11. Урок 11. 00:03:41
    while & do-While
  12. Урок 12. 00:06:31
    break, labels and return
  13. Урок 13. 00:07:52
    Defining and Invoking Functions
  14. Урок 14. 00:07:25
    Default Value Parameters & Named Arguments
  15. Урок 15. 00:05:24
    Top-Level Functions and Top-level Properties
  16. Урок 16. 00:02:50
    Introduction to class - Creating a class and objects
  17. Урок 17. 00:03:53
    Primary Constructors
  18. Урок 18. 00:07:44
    Secondary Constructors
  19. Урок 19. 00:02:40
    initializer code using init block
  20. Урок 20. 00:07:37
    Data Classes
  21. Урок 21. 00:05:38
    Custom Getters and Setters
  22. Урок 22. 00:05:56
    Inheritance - Extending Classes
  23. Урок 23. 00:04:12
    Inheritance - Override Functions, Variables
  24. Урок 24. 00:03:30
    object keyword for creating instance of the class
  25. Урок 25. 00:03:30
    companion object Keyword
  26. Урок 26. 00:09:33
    Interfaces
  27. Урок 27. 00:02:49
    Interfaces - Handling Conflicting Functions
  28. Урок 28. 00:03:01
    Interfaces - Defining and Overrding Variables
  29. Урок 29. 00:04:37
    Visibility Modifiers
  30. Урок 30. 00:07:17
    Type Checking, Casting and Smart Cast
  31. Урок 31. 00:02:11
    Enum class
  32. Урок 32. 00:06:19
    Nullable & Non-Nullable types in Kotlin
  33. Урок 33. 00:08:42
    Safe Call(?) ,Elvis Operator(?:),Non Null Assertion(!!) to deal with Null Values
  34. Урок 34. 00:03:41
    Invoking or assigning a Nullable Type to a Non-Nullable Type
  35. Урок 35. 00:10:22
    Introduction to Collections
  36. Урок 36. 00:07:32
    Introduction to Lamda Expressions
  37. Урок 37. 00:06:19
    Lambdas and Higher Order Functions
  38. Урок 38. 00:10:14
    Filter Operations on Kotlin Collections
  39. Урок 39. 00:06:30
    Map Operations on Kotlin Collections
  40. Урок 40. 00:09:50
    FlatMap Operations in Collections
  41. Урок 41. 00:08:18
    Working With HashMaps
  42. Урок 42. 00:10:35
    Lazy Evaluation of Collections using Sequences
  43. Урок 43. 00:03:46
    Nullability in Collections
  44. Урок 44. 00:06:57
    Handling Exceptions using try-catch
  45. Урок 45. 00:04:22
    Introduction to Scope Functions
  46. Урок 46. 00:07:19
    apply & also Scope Function
  47. Урок 47. 00:06:23
    let Scope Function
  48. Урок 48. 00:09:15
    with & run Scope Function
  49. Урок 49. 00:05:24
    Overview of the app & Project Setup
  50. Урок 50. 00:04:03
    Build a Simple Endpoint - Greeting Controller
  51. Урок 51. 00:02:59
    Constructor Injection in Spring
  52. Урок 52. 00:08:47
    Setting up different profiles in Spring Boot
  53. Урок 53. 00:03:16
    Set up Logging in Kotlin
  54. Урок 54. 00:05:50
    Introduction to Automated Tests & Setting up JUnit5
  55. Урок 55. 00:07:58
    Integration Test for Controller
  56. Урок 56. 00:05:31
    Unit Test for Controller - Using the Mockk Mocking library
  57. Урок 57. 00:04:37
    Set up the Course Entity & CourseDTO
  58. Урок 58. 00:06:58
    Create CourseRepository & Configure JPA in application.yml file
  59. Урок 59. 00:09:48
    Build the POST Endpoint for adding new Course
  60. Урок 60. 00:05:50
    Integration test for the POST endpoint using JUnit5
  61. Урок 61. 00:03:07
    Build the Get Endpoint to retrieve all Courses
  62. Урок 62. 00:06:19
    Integration test for the GET endpoint to retrieve all the courses
  63. Урок 63. 00:10:25
    Build the Update Endpoint to update a Course
  64. Урок 64. 00:04:26
    Integration test for the PUT endpoint using JUnit5
  65. Урок 65. 00:04:10
    Build the DELETE endpoint to delete a Course
  66. Урок 66. 00:02:10
    Setting up the Unit Test for the CourseController
  67. Урок 67. 00:03:28
    Unit test for the Post Endpoint in CourseController
  68. Урок 68. 00:02:30
    Unit test for the GET Endpoint in CourseController
  69. Урок 69. 00:03:05
    Unit test for the PUT Endpoint in CourseController
  70. Урок 70. 00:01:49
    Unit test for the DELETE Endpoint in CourseController
  71. Урок 71. 00:05:08
    Name and Category as Mandatory using @NotBlank Annotation
  72. Урок 72. 00:08:10
    Implement Custom Error Handling using ControllerAdvice pattern
  73. Урок 73. 00:04:27
    Handle Global RuntimeException using ControllerAdvice Pattern
  74. Урок 74. 00:07:16
    Retrieve Courses By Name using JPA Query Creation Function
  75. Урок 75. 00:02:38
    Retrieve Courses By Name using Native SQL query
  76. Урок 76. 00:05:35
    Testing Mutliple sets of Data using @Parameterized test
  77. Урок 77. 00:02:58
    Use existing GET endpoint to retrieve Courses by Name
  78. Урок 78. 00:02:49
    Write Integration test to retrieve course by Name
  79. Урок 79. 00:02:33
    Adding Instructor Entity in to the Course Catalog Service
  80. Урок 80. 00:05:56
    Adding the relationship in the Entity Class
  81. Урок 81. 00:05:28
    Instructor Controller to Manage Instructor Data
  82. Урок 82. 00:10:19
    Update CourseService to validate Instructor Data
  83. Урок 83. 00:05:45
    Fix the CourseController Integration Tests
  84. Урок 84. 00:01:11
    Fix the CourseController Unit Tests
  85. Урок 85. 00:07:41
    Setting up the Postgres DB and App to interact with Postgres
  86. Урок 86. 00:07:52
    Test the app with Postgres DB
  87. Урок 87. 00:09:03
    Setting Up TestContainers for the Integration Test
  88. Урок 88. 00:04:24
    Configure @DataJpaTest with TestContainers
  89. Урок 89. 00:03:47
    Invoking Kotlin Code from Java Class
  90. Урок 90. 00:04:05
    Invoking Java Code from Kotlin
  91. Урок 91. 00:10:32
    Useful JVM annotations in Kotlin