Java 基础教程

Java 面向对象

Java 高级教程

Java 笔记

Java FAQ

original icon
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.knowledgedict.com/tutorial/java-redis-template-not-initialized-error.html

java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using it 错误原因及解决方法

Java 笔记 Java 笔记


spring 容器初始化 RedisTemplate 并调用 RedisTemplate 的方法时,报错 java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using it

报错信息

报错的详细信息如下:

java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using it
	at org.springframework.util.Assert.isTrue(Assert.java:116)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:200)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultHashOperations.entries(DefaultHashOperations.java:231)
    ......

解决方法

RedisTemplate 不能显性直接使用,需要在 spring 容器里实例化,通过 spring 启动程序并注入 RedisTemplate 相应依赖 bean。

当我们的 Elasticsearch(es) client 升级到一定版本之后,原有的代码在使用 stored scripts 时,可能会报 ...
基于年粒度,使用 java 8 的 time api 进行时间跨度计算时,出现报错 java.time.temporal.Unsupport ...
在 mybatis 开发中,若遇到 org.apache.ibatis.binding.BindingException: Invalid ...
一般如我们在 pycharm 本地运行 pyspark 连接 mysql 时,可能会报 java.lang.ClassNotFoundExc ...
使用 pandas,调用 pd.read_csv 函数读取 csv 文件时,若读取基于分隔符的内容不对时,报类似 pandas.errors ...