Get started with Java and Spring

Part II. Data

You can find all the sources for this chapter here

Get started with Java and Spring series

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.

What you will learn here:

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.

Read More

Get started with Java and Spring

Part I. Maven

You can find all the sources for this chapter here

Get started with Java and Spring series

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.

What you will learn here:

Throughout our journey we’ll build a simple Tube application which will crawl some videos from YouTube and present it on our website.

Introduction

Apache Maven is not just a dependency manager (like PHP’s Composer is) but a full stack project management solution which helps you to bootstrap your application using all the dependencies needed, build it and deploy.

Read More