Bobocode exercise project.
Implement a persistence layer using JDBC API for a simple Actor-Movie application.
- Create a new empty maven project
- Add all required dependencies
- Create class Actor (id, first name, last name, birthday)
- Create class Movie (id, name, duration, release date)
- Design a database, and implement a corresponding SQL script to create all required tables. Please note that database should be able to store the many to many relation between actors and movies
- Create ActorDao and implement methods that allow to:
- save new actor
- find actor by id
- link actor to some movie by actor and movie ids
- Create MovieDao and implement methods that allow to:
- save new movie
- find all movies
- search movie by name
- search movies by actor first and last name
- Push your project to github