-
Урок 1.
00:05:18
Introduction to the course
-
Урок 2.
00:05:37
Introduction to REST
-
Урок 3.
00:03:39
Richardson Maturity Model
-
Урок 4.
00:05:27
Creating a Dropwizard project using Maven and CLI
-
Урок 5.
00:03:13
Creating a Dropwizard project using Netbeans IDE
-
Урок 6.
00:04:11
Creating a Dropwizard project using IntelliJ IDEA
-
Урок 7.
00:03:21
Creating a Dropwizard project using Eclipse
-
Урок 8.
00:03:47
Hello World with Dropwizard
-
Урок 9.
00:02:56
Running a Dropwizard project from CLI
-
Урок 10.
00:04:12
Running a Dropwizard project from Netbeans IDE
-
Урок 11.
00:02:24
Running a Dropwizard project from IntelliJ IDEA
-
Урок 12.
00:03:04
Running a Dropwizard project from Eclipse
-
Урок 13.
00:04:14
Adding tests to the project
-
Урок 14.
00:02:58
Creating a unit test
-
Урок 15.
00:04:50
Testing a resource class using in-memory Jersey
-
Урок 16.
00:04:44
Adding a class implementing Authenticator interface
-
Урок 17.
00:02:44
Registering Authenticator in the Application class
-
Урок 18.
00:02:07
Securing a method
-
Урок 19.
00:02:55
Checking a secured resource using Postman
-
Урок 20.
00:02:59
Checking a secured resource using cURL
-
Урок 21.
00:08:30
Creating a unit test for password-protected resource
-
Урок 22.
00:04:27
Enabling injection in tests with Grizzly
-
Урок 23.
00:05:41
Adding a YAML configuration file
-
Урок 24.
00:02:01
Changing the default value of HTTP port
-
Урок 25.
00:04:04
A brief introduction to HTTPS
-
Урок 26.
00:03:57
Adding HTTPS
-
Урок 27.
00:07:19
Adding an Integration Test
-
Урок 28.
00:03:25
Integration Testing continued: Happy path
-
Урок 29.
00:03:41
Integration Testing continued: using HTTPS
-
Урок 30.
00:06:12
Configuring Database Connection
-
Урок 31.
00:04:45
Introduction to Database Migrations with Liquibase
-
Урок 32.
00:05:17
Adding changesets
-
Урок 33.
00:07:31
Adding Liquibase Maven Support
-
Урок 34.
00:05:53
Adding more changesets
-
Урок 35.
00:05:03
Applying database refactorings using Maven
-
Урок 36.
00:04:25
Applying database refactorings using Maven continued
-
Урок 37.
00:04:42
Adding Dropwizard Liquibase support
-
Урок 38.
00:02:24
Applying database refactorings using application's CLI
-
Урок 39.
00:04:39
Mapping classes to the database using Hibernate
-
Урок 40.
00:05:17
Writing queries to fetch data from the database
-
Урок 41.
00:06:18
Adding a Data Access Object
-
Урок 42.
00:11:40
Creating a unit test to check whether queries return correct results
-
Урок 43.
00:05:26
Testing queries continued
-
Урок 44.
00:03:04
Adding Hibernate support to the Application class
-
Урок 45.
00:03:21
Using database for authentication
-
Урок 46.
00:04:29
Modifying the integration test
-
Урок 47.
00:05:43
Adding a Bookmark entity
-
Урок 48.
00:05:36
Adding a DAO for bookmarks
-
Урок 49.
00:03:26
Adding a database-backed resource class
-
Урок 50.
00:04:10
How Dropwizard deals with exceptions in resource methods
-
Урок 51.
00:07:55
Adding methods to query a single bookmark and to remove a bookmark
-
Урок 52.
00:03:49
Adding new bookmarks
-
Урок 53.
00:05:50
Checking output sing Postman
-
Урок 54.
00:02:26
Using cURL to query bookmarks
-
Урок 55.
00:02:48
Adding and removing bookmarks using cURL