码迷,mamicode.com
首页 > 编程语言 > 详细

Java高级架构师(一)第24节:加入ehcache,把工程加入到Git

时间:2018-12-14 17:23:34      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:over   html   xsd   element   location   1.0   odi   space   mes   

ehcache的maven配置:

<!-- ehcache的jar -->
<dependency>
	<groupId>net.sf.ehcache</groupId>
	<artifactId>ehcache</artifactId>
	<version>2.8.0</version>
</dependency>

ehcache的配置文件:

<?xml version="1.0" encoding="UTF-8"?>  
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xsi:noNamespaceSchemaLocation="../bin/ehcache.xsd">  
    <defaultCache overflowToDisk="true" eternal="false" maxElementsInMemory="1"/>  
    <diskStore path="D:/develop/cache" />  
</ehcache>  

  

 

Java高级架构师(一)第24节:加入ehcache,把工程加入到Git

标签:over   html   xsd   element   location   1.0   odi   space   mes   

原文地址:https://www.cnblogs.com/sunrunzhi/p/10119627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!