报错:
Cannot invoke "org.springframework.data.redis.core.StringRedisTemplate.opsForValue()" because "this.stringRedisTemplate" is null
原因:
我有在拦截器中使用redisTemplate,因为 拦截器是在 WebConfig 中被直接实例化的,而不是由 Spring 容器管理的,所以它里面的依赖就不会被自动注入。
解决办法:
要解决这个问题,可以通过将 拦截器 配置为 Spring 管理的 Bean。这可以通过在 WebConfig 中使用 @Autowired 注入 拦截器来实现,或者在配置类中定义 拦截器的 Bean。
import com.luobei.interceptor.LoginInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Autowired
private LoginInterceptor log