Cannot resolve reference to bean 'cacheManager'
来源:5-8 SpringMVC开发环境验证

慕码人5437048
2020-01-19
tomcate运行后显示错误 19-Jan-2020 15:06:33.469 璀﹀憡 [http-nio-8080-exec-4] org.springframework.web.context.support.XmlWebApplicationContext.refresh Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.cache.interceptor.CacheInterceptor#0': Cannot resolve reference to bean 'cacheManager' while setting bean property 'cacheManager'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'cacheManager' available 19-Jan-2020 15:06:33.471 涓ラ噸 [http-nio-8080-exec-4] org.springframework.web.servlet.DispatcherServlet.initServletBean Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.cache.interceptor.CacheInterceptor#0': Cannot resolve reference to bean 'cacheManager' while setting bean property 'cacheManager'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'cacheManager' available
写回答
3回答
-
你好,找一下代码里有cacheManager的类,贴一下代码看看,应该是配置的细节有问题
012020-01-20 -
慕码人5437048
提问者
2020-01-20
解决了,spring-servlet.xml里beans的cache要都更换成mvc
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
012020-01-21 -
慕码人5437048
提问者
2020-01-20
cacheManager类是这样的
// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package org.springframework.cache; import java.util.Collection; public interface CacheManager { Cache getCache(String var1); Collection<String> getCacheNames(); }
00
相似问题