Skip to content
This repository has been archived by the owner on Apr 30, 2019. It is now read-only.

Commit

Permalink
lib
Browse files Browse the repository at this point in the history
  • Loading branch information
uikoo9 committed Nov 9, 2014
1 parent bd43690 commit a4e7baa
Show file tree
Hide file tree
Showing 14 changed files with 80 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .classpath
Expand Up @@ -5,7 +5,5 @@
<classpathentry kind="con" path="melibrary.com.genuitec.eclipse.j2eedt.core.MYECLIPSE_JAVAEE_6_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ueditor"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jfinal-1.8"/>
<classpathentry kind="output" path="WebRoot/WEB-INF/classes"/>
</classpath>
5 changes: 0 additions & 5 deletions WebRoot/WEB-INF/classes/.gitignore

This file was deleted.

80 changes: 80 additions & 0 deletions WebRoot/WEB-INF/classes/ehcache.xml
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd"
updateCheck="false" monitoring="autodetect"
dynamicConfig="true">

<diskStore path="java.io.tmpdir"/>

<defaultCache
maxEntriesLocalHeap="10000"
eternal="false"
overflowToDisk="true"
timeToIdleSeconds="20"
timeToLiveSeconds="60">
</defaultCache>

<!-- default cache named cache -->
<cache name="cache"
maxEntriesLocalHeap="10000"
maxEntriesLocalDisk="1000"
eternal="false"
overflowToDisk="true"
diskSpoolBufferSizeMB="20"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off"
/>

<!--
Sample cache named sampleCache1
This cache contains a maximum in memory of 10000 elements, and will expire
an element if it is idle for more than 5 minutes and lives for more than
10 minutes.
If there are more than 10000 elements it will overflow to the
disk cache, which in this configuration will go to wherever java.io.tmp is
defined on your system. On a standard Linux system this will be /tmp"
-->
<cache name="sampleCache1"
maxEntriesLocalHeap="10000"
maxEntriesLocalDisk="1000"
eternal="false"
overflowToDisk="true"
diskSpoolBufferSizeMB="20"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off"
/>

<!--
Sample cache named sampleCache2
This cache has a maximum of 1000 elements in memory. There is no overflow to disk, so 1000
is also the maximum cache size. Note that when a cache is eternal, timeToLive and
timeToIdle are not used and do not need to be specified.
-->
<cache name="sampleCache2"
maxEntriesLocalHeap="1000"
eternal="true"
overflowToDisk="false"
memoryStoreEvictionPolicy="FIFO"
/>

<!--
Sample cache named sampleCache3. This cache overflows to disk. The disk store is
persistent between cache and VM restarts. The disk expiry thread interval is set to 10
minutes, overriding the default of 2 minutes.
-->
<cache name="sampleCache3"
maxEntriesLocalHeap="500"
eternal="false"
overflowToDisk="true"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
diskPersistent="true"
diskExpiryThreadIntervalSeconds="1"
memoryStoreEvictionPolicy="LFU"
/>
</ehcache>
Binary file added WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/commons-codec-1.9.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/commons-fileupload-1.3.1.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/commons-io-2.4.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/ehcache-core-2.5.2.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/freemarker-2.3.20.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/jfinal-1.8-bin-with-src.jar
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/json.jar
Binary file not shown.
Binary file not shown.
Binary file added WebRoot/WEB-INF/lib/ueditor-1.1.1.jar
Binary file not shown.
Binary file modified WebRoot/WEB-INF/lib/uikoo9-util-20141109.jar
Binary file not shown.

0 comments on commit a4e7baa

Please sign in to comment.