AI Features

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
|         |                   ├──
...