java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using

Posted xuxu_dragon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using相关的知识,希望对你有一定的参考价值。

在使用spring-data-redis时使用junit测试报错:
  java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using

 

通过跟踪代码发现是这一句出了问题:

Assert.isTrue(this.initialized, "template not initialized; call afterPropertiesSet() before using it");

而initialized是在public void afterPropertiesSet() 中被赋值为true的。


解决方式:
不能直接在代码中用new来直接实例化,必须得用SpingBean的实例化方式来!







以上是关于java.lang.IllegalArgumentException: template not initialized; call afterPropertiesSet() before using的主要内容,如果未能解决你的问题,请参考以下文章

IllegalArgumentException:此 NavController 未知导航目的地 xxx