Use MAVEN to create a lightweight REST API. Along the way, learn the fundamentals of Java.

Опубликовано: 07 Август 2026
на канале: joe Appleton
944
14

In this tutorial, I will give you a friendly interaction to create a real-world Java project. We'll use the MVC pattern to create a REST API. To manage dependencies, we will use MAVEN. To store data, we'll use a SQLite database, a common approach.

Project solutions: https://gitlab.surrey.ac.uk/com_1028_...

0.00 - Introduction
14.45 - Using Maven to install dependencies
21.55 - Creating a SQLite Database
42.10 - Using the Singleton pattern to manage the database connection
58.25 - Creating the model of our MVC application
01.11.30 - Creating a data access object
01.25.19 - Creating the controller of our MVC application