Hibernate/Ehcache Integration.
Integration for Ehcache into Hibernate as a second-level caching service.
Here is the list of declaration for hibernate-ehcache. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-ehcache</artifactId> <version>4.3.6.Final</version> </dependency>
If you think this Maven repository POM file listing for hibernate-ehcache is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License
URL: http://www.gnu.org/licenses/lgpl-2.1.html.
The hibernate-ehcache-4.3.6.Final has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | jboss-logging 3.1.3.GA The JBoss Logging Framework | 73 |
JPA Hibernate | hibernate-core 4.3.6.Final The core O/RM functionality as provided by Hibernate | 10 |
Cache | ehcache-core 2.4.3 This is the ehcache core module. Pair it with other modules for added functionality. | 17 |
The following packages are defined in the hibernate-ehcache-4.3.6.Final.jar
org.hibernate.cache.ehcache org.hibernate.cache.ehcache.internal.nonstop org.hibernate.cache.ehcache.internal.regions org.hibernate.cache.ehcache.internal.strategy org.hibernate.cache.ehcache.internal.util org.hibernate.cache.ehcache.management.impl
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.hibernate</groupId> <artifactId>hibernate-ehcache</artifactId> <version>4.3.6.Final</version> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>3.1.3.GA</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <version>1.2.0.Beta1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>4.3.6.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache-core</artifactId> <version>2.4.3</version> <scope>compile</scope> </dependency> </dependencies> <name>Hibernate/Ehcache Integration</name> <description>Integration for Ehcache into Hibernate as a second-level caching service</description> <url>http://hibernate.org</url> <organization> <name>Hibernate.org</name> <url>http://hibernate.org</url> </organization> <issueManagement> <system>jira</system> <url>https://hibernate.atlassian.net/browse/HHH</url> </issueManagement> <scm> <url>http://github.com/hibernate/hibernate-orm</url> <connection>scm:git:http://github.com/hibernate/hibernate-orm.git</connection> <developerConnection>scm:git:git@github.com:hibernate/hibernate-orm.git</developerConnection> </scm> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> <comments>See discussion at http://hibernate.org/license for more details.</comments> <distribution>repo</distribution> </license> </licenses> </project>