Dependency

Learn about the concept of dependency by setting up a simple example using a Spring Boot application.

We'll cover the following

Overview

In this lesson, we will build a movie recommender system and add some logic to it.

A recommender system is a system that filters some entities based on the user’s history. Recommender systems also rank these items based on user preferences. The system works by taking an input and then finding items similar to that input.

In this lesson, we will write the basic code for a movie recommender application. The application will take a movie and recommend other movies similar to it. There are various ways in which recommendations can be found. One method is content-based filtering in which item-to-item similarity is used as a basis for finding matches. So, for a movie like Finding Dory, the system will find movies of the same genre, like Happy Feet, Ice Age, Shark Tale, etc.

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.