BAEL-19376 Do we have any Spring Milestone/RC repos defined?
- Removed spring milestone repositories dependencies, used Central GA releases as a fix
This commit is contained in:
+4
-2
@@ -1,8 +1,10 @@
|
||||
package com.baeldung.r2dbc.repository;
|
||||
|
||||
import com.baeldung.r2dbc.model.Player;
|
||||
import org.springframework.data.r2dbc.repository.query.Query;
|
||||
import org.springframework.data.r2dbc.repository.Query;
|
||||
import org.springframework.data.repository.reactive.ReactiveCrudRepository;
|
||||
|
||||
import com.baeldung.r2dbc.model.Player;
|
||||
|
||||
import reactor.core.publisher.Flux;
|
||||
|
||||
public interface PlayerRepository extends ReactiveCrudRepository<Player, Integer> {
|
||||
|
||||
+1
-2
@@ -43,8 +43,7 @@ public class R2dbcApplicationIntegrationTest {
|
||||
"DROP TABLE IF EXISTS player;",
|
||||
"CREATE table player (id INT AUTO_INCREMENT NOT NULL, name VARCHAR2, age INT NOT NULL);");
|
||||
|
||||
statements.forEach(it -> client.execute() //
|
||||
.sql(it) //
|
||||
statements.forEach(it -> client.execute(it) //
|
||||
.fetch() //
|
||||
.rowsUpdated() //
|
||||
.as(StepVerifier::create) //
|
||||
|
||||
Reference in New Issue
Block a user