Skip to content

UpSkillDev points you to the right pathway to help learn new technologies. Go through this guide and join the community on Spectrum to collaborate. This repository contains path to getting started Java backend development.

Notifications You must be signed in to change notification settings

upskilldev/java-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 

Repository files navigation

Join our community on Spectrum to ask your doubts on the way: Join the community on Spectrum

JAVA Backend Development

Overview :

This repository contains path that will help you to learn Java, Spring / Spring Boot, Hibernate, RESTful APIs & related technologies to build Java-based web applications.

JAVA PROGRAMMING PART 1

1. Basics of Java

2. Java OOPs Concepts

3. Exception Handling in Java

4. String, StringBuffer & StringBuilder

5. Regular Expression

JAVA PROGRAMMING PART 2

6. Java Collection

7. Lanbda and Streams

8. File Handling in Java

9. Threads in Java:

10. Introduction to MySql

11. JDBC (Java Database Connectivity)

Basics of Java can be learnt from this course

Service Layer using Spring with Spring Boot

The service layer interacts with the presentation layer and the persistence layer.

12. Introduction to Web Services :

Web services are client and server applications that communicate over the World Wide Web’s (WWW) HyperText Transfer Protocol (HTTP). Web services provide a standard means of interoperating between software applications running on a variety of platforms and frameworks Learn More

13. Introduction to Spring Framework :

Spring Framework is an open source Java application development framework which supports building all types of Java applications like web applications, database driven applications, enterprise applications and many more. Java applications developed using Spring are simple, easily testable, reusable and maintainable Learn More

14. Dependency Injection using Autowiring :

What is Autowiring?

15. Introduction to Spring Boot :

Spring Boot is a framework built on the top Spring framework that helps developers build Spring-based applications quickly and easily. The main goal of Spring Boot is to quickly create Spring-based applications without requiring developers to write the same boilerplate configuration again and again Learn More

Persistence Layer using Spring ORM with Spring Boot

The persistence layer is the layer which interacts with the relational database and service layer. It gets data from service layer, performs operations on database and sends back results to service layer. In this layer the code to interact with database is implemented.

17. Spring JDBC :

You have already learned how to use JDBC for data access. But using JDBC is challenging because of following reasons:

  • Connection Management
  • Exception Handling
  • Code Duplication
    So to make use of JDBC easier Spring provided one layer of abstraction, called Spring JDBC, on top of existing JDBC technology Learn More

19. Object Relational Mapping (ORM) :

You have learned how to use Spring JDBC for developing persistence layer. But Spring JDBC code involves both Java objects (object model) and SQL queries (relational model) which makes it difficult to use. This is because the way data is stored in objects is different from the way it is stored in tables and so some sort of translation is required between object model and relational model. But this translation is not easy because of paradigm mismatch between object and relational model. This paradigm mismatch is called as Object-Relational Impedance Mismatch and it exposes following problems :

  • Problem of Granularity
  • Problem of Inheritance
  • Problem of Identity
  • Problem of Associations
  • Problem of Data Navigation
    To handle these problems, a technique called as Object-Relational Mapping (ORM) came into market. It handles object relational impedance mismatch by providing a way to map objects directly to tables so that object model can be automatically translated to relation model and vice versa, This let developers focus only on the object model Learn More

20. Introduction to JPA :

The Java Persistence API (JPA) is Java EE specification that defines how data persistence‐related tasks are handled using object‐relational mapping (ORM) frameworks in Java applications Learn More

21. Spring JPA:

The Spring Framework provides support for JPA, Hibernate, and other ORM frameworks. You can easily integrate these frameworks with Spring. Learn how to use JPA with Spring Boot

22. Java Persistence Query Language (JPQL) :

JPA provides a query language called as Java Persistence Query Language (JPQL). Its syntax is very similar to SQL but these queries are defined using entity classes and its attributes instead of tables and columns. This makes it easy for Java developers to use it. But since database uses SQL JPA implementations translates the JPQL query into SQL using query translator Learn More

Presentation Layer

The presentation layer of an enterprise application handles the client requests and provide clients a visual view of the information. It also allows them to perform business functions provided and managed by the application.

About

UpSkillDev points you to the right pathway to help learn new technologies. Go through this guide and join the community on Spectrum to collaborate. This repository contains path to getting started Java backend development.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published