Commit 40488573 authored by Ben Anderson's avatar Ben Anderson

Started spring boot fundamentals

parent f7720587
spring.datasource.url=jdbc:postgresql://localhost:5432/conference_app
spring.datasource.url=${DB_URL}
spring.datasource.username=postgres
spring.datasource.password=Welcome
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
......@@ -6,3 +6,5 @@ spring.jpa.hibernate.ddl-auto=none
spring.jpa.hibernate.show-sql=true
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
server.port=5000
spring:
datasource:
url: ${DB_URL}
username: postgres
password: Welcome
jpa:
database-platform: org.hibernate.dialect.PostgreSQLDialect
hibernate:
ddl-auto: none
show-sql: true
properties:
hibernate:
jdbc:
lob:
non_contextual_creation: true
server:
port: 5000
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment