Get started with Java and Spring
Part II. Data
You can find all the sources for this chapter here
This article series is designed mostly for computer engineers with non-Java/Spring programming background who want to get started with new technology fast and flawlessly.
Though it doesn’t cover most valuable principles of development, migrating and deployment, it can be used as good introductory view on new technology.
I won’t explain every step of this guide deeply but will try to serve you with valuable links where you would get much more useful information.
- Bootstrap a new modular project with Maven
- Read and write data. Interact with YouTube API ← this article
Throughout our journey we’ll build a simple Tube application which will crawl some videos from YouTube and present it on our website.
Introduction
Spring Data JPA is the best way to bootstrap your database interaction facilities in the application.
JPA itself provides you with the ability to describe entities, relations and many more while Spring Data JPA is used to interact with entities easily through Repositories.