-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julien Dubois
committed
Nov 5, 2013
1 parent
2ad3fd1
commit f3ab366
Showing
4 changed files
with
45 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 0 additions & 23 deletions
23
app/templates/src/test/resources/META-INF/application/application.properties
This file was deleted.
Oops, something went wrong.
21 changes: 8 additions & 13 deletions
21
app/templates/src/test/resources/META-INF/spring/_applicationContext-database.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd" | ||
name="CM1" | ||
updateCheck="false" | ||
maxBytesLocalHeap="16M"> | ||
|
||
<diskStore path="java.io.tmpdir"/> | ||
|
||
<defaultCache | ||
eternal="false" | ||
overflowToDisk="false" | ||
/> | ||
|
||
<cache name="<%=packageName%>.domain.User" | ||
timeToLiveSeconds="3600"> | ||
</cache> | ||
|
||
<cache name="<%=packageName%>.domain.Authority" | ||
timeToLiveSeconds="3600"> | ||
</cache> | ||
|
||
<cache name="<%=packageName%>.domain.User.authorities" | ||
timeToLiveSeconds="3600"> | ||
</cache> | ||
|
||
<cache name="<%=packageName%>.domain.PersistentToken" | ||
timeToLiveSeconds="3600"> | ||
</cache> | ||
|
||
<cache name="<%=packageName%>.domain.User.persistentTokens" | ||
timeToLiveSeconds="3600"> | ||
</cache> | ||
|
||
</ehcache> | ||
|