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>
  • 相关阅读:
    fabric.js 学习
    前端基础回顾
    ubuntu16 mysql 远程连接
    Django rest_framework API 随笔
    django 学习笔记
    vue 返回上一页在原来的位置
    Django mysql 改用pymysql 驱动
    Material-UI
    设置placeholder的样式
    Cookie、session和localStorage、以及sessionStorage之间的区别
  • 原文地址:https://www.cnblogs.com/coderdxj/p/9837268.html
Copyright © 2011-2022 走看看