skip to Main Content

Redis – Debezium spring boot configuration not able to handle events when there is a change in database

I have the following configuration setup. build.gradle: plugins { id 'java' id 'org.springframework.boot' version '3.1.0-SNAPSHOT' id 'io.spring.dependency-management' version '1.1.0' id 'org.sonarqube' version "4.0.0.2929" id "jacoco" } group = 'com.realtime' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17' configurations { compileOnly { extendsFrom…

VIEW QUESTION

Mysql – JdbcBatchItemWriter Error Parameter index out of range

There's an error on using Spring batch JdbcBatchItemWriter. insert into books(order_id, order_no, paid_payment_id) values (:orderId, :orderNo, :paidPaymentId) enter image description here private JdbcBatchItemWriter<BooksEntity> booksWriter() { return new JdbcBatchItemWriterBuilder<BooksEntity>() .itemSqlParameterSourceProvider(new BeanPropertyItemSqlParameterSourceProvider<>()) .dataSource(dataSource) .sql( "insert into books(order_id, order_no, paid_at, paid_payment_id, pay_method, pay_no,…

VIEW QUESTION
Back To Top
Search