Closed
Description
In RedisTemplate#afterPropertiesSet
, if any of serializers are null and enableDefaultSerializer
is true, they are set to defaultSerializer
. After this, it checks if the defaultSerializer
was also null, in which case an exception should be thrown. However, this cannot be the case, as defaultSerializer
is pre-initialized to JdkSerializationRedisSerializer
, if null.