Changeset 5c20c64 for backend/src/main/resources/application.properties
- Timestamp:
- 02/10/26 14:02:45 (5 months ago)
- Branches:
- master
- Children:
- ff01f66
- Parents:
- 8615885
- File:
-
- 1 edited
-
backend/src/main/resources/application.properties (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
backend/src/main/resources/application.properties
r8615885 r5c20c64 4 4 # JPA & Hibernate 5 5 # ============================ 6 spring.jpa.hibernate.ddl-auto=update 6 # NOTE: On some managed PostgreSQL providers the app user cannot read pg_catalog views 7 # like pg_settings. Hibernate schema migration/metadata introspection can trigger that 8 # access during startup (e.g., when ddl-auto=update). 9 # 10 # Default to no automatic DDL. Override locally if your DB user has sufficient rights: 11 # export SPRING_JPA_HIBERNATE_DDL_AUTO=update 12 spring.jpa.hibernate.ddl-auto=${SPRING_JPA_HIBERNATE_DDL_AUTO:none} 7 13 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect 8 14 spring.jpa.show-sql=false … … 10 16 spring.jpa.properties.hibernate.default_schema=trekr 11 17 spring.jpa.properties.hibernate.hbm2ddl.create_namespaces=true 18 19 # Avoid JDBC metadata access on boot (further reduces pg_catalog permission requirements) 20 spring.jpa.properties.hibernate.boot.allow_jdbc_metadata_access=false 12 21 13 22 # ============================
Note:
See TracChangeset
for help on using the changeset viewer.
