diff --git a/src/main/java/org/springframework/data/redis/core/RedisTemplate.java b/src/main/java/org/springframework/data/redis/core/RedisTemplate.java index 9075f96933..60e26b05f9 100644 --- a/src/main/java/org/springframework/data/redis/core/RedisTemplate.java +++ b/src/main/java/org/springframework/data/redis/core/RedisTemplate.java @@ -83,6 +83,7 @@ * @author Mark Paluch * @author Denis Zavedeev * @author ihaohong + * @author Jihoon Cha * @param the Redis key type against which the template works (usually a String) * @param the Redis value type against which the template works * @see StringRedisTemplate @@ -238,6 +239,7 @@ public T execute(RedisCallback action, boolean exposeConnection, boolean * @see org.springframework.data.redis.core.RedisOperations#execute(org.springframework.data.redis.core.SessionCallback) */ @Override + @Nullable public T execute(SessionCallback session) { Assert.isTrue(initialized, "template not initialized; call afterPropertiesSet() before using it");