Guest User

Untitled

a guest
Oct 23rd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
  2. spring.datasource.url=jdbc:postgresql://localhost:5432/familywatch
  3. spring.datasource.username=postgres
  4. spring.datasource.password=root
  5.  
  6. # O Dialeto SQL faz com que o Hibernate gere SQL melhor para o DB selecionado
  7. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
  8.  
  9. # Para o Hibernate atualizar o banco quando necessário
  10. spring.jpa.hibernate.ddl-auto = update
Add Comment
Please, Sign In to add comment