Last active
August 23, 2018 03:48
-
-
Save jaocamp/ce3f0a9cd10e13dd72f177ba333b3ea2 to your computer and use it in GitHub Desktop.
CQRS e Event Sourcing com Axon Framework e Spring Boot - application.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server: | |
port: 8081 | |
spring: | |
datasource: | |
url: jdbc:postgresql://localhost:5432/bank-account-db | |
username: postgres | |
password: postgres | |
jpa: | |
database-platform: org.hibernate.dialect.PostgreSQL94Dialect | |
show-sql: true | |
generate-ddl: true | |
hibernate: | |
ddl-auto: create-drop | |
axon: | |
amqp: | |
exchange: bank-account.events |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment