日常bug积累

版权声明:尊重每个工程师的劳动成果. https://blog.csdn.net/qq_34118819/article/details/82082151

错误名称:

通配符的匹配很全面, 但无法找到元素 'cache:annotation-driven' 的声明

错误原因:

没有联网,或者公司网络有代理无法访问相关连接

<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:aop="http://www.springframework.org/schema/aop" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:cache="http://www.springframework.org/schema/cache"  
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/context 
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
           http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
           http://www.springframework.org/schema/cache
       	   http://www.springframework.org/schema/cache/spring-cache-4.2.xsd">

猜你喜欢

转载自blog.csdn.net/qq_34118819/article/details/82082151