Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
youka-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
java-youka-wallet
youka-manage
Commits
6747fd56
Commit
6747fd56
authored
Jun 01, 2018
by
wangxu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
97da57ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
1 deletions
+35
-1
pom.xml
pom.xml
+2
-1
ehcache-local.xml
src/main/resources/cache/ehcache-local.xml
+33
-0
No files found.
pom.xml
View file @
6747fd56
...
...
@@ -24,7 +24,7 @@
<ehcache.version>
2.6.11
</ehcache.version>
<ehcache-web.version>
2.0.4
</ehcache-web.version>
<shiro.version>
1.2.3
</shiro.version>
<sitemesh.version>
2.4.2
</sitemesh.version>
<sitemesh.version>
2.4.2
</sitemesh.version>
`
<activiti.version>
5.21.0
</activiti.version>
<!-- tools version setting -->
...
...
@@ -641,6 +641,7 @@
<groupId>
net.sf.json-lib
</groupId>
<artifactId>
json-lib
</artifactId>
<version>
2.4
</version>
<classifier>
jdk15
</classifier>
</dependency>
...
...
src/main/resources/cache/ehcache-local.xml
0 → 100644
View file @
6747fd56
<?xml version="1.0" encoding="UTF-8"?>
<ehcache
updateCheck=
"false"
name=
"defaultCache"
>
<diskStore
path=
"../temp/jeesite/ehcache"
/>
<!-- 默认缓存配置. 自动失效:最后一次访问时间间隔300秒失效,若没有访问过自创建时间600秒失效。-->
<defaultCache
maxEntriesLocalHeap=
"1000"
eternal=
"false"
timeToIdleSeconds=
"300"
timeToLiveSeconds=
"600"
overflowToDisk=
"true"
statistics=
"true"
/>
<!-- 系统缓存 -->
<cache
name=
"sysCache"
maxEntriesLocalHeap=
"1000"
eternal=
"true"
overflowToDisk=
"true"
statistics=
"true"
/>
<!-- 用户缓存 -->
<cache
name=
"userCache"
maxEntriesLocalHeap=
"1000"
eternal=
"true"
overflowToDisk=
"true"
statistics=
"true"
/>
<!-- 集团缓存 -->
<cache
name=
"corpCache"
maxEntriesLocalHeap=
"1000"
eternal=
"true"
overflowToDisk=
"true"
statistics=
"true"
/>
<!-- 内容管理模块缓存 -->
<cache
name=
"cmsCache"
maxEntriesLocalHeap=
"1000"
eternal=
"true"
overflowToDisk=
"true"
statistics=
"true"
/>
<!-- 工作流模块缓存 -->
<cache
name=
"actCache"
maxEntriesLocalHeap=
"100"
eternal=
"true"
overflowToDisk=
"true"
statistics=
"true"
/>
<!-- 简单页面缓存 -->
<cache
name=
"pageCachingFilter"
maxEntriesLocalHeap=
"1000"
eternal=
"false"
timeToIdleSeconds=
"120"
timeToLiveSeconds=
"120"
overflowToDisk=
"true"
memoryStoreEvictionPolicy=
"LFU"
statistics=
"true"
/>
<!-- 系统活动会话缓存 -->
<cache
name=
"activeSessionsCache"
maxEntriesLocalHeap=
"10000"
eternal=
"true"
overflowToDisk=
"true"
diskPersistent=
"true"
diskExpiryThreadIntervalSeconds=
"600"
statistics=
"true"
/>
</ehcache>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment