eventuate-clients / eventuate-client-java

Eventuate Java client
Other
53 stars 31 forks source link

Define @Configuration class that configures EventuateSchema #12

Open cer opened 6 years ago

cer commented 6 years ago

And @Import it when needed rather than duplicating:

  @Bean
  public EventuateSchema eventuateSchema(@Value("${eventuate.database.schema:#{null}}") String eventuateDatabaseSchema) {
    return new EventuateSchema(eventuateDatabaseSchema);
  }