Java Servlet Application

Learn about the sample login application we will be interacting with.

We'll cover the following

Project structure

In this course, we will be interacting with a sample Login application that has the following structure:

├── src
|    ├── main
|         ├── java
|         |    ├── com
|         |         ├── auth0
|         |              ├── example
|         |                   ├── Auth0Filter.java
|         |                   ├── AuthenticationControllerProvider.java
|         |                   ├── CallbackServlet.java
|         |                   ├── HomeServlet.java
|         |                   ├── LoginServlet.java
|         |                   ├── LogoutServlet.java
|         ├── webapp
|              ├── WEB-INF
|                   ├── jsp
|                   |    ├── home.jsp
|                   ├── web.xml
├── build.gradle

Get hands-on with 1200+ tech skills courses.