.
This commit is contained in:
10
src/main/resources/config.properties
Normal file
10
src/main/resources/config.properties
Normal file
@@ -0,0 +1,10 @@
|
||||
#------------------------------------------------#
|
||||
jdbcUrl=jdbc\:mysql\://dbserver\:3306/jfly?useUnicode\=true&characterEncoding\=utf8&useSSL\=false
|
||||
user=root
|
||||
password=*hello9796!
|
||||
|
||||
redis.cache_name=jfly
|
||||
redis.database=1
|
||||
redis.host=dbserver
|
||||
redis.port=6379
|
||||
redis.timeout=5000
|
209
src/main/resources/db/jfly.sql
Normal file
209
src/main/resources/db/jfly.sql
Normal file
File diff suppressed because one or more lines are too long
80
src/main/resources/ehcache.xml
Normal file
80
src/main/resources/ehcache.xml
Normal file
@@ -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="604800"
|
||||
timeToLiveSeconds="129000">
|
||||
</defaultCache>
|
||||
|
||||
<!--
|
||||
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>
|
||||
<!-- maxEntriesLocalHeap="10000" 内存最多1W条-->
|
||||
<!-- maxEntriesLocalDisk="20000" 磁盘最多2W条-->
|
||||
<!-- eternal="false" 是否自动过期-->
|
||||
<!-- overflowToDisk="true" 是否自动存磁盘-->
|
||||
<!-- diskSpoolBufferSizeMB="50" DiskStore使用的磁盘大小,默认值30MB。每个cache使用各自的DiskStore-->
|
||||
<!-- timeToIdleSeconds="1800" 空闲过期时间-->
|
||||
<!-- timeToLiveSeconds="3600" 最长使用时间-->
|
||||
<!-- memoryStoreEvictionPolicy="LFU" 缓存策略-->
|
||||
<!-- transactionalMode="off" 使ehcache作为JTA事务的参与者-->
|
||||
<!-- FIFO (先进先出). -->
|
||||
<!-- LFU 最少使用) -->
|
||||
<!-- LRU 最近最少使用(ehcache 默认值) -->
|
3
src/main/resources/sql/user.sql
Normal file
3
src/main/resources/sql/user.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
#sql("user.list")
|
||||
SELECT * FROM `user`
|
||||
#end
|
Reference in New Issue
Block a user