diff --git a/module/spring-boot-data-redis-test/build.gradle b/module/spring-boot-data-redis-test/build.gradle index b586f43dc0e..4476fe889f3 100644 --- a/module/spring-boot-data-redis-test/build.gradle +++ b/module/spring-boot-data-redis-test/build.gradle @@ -48,3 +48,11 @@ dependencies { testRuntimeOnly("ch.qos.logback:logback-classic") } + +tasks.named("compileTestJava") { + options.nullability.checking = "tests" +} + +tasks.named("compileDockerTestJava") { + options.nullability.checking = "tests" +} diff --git a/module/spring-boot-data-redis-test/src/dockerTest/java/org/springframework/boot/data/redis/test/autoconfigure/PersonHash.java b/module/spring-boot-data-redis-test/src/dockerTest/java/org/springframework/boot/data/redis/test/autoconfigure/PersonHash.java index 40ac0cb0856..a1729937edd 100644 --- a/module/spring-boot-data-redis-test/src/dockerTest/java/org/springframework/boot/data/redis/test/autoconfigure/PersonHash.java +++ b/module/spring-boot-data-redis-test/src/dockerTest/java/org/springframework/boot/data/redis/test/autoconfigure/PersonHash.java @@ -16,6 +16,8 @@ package org.springframework.boot.data.redis.test.autoconfigure; +import org.jspecify.annotations.Nullable; + import org.springframework.data.annotation.Id; import org.springframework.data.redis.core.RedisHash; @@ -28,23 +30,23 @@ import org.springframework.data.redis.core.RedisHash; public class PersonHash { @Id - private String id; + private @Nullable String id; - private String description; + private @Nullable String description; - public String getId() { + public @Nullable String getId() { return this.id; } - public void setId(String id) { + public void setId(@Nullable String id) { this.id = id; } - public String getDescription() { + public @Nullable String getDescription() { return this.description; } - public void setDescription(String description) { + public void setDescription(@Nullable String description) { this.description = description; }