前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。
报错如题: .SpelEvaluationException: EL1008E: Property or field 'cache_department_list_Tree' cannot be found on object of type 'org.springframework.cache.interceptor.CacheExpressionRootObject' - maybe not public?
这是在一个springboot 工程中开启缓存的使用,缓存注解加在一个public方法A上,但方法A调用了一个private方法B。
解决:把方法B也改为public 。
(cache_department_list_Tree 是缓存的key)