Skip to content

Example SpringBoot app using JPA for accessing data from a Postgres table using LTree for Hierarchical data structure

Notifications You must be signed in to change notification settings

biniama/postgres-ltree-spring-boot-jpa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Implementation of Postgres LTree in Spring Boot app

First create the database and a super user manually

CREATE DATABASE tmdb;
CREATE USER tmc WITH ENCRYPTED PASSWORD 'tmc';
GRANT ALL PRIVILEGES ON DATABASE tmdb TO tmc;
ALTER USER tmc WITH SUPERUSER;

About

Example SpringBoot app using JPA for accessing data from a Postgres table using LTree for Hierarchical data structure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages