zoukankan      html  css  js  c++  java
  • Cannot find the declaration of element 'ehcache'.

    ehchahe.xml中报错:

    Cannot find the declaration of element 'ehcache'.

    由于

    <?xml version="1.0" encoding="utf-8"?>
    <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="ehcache.xsd">//路径不对
    <diskStore path="java.io.tmpdir" />
    <defaultCache maxElementsInMemory="1000" eternal="false"
    timeToIdleSeconds="600" timeToLiveSeconds="600" overflowToDisk="true"
    memoryStoreEvictionPolicy="LRU" />

    <cache name="schoolInfo" maxElementsInMemory="5000" eternal="false"
    timeToLiveSeconds="7200" timeToIdleSeconds="7200" overflowToDisk="true" />
    </ehcache>

    改为:

    <?xml version="1.0" encoding="utf-8"?>
    <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
    <diskStore path="java.io.tmpdir" />
    <defaultCache maxElementsInMemory="1000" eternal="false"
    timeToIdleSeconds="600" timeToLiveSeconds="600" overflowToDisk="true"
    memoryStoreEvictionPolicy="LRU" />

    <cache name="schoolInfo" maxElementsInMemory="5000" eternal="false"
    timeToLiveSeconds="7200" timeToIdleSeconds="7200" overflowToDisk="true" />
    </ehcache>
  • 相关阅读:
    springboot2.0整合logback日志(详细)
    关于Logstash中grok插件的正则表达式例子
    feign多文件上传
    HBase API(新版本)
    HBase基础知识
    Hive数据操作和数据查询
    Hive数据定义
    Hive基础知识
    Hive安装
    Spark词频统计,求TOP值,文件排序,二次排序
  • 原文地址:https://www.cnblogs.com/coderdxj/p/9837268.html
Copyright © 2011-2022 走看看