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

时间:2023-03-08 20:40:14
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:

修改为

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

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

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