Chris Richardson

Results 142 comments of Chris Richardson

Why doesn't `TransactionalNoopDuplicateMessageDetectorConfiguration` simply `@Import(EventuateTransactionTemplateConfiguration)`?

The documentation for the new features of the CDC is forthcoming. This commit illustrates how to upgrade from the old CDC: https://github.com/microservices-patterns/ftgo-application/pull/19 You can also specify a value of none...

This problem went away by itself: https://app.circleci.com/pipelines/github/eventuate-tram/eventuate-tram-sagas-quarkus

No. The choice is arbitrary. We could certain increase it. What message size are you using?

Where in the docs does it say micronaut jpa can work only with default datasource created by micronaut itself? What about "Did you enable trace logging for 'io.micronaut.context.condition' ?"

These are relevant: ``` Bean [Definition: io.micronaut.jdbc.spring.DataSourceTransactionManagerFactory] will not be loaded due to failing conditions: Custom condition [class io.micronaut.jdbc.spring.HibernatePresenceCondition] failed evaluation Bean [Definition: io.micronaut.configuration.hibernate.jpa.EntityManagerFactoryBean] will not be loaded due to...

A similar problem: https://stackoverflow.com/questions/58053152/setting-datasource-programmatically-in-micronaut-hibernate-for-heroku-postgres

Googling `micronaut No bean of type [javax.persistence.EntityManager] exists` found a few things: https://gitter.im/micronautfw/questions?at=5ca3427c93fb4a7dc2bf3107 > Graeme Rocher @graemerocher Apr 02 2019 04:08 > @AnandAili make sure the bean is @Named(“..”) something

In the docs https://docs.micronaut.io/latest/guide/index.html#eachBean: > Note that @EachBean requires that the parent bean has a @Named qualifier, since the qualifier is inherited by each bean created by @EachBean. https://github.com/micronaut-projects/micronaut-sql/blob/6f13956f4a8243b0f04ffeb6cccd6a6c98aa0706/hibernate-jpa/src/main/java/io/micronaut/configuration/hibernate/jpa/EntityManagerFactoryBean.java#L155-L157

@dartartem Why `@Named("default")` vs `@Named` vs. No `@Named`?