diff options
author | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-03-17 12:23:11 +0300 |
---|---|---|
committer | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-03-17 12:23:11 +0300 |
commit | ef2bec524581a63d989fc3de70433a118bd905fa (patch) | |
tree | abd166a5f65fd7c746bf216680bf8916bb4503a3 /src/main/resources/application.properties | |
parent | fef1dc61af7373892eb32595ddc47329c2167d78 (diff) |
feat(db): add hibernate session factory
Diffstat (limited to 'src/main/resources/application.properties')
-rw-r--r-- | src/main/resources/application.properties | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index e711a88..f1d166d 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,2 +1,6 @@ spring.application.name=warehouse_accounting +database.driver=org.postgresql.Driver +database.url=jdbc:postgresql://localhost:5432/warehouse_accounting +database.username=postgres +database.password=postgres |