spring-boot 集成ehcache报错:org.springframework.expression.spel.SpelEvaluationException: EL1008E:...

错误信息:org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'pageable' cannot be found on object of type 'org.springframework.cache.interceptor.CacheExpressionRootObject' - maybe not public or not valid?

错误原因:

@Cacheable 注解中key的值变量之前没有加#(井号)

spring-boot 集成ehcache报错:org.springframework.expression.spel.SpelEvaluationException: EL1008E:..._第1张图片

 

修改为

spring-boot 集成ehcache报错:org.springframework.expression.spel.SpelEvaluationException: EL1008E:..._第2张图片

 

如果你也报了同样的错误可以仔细检查一下

 有兴趣的朋友可以查看本人spring-boot-ehcache GitHub项目

 

转载于:https://www.cnblogs.com/brokencolor/p/10857759.html

你可能感兴趣的:(spring-boot 集成ehcache报错:org.springframework.expression.spel.SpelEvaluationException: EL1008E:...)