Spring Boot & H2 Tutorial
Selected Reading
- Spring Boot & H2 - Discussion
- Spring Boot & H2 - Useful Resources
- Spring Boot & H2 - Quick Guide
- Spring Boot & H2 - Unit Test Repository
- Spring Boot & H2 - Unit Test Service
- Spring Boot & H2 - Unit Test Controller
- Spring Boot & H2 - Delete Record
- Spring Boot & H2 - Update Record
- Spring Boot & H2 - Get All Records
- Spring Boot & H2 - Get Record
- Spring Boot & H2 - Add Record
- Spring Boot & H2 - H2 Console
- Spring Boot & H2 - REST APIs
- Spring Boot & H2 - Project Setup
- Spring Boot & H2 - Environment Setup
- Spring Boot & H2 - Overview
- Spring Boot & H2 - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Spring Boot & H2 - Home
Spring Boot & H2 Tutorial
Spring Boot provides a intrinsic support for an in memory database, H2 and is minimal in configurations. Developers can quickly start a apppcation with CRUD capabipties within a hour. H2 is a in memory database and acts as an embedded database. It persists data only upto the time when apppcation is running. Permanent storage can be configured as well.
Audience
This tutorial is designed for Java programmers who would pke to understand the Spring Boot apppcation to connect to H2 database in detail along with actual usage.
Prerequisites
Before proceeding with this tutorial, you should have a good understanding of Java programming language. As you are going to deal with H2 database, you should have prior exposure to RDBMS and Database concepts.
Advertisements