更新 template/entrance/web/src/main/resources/application-local.properties

#支持postgresql
This commit is contained in:
ycl
2024-09-20 11:55:27 +08:00
parent 978f44afba
commit 218518bbf2

View File

@@ -14,10 +14,14 @@ spring.datasource.password=${DB_PASSWORD:{{ .dbPassword }}}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
{{- else if eq .dbType "postgresql" }} {{- else if eq .dbType "postgresql" }}
spring.datasource.driver-class-name=org.postgresql.Driver spring.datasource.driver-class-name=org.postgresql.Driver
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
vs.sqlmapper.dialect=postgresql
{{- end }} {{- end }}
spring.datasource.type=org.apache.tomcat.jdbc.pool.DataSource spring.datasource.type=org.apache.tomcat.jdbc.pool.DataSource
spring.datasource.tomcat.max-age=3600000 spring.datasource.tomcat.max-age=3600000
spring.jpa.open-in-view=false spring.jpa.open-in-view=false
vs.sqlmapper.showSql=true
hibernate.show_sql=true
# flyway # flyway
spring.flyway.enabled=false spring.flyway.enabled=false