#73 fix deprecated parameters

pull/161/head
Anton Romanov 5 years ago
parent 993a034527
commit 167de9bf65

@ -2,12 +2,11 @@
spring.main.banner-mode=off spring.main.banner-mode=off
server.port=8443 server.port=8443
server.http.port=8080 server.http.port=8080
spring.http.multipart.maxFileSize=20MB multipart.maxFileSize=20MB
spring.http.multipart.maxRequestSize=20MB multipart.maxRequestSize=20MB
# Thymeleaf Settings # Thymeleaf Settings
spring.thymeleaf.cache=false spring.thymeleaf.cache=false
# SSL Settings # SSL Settings
security.require-ssl=true
server.ssl.key-store=classpath:sample.jks server.ssl.key-store=classpath:sample.jks
server.ssl.key-store-password=secret server.ssl.key-store-password=secret
server.ssl.key-password=password server.ssl.key-password=password
@ -25,14 +24,9 @@ spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFact
spring.datasource.url=jdbc:postgresql://localhost:5432/ng-tracker spring.datasource.url=jdbc:postgresql://localhost:5432/ng-tracker
spring.datasource.username=postgres spring.datasource.username=postgres
spring.datasource.password=postgres spring.datasource.password=postgres
spring.datasource.driverclassName=org.postgresql.Driver
spring.jpa.hibernate.ddl-auto=validate spring.jpa.hibernate.ddl-auto=validate
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQL95Dialect spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults = false
pring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
# Liquibase Settings # Liquibase Settings
#liquibase.drop-first=false
#liquibase.enabled=true
#liquibase.change-log=classpath:db/changelog-master.xml
spring.liquibase.change-log=classpath:db/changelog-master.xml spring.liquibase.change-log=classpath:db/changelog-master.xml
spring.liquibase.drop-first=false spring.liquibase.drop-first=false
spring.liquibase.enabled=true spring.liquibase.enabled=true

Loading…
Cancel
Save