Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
5.2. Run JBoss Data Grid (Library Mode)
Use the provided instructions to run Red Hat JBoss Data Grid with Maven in Library mode.
- Add the following mandatory dependency to the
pom.xml
file:<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-core</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-core</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Add the desired dependencies from the following to the
pom.xml
file:- Embedded query dependency:
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - JDBC Cache Store dependency:
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-cachestore-jdbc</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-cachestore-jdbc</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - JPA Cache Store dependency:
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-cachestore-jpa</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-cachestore-jpa</artifactId> <version>6.1.0.Final-redhat-4</version> </dependency>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - LevelDB Cache Store Dependency:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note
For the LevelDB Cache Store dependency, ensure that you have the same version ofleveldbjni-all
as specified in the JBoss Data Grid maven repository.