onsapp.bootstrap-user.1.0.24.source-code.application.properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap-user Show documentation
Show all versions of bootstrap-user Show documentation
A complete architecture for creating and managing users.
##Configura??o do Banco de Dados PostgreSQL
spring.jpa.database=postgresql
spring.datasource.url=jdbc:postgresql://localhost:5432/bootstrap-user
spring.datasource.username=postgres
spring.datasource.password=123456
spring.datasource.driver-class-name=org.postgresql.Driver
spring.jpa.properties.hibernate.dialect =org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto=create-drop
##Habilita o SQL ser apresentado no console.
spring.jpa.show-sql=true
## Autoriza a falha caso algum Json seja passado com propriedades diferentes da classe representante.
spring.jackson.deserialization.fail-on-unknown-properties=true
## Configura??es para enviar email usando o gmail
spring.mail.host=smtp.gmail.com
spring.mail.port=587
[email protected]
spring.mail.password=111040171
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true