Seems Composite Key/@Embedded are not supported in R2DBC - link , I am trying to insert data using @Query annotation like below.
@Repository("testRepository")
public interface TestRepository extends R2dbcRepository<Test, testEmbeddedId> {
@Modifying
@Query(value = "insert into test(id, name, status, created_date) VALUES ('b128f97d-d52c-4677-8746-00e2959c9ec6', 'c', 'd', '2022-10-28')")
@Transactional
void insertData();
}
But this is failed without giving any error. Any idea about this issue or any alternative approach here.