1. Урок 1.00:05:18
    Introduction to the course
  2. Урок 2.00:05:37
    Introduction to REST
  3. Урок 3.00:03:39
    Richardson Maturity Model
  4. Урок 4.00:05:27
    Creating a Dropwizard project using Maven and CLI
  5. Урок 5.00:03:13
    Creating a Dropwizard project using Netbeans IDE
  6. Урок 6.00:04:11
    Creating a Dropwizard project using IntelliJ IDEA
  7. Урок 7.00:03:21
    Creating a Dropwizard project using Eclipse
  8. Урок 8.00:03:47
    Hello World with Dropwizard
  9. Урок 9.00:02:56
    Running a Dropwizard project from CLI
  10. Урок 10.00:04:12
    Running a Dropwizard project from Netbeans IDE
  11. Урок 11.00:02:24
    Running a Dropwizard project from IntelliJ IDEA
  12. Урок 12.00:03:04
    Running a Dropwizard project from Eclipse
  13. Урок 13.00:04:14
    Adding tests to the project
  14. Урок 14.00:02:58
    Creating a unit test
  15. Урок 15.00:04:50
    Testing a resource class using in-memory Jersey
  16. Урок 16.00:04:44
    Adding a class implementing Authenticator interface
  17. Урок 17.00:02:44
    Registering Authenticator in the Application class
  18. Урок 18.00:02:07
    Securing a method
  19. Урок 19.00:02:55
    Checking a secured resource using Postman
  20. Урок 20.00:02:59
    Checking a secured resource using cURL
  21. Урок 21.00:08:30
    Creating a unit test for password-protected resource
  22. Урок 22.00:04:27
    Enabling injection in tests with Grizzly
  23. Урок 23.00:05:41
    Adding a YAML configuration file
  24. Урок 24.00:02:01
    Changing the default value of HTTP port
  25. Урок 25.00:04:04
    A brief introduction to HTTPS
  26. Урок 26.00:03:57
    Adding HTTPS
  27. Урок 27.00:07:19
    Adding an Integration Test
  28. Урок 28.00:03:25
    Integration Testing continued: Happy path
  29. Урок 29.00:03:41
    Integration Testing continued: using HTTPS
  30. Урок 30.00:06:12
    Configuring Database Connection
  31. Урок 31.00:04:45
    Introduction to Database Migrations with Liquibase
  32. Урок 32.00:05:17
    Adding changesets
  33. Урок 33.00:07:31
    Adding Liquibase Maven Support
  34. Урок 34.00:05:53
    Adding more changesets
  35. Урок 35.00:05:03
    Applying database refactorings using Maven
  36. Урок 36.00:04:25
    Applying database refactorings using Maven continued
  37. Урок 37.00:04:42
    Adding Dropwizard Liquibase support
  38. Урок 38.00:02:24
    Applying database refactorings using application's CLI
  39. Урок 39.00:04:39
    Mapping classes to the database using Hibernate
  40. Урок 40.00:05:17
    Writing queries to fetch data from the database
  41. Урок 41.00:06:18
    Adding a Data Access Object
  42. Урок 42.00:11:40
    Creating a unit test to check whether queries return correct results
  43. Урок 43.00:05:26
    Testing queries continued
  44. Урок 44.00:03:04
    Adding Hibernate support to the Application class
  45. Урок 45.00:03:21
    Using database for authentication
  46. Урок 46.00:04:29
    Modifying the integration test
  47. Урок 47.00:05:43
    Adding a Bookmark entity
  48. Урок 48.00:05:36
    Adding a DAO for bookmarks
  49. Урок 49.00:03:26
    Adding a database-backed resource class
  50. Урок 50.00:04:10
    How Dropwizard deals with exceptions in resource methods
  51. Урок 51.00:07:55
    Adding methods to query a single bookmark and to remove a bookmark
  52. Урок 52.00:03:49
    Adding new bookmarks
  53. Урок 53.00:05:50
    Checking output sing Postman
  54. Урок 54.00:02:26
    Using cURL to query bookmarks
  55. Урок 55.00:02:48
    Adding and removing bookmarks using cURL