SpringBoot中注入RedisTemplate报空指针

现象

RedisTemplate不能作为静态变量注入, 否则报空指针.

错误做法: private static RedisTemplate template;

@Component
public class RedisUtil {

	@Autowired
	private RedisTemplate<String, String> template;

}

你可能感兴趣的:(EX)