在springmvc的配置文件中配置缓存报The prefix "cache" for element "cache:annotation-driven" is not bound.

在springmvc.xml的配置文件中加入缓存配置:

      
      
      
      
      
      
      
      
          
      
      
          
     
	

结果xml文件报错:The prefix "cache" for element "cache:annotation-driven" is not bound.

错误原因: 在定义的时候,xml文件没有加载相应的schema。

解决方法:

 springmvc.xml配置文件中加入:

xmlns:cache="http://www.springframework.org/schema/cache"

xsi:schemaLocation=“

        。。。省略其他

        http://www.springframework.org/schema/cache

        http://www.springframework.org/schema/cache/spring-cache.xsd”

 springmvc.xml的全部配置:


 

    
    
    
    
	      
      
      
      
      
      
      
      
          
      
      
          
     
	
	

 此时xml文件不再报错,问题解决。

我的座右铭:不会,我可以学;落后,我可以追赶;跌倒,我可以站起来;我一定行。

你可能感兴趣的:(bug错误相册)