Last active
August 23, 2018 03:41
-
-
Save jaocamp/5b2f551eadc94e114440b152f147fdc0 to your computer and use it in GitHub Desktop.
CQRS e Event Sourcing com Axon Framework e Spring Boot - application.yml Query APP
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: 8082 | |
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 | |
eventhandling: | |
processors: | |
amqpEvents: | |
source: complaintEventsMethod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment