Revize 45d0c4d7
Přidáno uživatelem Jakub Šmíd před asi 3 roky(ů)
backend/src/main/resources/application.properties | ||
---|---|---|
1 |
spring.datasource.url=jdbc:postgresql://localhost:5432/test |
|
2 |
spring.datasource.username=test |
|
3 |
spring.datasource.password=Password.123 |
|
1 | 4 |
|
5 |
spring.jpa.hibernate.ddl-auto=create-drop |
|
6 |
spring.jpa.generate-ddl=true |
|
7 |
spring.jpa.open-in-view=false |
|
8 |
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL10Dialect |
|
9 |
spring.jpa.properties.hibernate.format_sql=true |
|
10 |
spring.jpa.show-sql=true |
Také k dispozici: Unified diff
Added entities
- connected to Postgres database
- created repositories and services for entities
- created setup for given csv catalog data
re #9191
re #9099