Skip to content

Instantly share code, notes, and snippets.

@jaocamp
Last active August 23, 2018 03:41
Show Gist options
  • Save jaocamp/5b2f551eadc94e114440b152f147fdc0 to your computer and use it in GitHub Desktop.
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
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