当尝试在mysql数据库中插入记录时,不会插入任何内容。下面是使用的源代码:
public Uni<Tenant> persist(Tenant tenant) {
return client.preparedQuery("INSERT INTO TENANT (ID, NAME, ACTIVE, CREATED_DATE, UPDATED_DATE) VALUES (?, ?, ?, ?, ?) ")
.execute(Tuple.of(tenant.getId(), tenant.getName(), tenant.getActive(), tenant.getCreatedDate(),
tenant.getUpdatedDate()))
.onFailure().invoke(failure -> System.out.println("Failed with " + failure.getMessage()))
.onCancellation().invoke(() -> System.out.println("Downstream has cancelled the interaction"))
.onItem().transform(i -> of(i.iterator().next()));
}
我使用以下版本:
quarkus 1.9.2.最终版本
mysql 8.0.22-0ubuntu0.20.04.2(ubuntu)
采用OpenJDK(构建11.0.8+10)
暂无答案!
目前还没有任何答案,快来回答吧!