Skip to content

Lightweight Java PSQL Database interaction framework to be used effectively on micro-apps or lambdas running on Java, but can be used for traditional apps as well

License

Notifications You must be signed in to change notification settings

ricomaster9000/LightWeight_Java_PSQL_Framework

Repository files navigation

LightWeight_Java_PSQL_Framework

Lightweight Java PSQL Database interaction framework built to be used effectively on lambdas running on Java but can be used for traditional apps as well

For Java 17+

Dependency size is small (what lambdas need when cold booting), I tried to keep it as small as possible, but further improvements could perhaps still be made

It uses Apache's DB Utils as its core, with more code wrapped around that but it still allows you to go full base and just execute raw queries via Apache DB utils core

This is for people who want something more simpler than Hibernate or JPA/JTA frameworks with a very small library size footprint and less abstracted deeper layers like entity context layer etc. This is not a full replacement for those frameworks, but a "light" replacement, it could become a good "light" replacement in the future...

set the following properties inside you properties file or as environment variables:

  • datasource.url or DATABASE_URL(must contain full connection path plus db name)
    • example format: jdbc:postgresql://host:port/database
  • datasource.username or DATABASE_USERNAME
  • datasource.password or DATABASE_PASSWORD

optionally set the following properties inside your properties file or as environment variables:

  • datasource.max_db_connection_pool_size or DB_CONNECTION_POOL_SIZE (defaults to 40)

Also, every public method in the BaseRepository class is usable for every defined Repository class, these come available from the start, there are many methods (in https://github.com/ricomaster9000/LightWeight_Java_PSQL_Framework/blob/main/src/main/java/org/greatgamesonly/shared/opensource/sql/framework/lightweightsql/database/BaseRepository.java)

add as dependency by using jitpack.io, go to this link: https://jitpack.io/#ricomaster9000/LightWeight_Java_PSQL_Framework/1.5.4

Will upload to Maven later, once I am fully done and have more time

About

Lightweight Java PSQL Database interaction framework to be used effectively on micro-apps or lambdas running on Java, but can be used for traditional apps as well

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages