1. Урок 1. 00:10:29
    Course Introduction
  2. Урок 2. 00:03:39
    Installing the Java Development Kit
  3. Урок 3. 00:05:09
    Windows only Java configuration
  4. Урок 4. 00:05:40
    Installing Eclipse IDE
  5. Урок 5. 00:07:14
    Registering your JDK with Eclipse
  6. Урок 6. 00:09:36
    Installing Glassfish Server and Eclipse tools for Glassfish
  7. Урок 7. 00:08:30
    Running Glassfish server
  8. Урок 8. 00:04:54
    Importing existing projects into Eclipse IDE
  9. Урок 9. 00:11:07
    Creating a Servlet (for adding passengers to a flight)
  10. Урок 10. 00:10:20
    Creating a JSP (for showing an add passenger form)
  11. Урок 11. 00:14:32
    Creating an HTML form in our JSP (for adding passengers)
  12. Урок 12. 00:09:06
    Adding static resources to our JSP for better styling
  13. Урок 13. 00:08:36
    Creating a Java class that represents a passenger on a flight
  14. Урок 14. 00:12:31
    Getting passenger form data into a new passenger object on form submission
  15. Урок 15. 00:15:45
    Validating the form values the user submitted
  16. Урок 16. 00:14:14
    Showing form error messages
  17. Урок 17. 00:15:52
    Handling successful passenger form submissions
  18. Урок 18. 00:14:23
    Creating a Servlet Context Listener and adding the passenger list to the context
  19. Урок 19. 00:16:26
    Synchronization and Thread Safety when adding new passengers
  20. Урок 20. 00:16:44
    Improving form validation
  21. Урок 21. 00:06:15
    Introduction to Enterprise Java Beans (EJB)
  22. Урок 22. 00:09:58
    Creating a Stateless Session Bean
  23. Урок 23. 00:08:38
    Injecting an EJB into a Servlet
  24. Урок 24. 00:11:55
    Nature of Stateless Session Enterprise Java Beans - part I
  25. Урок 25. 00:11:45
    Nature of Stateless Session Enterprise Java Beans - part II
  26. Урок 26. 00:13:30
    Looking up EJBs through Java Naming and Directory Interface (JNDI)
  27. Урок 27. 00:10:52
    Session Beans Implementing a Local Interface
  28. Урок 28. 00:11:07
    Session Beans Implementing a Remote Interface
  29. Урок 29. 00:12:46
    Stateful Session Enterprise Java Beans
  30. Урок 30. 00:11:44
    Differences between Stateful and Stateless EJBs
  31. Урок 31. 00:15:20
    Looking up Stateful EJBs through Java Naming and Directory Interface (JNDI)
  32. Урок 32. 00:12:55
    Singleton Session Enterprise Java Beans
  33. Урок 33. 00:13:05
    Differences between Singleton and Stateful Enterprise Java Beans
  34. Урок 34. 00:17:13
    Adding a Stateful bean to the Session Context through Session Context Listener
  35. Урок 35. 00:04:03
    Introduction to the Java Persistence API
  36. Урок 36. 00:06:31
    Starting the Derby (JavaDB) Database
  37. Урок 37. 00:14:02
    Creating a DataSource on the Glassfish server
  38. Урок 38. 00:06:22
    Connecting to the database with Eclipse
  39. Урок 39. 00:08:33
    Creating a Persistence Unit
  40. Урок 40. 00:20:04
    Creating a JPA Entity class for passengers
  41. Урок 41. 00:13:01
    Injecting an Entity Manager associated with out Persistence Unit
  42. Урок 42. 00:17:09
    Persisting a passenger object into the database
  43. Урок 43. 00:04:10
    Possible minor issue with Eclipse validation of our Persistence Unit
  44. Урок 44. 00:17:35
    Adding new JPA Entity classes for flight and airplane
  45. Урок 45. 00:12:18
    One to One relationship between Flight and Airplane
  46. Урок 46. 00:16:40
    Persisting objects in a One to One relationship (Flight and Airplane) - part I
  47. Урок 47. 00:12:12
    Persisting objects in a One to One relationship (Flight and Airplane) - part II
  48. Урок 48. 00:12:36
    One to Many relationship annotations (flights and its pilots)
  49. Урок 49. 00:13:49
    Persisting pilot objects - One to Many relationship groundwork
  50. Урок 50. 00:09:55
    Named Queries on Entity classes
  51. Урок 51. 00:11:13
    Using named queries to query by id
  52. Урок 52. 00:09:17
    Adding pilots to a flight - One to Many relationship completed
  53. Урок 53. 00:06:57
    Demo of the One to Many relationship between flight and its pilots
  54. Урок 54. 00:16:42
    Reading the list of available flights
  55. Урок 55. 00:18:13
    Creating a list of flights JSP
  56. Урок 56. 00:19:51
    Displaying in our flights JSP the pilots that belong to each flight
  57. Урок 57. 00:15:22
    Cascading and propogation of persist and remove actions
  58. Урок 58. 00:13:32
    Reading the list of all passengers
  59. Урок 59. 00:12:22
    Creating a list of passengers JSP
  60. Урок 60. 00:15:05
    Adding a JSP file of forms to add flights, passengers, pilots and airplanes
  61. Урок 61. 00:19:32
    Adding a flights through our JSP form
  62. Урок 62. 00:19:01
    Adding pilots to flights through our JSP form
  63. Урок 63. 00:06:10
    Demo of adding pilots to flights through our JSP form
  64. Урок 64. 00:16:14
    Many to Many annotations (flights and passengers)
  65. Урок 65. 00:17:00
    Groundwork to prepare our Servlets and EJBs for Many to Many operations
  66. Урок 66. 00:17:22
    Adding passengers through our JSP form
  67. Урок 67. 00:18:31
    Criteria queries of passenger and flight by id
  68. Урок 68. 00:13:57
    Completing adding a passenger to a flight (Many to Many)
  69. Урок 69. 00:08:43
    Demo of adding passenger to flight & Many to Many relationship discussion
  70. Урок 70. 00:16:05
    Displaying in the passengers JSP file the flight tickets that each passenger has
  71. Урок 71. 00:16:57
    Adding flight tickets to passengers (Many to Many) and demo
  72. Урок 72. 00:05:47
    Introduction to Web Services with JAX-RS
  73. Урок 73. 00:04:28
    Installing a REST client application in a browser
  74. Урок 74. 00:11:21
    Adding a REST web services entry point to our airline application
  75. Урок 75. 00:13:50
    Creating a JAX-RS manged class
  76. Урок 76. 00:15:26
    Exposing WS that return the list of flights & passengers in JSON & XML
  77. Урок 77. 00:15:42
    Exposing WS that return a specific flight or passenger by id in JSON and XML
  78. Урок 78. 00:13:18
    Handling Not Found exceptions in our web services
  79. Урок 79. 00:18:46
    Adding new passengers WS
  80. Урок 80. 00:17:23
    Updating a passenger WS
  81. Урок 81. 00:00:00
    Demo of updating a passenger WS
  82. Урок 82. 00:07:23
    Updating a passenger WS done in a different way
  83. Урок 83. 00:13:04
    Deleting a flight WS (& cascade deleting its airplane and pilots)
  84. Урок 84. 00:18:05
    Introduction to Maven
  85. Урок 85. 00:02:30
    Installing Maven
  86. Урок 86. 00:07:15
    First console Java application with Maven
  87. Урок 87. 00:12:08
    Using Maven dependencies
  88. Урок 88. 00:19:40
    Maven Goals, Phases and Lifecycles (in theory)
  89. Урок 89. 00:11:43
    Maven Goals, Phases and Lifecycles (in practice)
  90. Урок 90. 00:18:47
    Maven Servlets and JSP webapp
  91. Урок 91. 00:15:47
    Multimodule Maven app 1
  92. Урок 92. 00:15:47
    Multimodule Maven app 2
  93. Урок 93. 00:11:42
    Troubleshooting and Multimodule Maven app 3
  94. Урок 94. 00:13:45
    Migrating to full airline app to a Maven webapp
  95. Урок 95. 00:18:11
    Demo of full airline app as a Maven webapp
  96. Урок 96. 00:06:12
    Migrating airline app to a multimodule Maven app
  97. Урок 97. 00:22:42
    Demo and troubleshooting and of airline app as multimodule Maven app
  98. Урок 98. 00:14:41
    Review of Maven theory and conclusion of the Maven section