Open prakash135sahu opened 3 years ago
eventuateTramVersion =0.25.1.RELEASE eventuateTramSagasVersion=0.14.0.RELEASE
Hello @prakash135sahu, unfortunately I was not able to reproduce the first issue.
Could you please create a repository with example configuration that produces errors? Then I will be able to investigate it more.
Second issue is reproducible. Problem is that EventuateCommonJdbcOperationsConfiguration is missed from TramConsumerJdbcAutoConfiguration. I will submit a fix. For now, please import the configuration explicitly. For example:
import io.eventuate.common.spring.jdbc.EventuateCommonJdbcOperationsConfiguration;
@SpringBootApplication
@Import(EventuateCommonJdbcOperationsConfiguration.class)
public class Main {
public static void main(String[] args) {
SpringApplication.run(Main.class, args);
}
}
Hello, Getting below issues while setting up SAGA , plain setup even without any code:
Issues no1: Parameter 1 of method sagaInstanceRepository in io.eventuate.tram.sagas.spring.orchestration.SagaOrchestratorConfiguration required a bean of type 'io.eventuate.common.id.IdGenerator' that could not be found.
The injection point has the following annotations:
Dependency used for Issue 1:
Issues No2: below error comes while including
Parameter 2 of method duplicateMessageDetector in io.eventuate.tram.spring.consumer.jdbc.TramConsumerJdbcAutoConfiguration required a bean of type 'io.eventuate.common.jdbc.EventuateJdbcStatementExecutor' that could not be found.