Jeff Maxwell

Results 6 comments of Jeff Maxwell

My native query example: Fails: ```java String FIND_BY_ALL_ATTRIBUTES_QUERY = """ SELECT * FROM #{#entityName} WHERE attributes @> CAST(?1 as jsonb) """; ``` Resulting bad query: ```sql SELECT COUNT(WHERE) FROM someTable...

Having private fields blocks subclasses from using Lombok's `@Builder(toBuilder=true)` support.

That only works if the commands/flags in [KeycloakContainer](https://github.com/dasniko/testcontainers-keycloak/blob/bc831c5c4b1e97ded78e7c5cf9f144d0438e794d/src/main/java/dasniko/testcontainers/keycloak/KeycloakContainer.java) stay the same between versions. To me it seems safer and more user friendly to keep MAJOR and MINOR versions incrementing with...

Below is a rough example of a workaround: ```java import static java.util.Optional.*; import static org.jooq.lambda.Seq.*; import java.util.List; import java.util.stream.Collectors; import java.util.stream.Stream; import org.jooq.lambda.Seq; import org.jooq.lambda.tuple.Tuple2; import org.junit.Test; import lombok.Value; public...

> Unless i'm wrong, i think that it's still a issue. > > When i'm running spotbugs gradle task, the task is giving these warnings, not a real issue because...