组织ID: |
net.sf.ehcache |
项目ID: |
ehcache-core |
版本: |
1.7.2 |
最后修改时间: |
2018-08-03 21:10:29 |
包类型: |
jar |
标题: |
Ehcache Core |
描述: |
This is the ehcache core module. Pair it with other modules for added functionality |
大小: |
264.88KB |
|
Maven引入代码: |
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>1.7.2</version>
</dependency>
|
Gradle引入代码: |
net.sf.ehcache:ehcache-core:1.7.2
|
下载Jar包: |
|
POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-parent</artifactId>
<version>2.0</version>
</parent>
<name>Ehcache Core</name>
<description>This is the ehcache core module. Pair it with other modules for added functionality</description>
<artifactId>ehcache-core</artifactId>
<packaging>jar</packaging>
<version>1.7.2</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<net.sf.ehcache.speedAdjustmentFactor>5</net.sf.ehcache.speedAdjustmentFactor>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.5.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.hibernate</groupId>
<artifactId>hibernate</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<scope>provided</scope>
<version>3.2.6.ga</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>${basedir}/src/main/config/jcache</directory>
</testResource>
<testResource>
<directory>${basedir}/src/test/resources</directory>
</testResource>
</testResources>
<filters>
<filter>${project.build.directory}/filter.properties</filter>
</filters>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
<executions>
<execution>
<id>compile_for_javadoc</id>
<phase>pre-site</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3</version>
<configuration>
<author>true</author>
<bottom>true</bottom>
<header><![CDATA[<a href="/" target="_top">ehcache</a>]]></header>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<overview>${basedir}/src/main/java/net/sf/ehcache/overview.html</overview>
<use>true</use>
<version>true</version>
<windowtitle>${project.name} ${project.version} API</windowtitle>
</configuration>
<executions>
<execution>
<id>generate-javadoc</id>
<phase>pre-site</phase>
<goals>
<goal>javadoc</goal>
</goals>
<configuration>
<doclet>ydoc.doclets.YStandard</doclet>
<docletPath>
${ydoc.home}/lib/ydoc.jar${path.separator}${ydoc.home}/lib/class2svg.jar${path.separator}${ydoc.home}/resources
</docletPath>
<additionalparam>-license ${ydoc.license} -filter ydoc.filters.ExcludeFilter -filterpath
${ydoc.home}/lib/ydoc.jar -umlautogen
</additionalparam>
<author>true</author>
<bottom>true</bottom>
<header><![CDATA[<a href="/" target="_top">ehcache</a>]]></header>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<overview>${basedir}/src/main/java/net/sf/ehcache/overview.html</overview>
<use>true</use>
<version>true</version>
<windowtitle>${project.name} ${project.version} API</windowtitle>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.0-beta-3</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>rmic</id>
<phase>compile</phase>
<configuration>
<tasks>
<rmic base="${project.build.outputDirectory}"
includes="**/RMICachePeer.class" compiler="forking">
</rmic>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>singlepageguide</id>
<phase>pre-site</phase>
<configuration>
<tasks>
<ant target="singlepageguide"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>unhide_embedded_html</id>
<phase>site</phase>
<configuration>
<tasks>
<ant target="unhide_html"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>copy_ehcache.xml</id>
<phase>site</phase>
<configuration>
<tasks>
<ant target="copy_ehcache.xml"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>build_info</id>
<phase>generate-resources</phase>
<configuration>
<tasks>
<mkdir dir="${project.build.directory}"/>
<tstamp>
<format property="last.updated"
pattern="yyyy-MM-dd hh:mm:ss"/>
</tstamp>
<echo file="${project.build.directory}/filter.properties"
message="build.time=${last.updated}${line.separator}"/>
<echo file="${project.build.directory}/filter.properties" append="true"
message="build.revision=${buildNumber}${line.separator}"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/*$*</exclude>
<exclude>**/Abstract*Test.java</exclude>
<exclude>**/RMICacheReplicatorWithLargePayloadTest.java</exclude>
</excludes>
<forkMode>pertest</forkMode>
<debugForkedProcess>true</debugForkedProcess>
<childDelegation>false</childDelegation>
<disableXmlReport>false</disableXmlReport>
<printSummary>true</printSummary>
<reportFormat>plain</reportFormat>
<redirectTestOutputToFile>false</redirectTestOutputToFile>
<systemProperties>
<property>
<name>net.sf.ehcache.skipUpdateCheck</name>
<value>true</value>
</property>
<property>
<name>java.awt.headless</name>
<value>true</value>
</property>
<property>
<name>
net.sf.ehcache.speedAdjustmentFactor
</name>
<value>
${net.sf.ehcache.speedAdjustmentFactor}
</value>
</property>
</systemProperties>
</configuration>
<executions>
<execution>
<id>large-heap-test-execution</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
<excludes>
<exclude>**/*$*</exclude>
</excludes>
<includes>
<include>**/RMICacheReplicatorWithLargePayloadTest.java</include>
</includes>
<argLine>-Xms512m -Xmx512m</argLine>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>${basedir}/checkstyle/checkstyle.xml</configLocation>
<suppressionsLocation>${basedir}/checkstyle/suppressions.xml</suppressionsLocation>
<headerLocation>${basedir}/checkstyle/ClassHeader.txt</headerLocation>
<enableRSS>false</enableRSS>
<linkXRef>true</linkXRef>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>false</includeTestSourceDirectory>
<enableRulesSummary>true</enableRulesSummary>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<templateFile>${basedir}/src/site/default-site-ehcache.vm</templateFile>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<filters>
<filter>src/assemble/filter.properties</filter>
</filters>
<descriptors>
<descriptor>src/assemble/distribution.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>project-team</report>
<report>mailing-list</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.1</version>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}/site</outputDirectory>
<docTitle>ehcache</docTitle>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>sourceforge-releases</id>
<name>Sourceforge Release Repository</name>
<url>http://oss.sonatype.org/content/repositories/sourceforge-releases</url>
</repository>
<snapshotRepository>
<id>sourceforge-snapshots</id>
<name>Sourceforge Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</url>
</snapshotRepository>
<site>
<id>ehcache.org</id>
<name>EHCache Site</name>
<url>dav:https://echache-stage.terracotta.lan/export1/ehcache.org</url>
</site>
</distributionManagement>
<scm>
<connection>scm:svn:http://svn.terracotta.org/svn/ehcache/trunk</connection>
<developerConnection>scm:svn:https://svn.terracotta.org/repo/ehcache/trunk</developerConnection>
<tag/>
</scm>
<issueManagement>
<system>Terracotta's JIRA</system>
<url>https://jira.terracotta.org/jira/browse/EHC</url>
</issueManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
net.sf.ehcache.Ehcache.class
net.sf.ehcache.Cache$1.class
net.sf.ehcache.util.MemoryEfficientByteArrayOutputStream.class
net.sf.ehcache.util.NamedThreadFactory.class
net.sf.ehcache.util.counter.sampled.SampledRateCounter.class
net.sf.ehcache.util.counter.sampled.TimeStampedCounterValue.class
net.sf.ehcache.util.counter.sampled.SampledRateCounterConfig.class
net.sf.ehcache.util.counter.sampled.SampledCounterImpl$1.class
net.sf.ehcache.util.counter.sampled.SampledCounterImpl.class
net.sf.ehcache.util.counter.sampled.SampledCounter.class
net.sf.ehcache.util.counter.sampled.SampledCounterConfig.class
net.sf.ehcache.util.counter.sampled.SampledRateCounterImpl.class
net.sf.ehcache.util.counter.CounterManagerImpl.class
net.sf.ehcache.util.counter.CounterImpl.class
net.sf.ehcache.util.counter.CounterManager.class
net.sf.ehcache.util.counter.Counter.class
net.sf.ehcache.util.counter.CounterConfig.class
net.sf.ehcache.util.PropertyUtil.class
net.sf.ehcache.util.ProductInfo.class
net.sf.ehcache.util.TimeUtil.class
net.sf.ehcache.util.CircularLossyQueue.class
net.sf.ehcache.util.UpdateChecker.class
net.sf.ehcache.util.FailSafeTimer.class
net.sf.ehcache.util.ClassLoaderUtil.class
net.sf.ehcache.DefaultElementEvictionData.class
net.sf.ehcache.event.RegisteredEventListeners.class
net.sf.ehcache.event.CacheEventListenerFactory.class
net.sf.ehcache.event.CacheManagerEventListener.class
net.sf.ehcache.event.CacheEventListener.class
net.sf.ehcache.event.CacheManagerEventListenerFactory.class
net.sf.ehcache.event.CacheManagerEventListenerRegistry.class
net.sf.ehcache.store.Policy.class
net.sf.ehcache.store.LfuPolicy.class
net.sf.ehcache.store.DiskStore.class
net.sf.ehcache.store.FifoPolicy.class
net.sf.ehcache.store.DiskStore$1.class
net.sf.ehcache.store.StoreFactory.class
net.sf.ehcache.store.DiskStore$DiskElement.class
net.sf.ehcache.store.DiskStore$SpoolAndExpiryThread.class
net.sf.ehcache.store.MemoryStore.class
net.sf.ehcache.store.AbstractPolicy.class
net.sf.ehcache.store.LruPolicy.class
net.sf.ehcache.store.MemoryStoreEvictionPolicy.class
net.sf.ehcache.store.Store.class
net.sf.ehcache.store.LruMemoryStore$SpoolingLinkedHashMap.class
net.sf.ehcache.store.LruMemoryStore.class
net.sf.ehcache.Cache$2.class
net.sf.ehcache.concurrent.ReadWriteLockSync$1.class
net.sf.ehcache.concurrent.ConcurrencyUtil.class
net.sf.ehcache.concurrent.LockType.class
net.sf.ehcache.concurrent.CacheLockProvider.class
net.sf.ehcache.concurrent.ReadWriteLockSync.class
net.sf.ehcache.concurrent.StripedReadWriteLockSync.class
net.sf.ehcache.concurrent.Sync.class
net.sf.ehcache.exceptionhandler.CacheExceptionHandler.class
net.sf.ehcache.exceptionhandler.ExceptionHandlingDynamicCacheProxy.class
net.sf.ehcache.exceptionhandler.CacheExceptionHandlerFactory.class
net.sf.ehcache.management.CacheConfigurationMBean.class
net.sf.ehcache.management.CacheStatistics.class
net.sf.ehcache.management.sampled.SampledEhcacheMBeans.class
net.sf.ehcache.management.sampled.SampledMBeanRegistrationProvider.class
net.sf.ehcache.management.sampled.SampledCacheMBean.class
net.sf.ehcache.management.sampled.SampledCacheManager.class
net.sf.ehcache.management.sampled.SampledCacheManagerMBean.class
net.sf.ehcache.management.sampled.SampledCache.class
net.sf.ehcache.management.CacheConfiguration.class
net.sf.ehcache.management.Cache.class
net.sf.ehcache.management.CacheManager.class
net.sf.ehcache.management.CacheStatisticsMBean.class
net.sf.ehcache.management.CacheManagerMBean.class
net.sf.ehcache.management.provider.MBeanRegistrationProviderFactory.class
net.sf.ehcache.management.provider.MBeanRegistrationProviderImpl.class
net.sf.ehcache.management.provider.MBeanRegistrationProvider.class
net.sf.ehcache.management.provider.MBeanRegistrationProviderFactoryImpl.class
net.sf.ehcache.management.provider.MBeanRegistrationProviderException.class
net.sf.ehcache.management.provider.NullMBeanRegistrationProvider.class
net.sf.ehcache.management.provider.MBeanRegistrationProviderImpl$1.class
net.sf.ehcache.management.CacheMBean.class
net.sf.ehcache.management.ManagementService.class
net.sf.ehcache.MimeTypeByteArray.class
net.sf.ehcache.Cache$3.class
net.sf.ehcache.CacheManager$1.class
net.sf.ehcache.ObjectExistsException.class
net.sf.ehcache.Cache.class
net.sf.ehcache.TerracottaStoreHelper.class
net.sf.ehcache.config.CacheConfiguration$BootstrapCacheLoaderFactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration$CacheEventListenerFactoryConfiguration.class
net.sf.ehcache.config.Configuration$Monitoring.class
net.sf.ehcache.config.BeanHandler.class
net.sf.ehcache.config.BeanHandler$ElementInfo.class
net.sf.ehcache.config.FactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration$CacheExceptionHandlerFactoryConfiguration.class
net.sf.ehcache.config.DiskStoreConfiguration.class
net.sf.ehcache.config.CacheConfiguration.class
net.sf.ehcache.config.InvalidConfigurationException.class
net.sf.ehcache.config.TerracottaConfiguration$ValueMode.class
net.sf.ehcache.config.CacheConfiguration$CacheLoaderFactoryConfiguration.class
net.sf.ehcache.config.Configuration.class
net.sf.ehcache.config.TerracottaConfiguration.class
net.sf.ehcache.config.ConfigurationHelper.class
net.sf.ehcache.config.TerracottaConfigConfiguration.class
net.sf.ehcache.config.DiskStoreConfiguration$Env.class
net.sf.ehcache.config.ConfigurationFactory.class
net.sf.ehcache.config.CacheConfiguration$CacheExtensionFactoryConfiguration.class
net.sf.ehcache.Status.class
net.sf.ehcache.constructs.web.ShutdownListener.class
net.sf.ehcache.constructs.blocking.UpdatingCacheEntryFactory.class
net.sf.ehcache.constructs.blocking.SelfPopulatingCache.class
net.sf.ehcache.constructs.blocking.UpdatingSelfPopulatingCache.class
net.sf.ehcache.constructs.blocking.CacheEntryFactory.class
net.sf.ehcache.constructs.blocking.LockTimeoutException.class
net.sf.ehcache.constructs.blocking.BlockingCache.class
net.sf.ehcache.Statistics.class
net.sf.ehcache.loader.CacheLoader.class
net.sf.ehcache.loader.CacheLoaderFactory.class
net.sf.ehcache.CacheManager.class
net.sf.ehcache.ElementEvictionData.class
net.sf.ehcache.extension.CacheExtensionFactory.class
net.sf.ehcache.extension.CacheExtension.class
net.sf.ehcache.statistics.LiveCacheStatisticsImpl.class
net.sf.ehcache.statistics.LiveCacheStatisticsWrapper.class
net.sf.ehcache.statistics.sampled.NullSampledCacheStatistics.class
net.sf.ehcache.statistics.sampled.SampledCacheStatisticsImpl.class
net.sf.ehcache.statistics.sampled.SampledCacheStatisticsWrapper.class
net.sf.ehcache.statistics.sampled.SampledCacheStatistics.class
net.sf.ehcache.statistics.LiveCacheStatisticsData.class
net.sf.ehcache.statistics.LiveCacheStatistics.class
net.sf.ehcache.statistics.NullLiveCacheStatisticsData.class
net.sf.ehcache.statistics.CacheUsageListener.class
net.sf.ehcache.hibernate.SingletonEhCacheProvider.class
net.sf.ehcache.hibernate.EhCacheProvider.class
net.sf.ehcache.hibernate.EhCache.class
net.sf.ehcache.CacheException.class
net.sf.ehcache.Element.class
net.sf.ehcache.distribution.PayloadUtil.class
net.sf.ehcache.distribution.CacheManagerPeerListenerFactory.class
net.sf.ehcache.distribution.RMIAsynchronousCacheReplicator.class
net.sf.ehcache.distribution.CachePeer.class
net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory.class
net.sf.ehcache.distribution.ConfigurableRMIClientSocketFactory.class
net.sf.ehcache.distribution.RMICacheReplicatorFactory.class
net.sf.ehcache.distribution.RMIBootstrapCacheLoader.class
net.sf.ehcache.distribution.CacheReplicator.class
net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
slf4j-api-1.5.8.jar
/org.slf4j/slf4j-api/1.5.8
查看slf4j-api所有版本文件
slf4j-jdk14-1.5.8.jar
/org.slf4j/slf4j-jdk14/1.5.8
查看slf4j-jdk14所有版本文件
slf4j-log4j12-1.5.8.jar
/org.slf4j/slf4j-log4j12/1.5.8
查看slf4j-log4j12所有版本文件
slf4j-simple-1.5.8.jar
/org.slf4j/slf4j-simple/1.5.8
查看slf4j-simple所有版本文件
slf4j-jdk14-1.5.8.jar
/org.slf4j/slf4j-jdk14/1.5.8
查看slf4j-jdk14所有版本文件
junit-4.4.jar
/junit/junit/4.4
查看junit所有版本文件
hibernate-3.2.6.ga.jar
/org.hibernate/hibernate/3.2.6.ga
查看hibernate所有版本文件
doxia-site-renderer-1.0.jar
/org.apache.maven.doxia/doxia-site-renderer/1.0
查看doxia-site-renderer所有版本文件
|