What am I missing?
# spring
r
What am I missing?
s
Can you share the project ?
r
unfortunately I can't share the whole project
s
At least the Spring Data R2DBC code
r
but the most relevant code is here:
Copy code
@Table("pckonto4")
data class Pckonto4(
    @Column("pckonto4_id") val pckonto4_id: Int? = null,
    @Column("pckonto1_id") val pckonto1_id: Int? = null,
    @Column("temat") val temat: String? = null,
    @Column("status") val status: Int? = null
)
this hangs:
Copy code
databaseClient.execute("SELECT pckonto4_id, pckonto1_id, temat, status FROM pckonto4 WHERE grej1_id = :grej1Id AND status = 1 ORDER BY pckonto4_id LIMIT 1")
                .bind("grej1Id", 80).asType<Pckonto4>().fetch().one().block()
this works:
Copy code
databaseClient.execute("SELECT pckonto4_id, pckonto1_id, temat, status FROM pckonto4 WHERE grej1_id = :grej1Id AND status = 1 ORDER BY pckonto4_id LIMIT 1")
                .bind("grej1Id", 80).fetch().one().block()
all four values from the database are not nullable
Copy code
springBootVersion = '2.2.0.M5'
        springDataR2dbcVersion = '1.0.0.BUILD-SNAPSHOT'
        r2dbcPostgresqlVersion = '1.0.0.BUILD-SNAPSHOT'
I will be back some time later, thx for any suggestions
s
Maybe try with
1.0.0.M2
+ R2DBC
Arabba-M8
Hum won't work with Boot
2.2.0.M5
so you will have to wait we finish sync the portfolio