如何在我的 WEB 应用程序中启用 infinispan 缓存?
How to enable infinispan cache in my WEB application?
问题是:
我有一个 Dynamic Web Application
,那里有一个 sessions
列表作为静态字段,我现在正在处理将来可能出现的集群问题。
我想将我的静态 HashMap
移动到一个可以独立于服务器访问的地方,换句话说,一旦我有 2 个服务器,一个有静态 HashMap
死亡,其他服务器应该能够使用 infinispan
缓存恢复 HashMap
, 不会因服务器故障而丢失。
所以,我尝试的是实现一些 EmbededCacheManager
和一些 CashContainers
,但在大多数情况下,我遇到的问题是我根本无法添加 infinispan
jar 到我的项目,并使用该死的缓存。
找了一圈,没找到给自己的WEB项目添加依赖的方法。网上的所有教程,例如这个:http://infinispan.org/docs/stable/getting_started/getting_started.html,都在使用 Maven,但我没有。我需要一个 Maven 免费解决方案。
此外,我的代码:
static List<Session> sessions = new ArrayList<Session>();
以及我想从事的工作:
@Resource(lookup = "java:jboss/infinispan/container/myCache")
public CacheContainer myCache;
但我就是做不对。
我在网上搜索了一下,发现我需要在 MANIFEST.MF 文件中将 infinispan 依赖项添加到我的项目中,一旦我这样做了:
Manifest-Version: 1.0
Dependencies: org.infinispan export
我将我的 manifest
文件夹添加到 src\META-INF 文件夹(我也创建了那个文件夹,因为它不在那里),现在我可以导入 infinispan.cache
但是,我无法构建我的整个项目,它总是在我的 standalone.xml
文件中显示一些错误,在我添加的部分。
代码如下:
<subsystem xmlns="urn:jboss:domain:infinispan:4.0">
<cache-container name="myCache" default-cache="default" module="org.wildfly.clustering.server">
<transport lock-timeout="60000"/>
<replicated-cache name="sessions" mode="SYNC">
</replicated-cache>
</cache-container>
...
<\subsystem>
在控制台中,WildFly 10 顺便说一句,是一行显示出现问题的行和列,问题出在第 2 行和第 4 列(我不知道第 4 列在哪里是,因为在 standalone.xml 中,前几个字符是制表符...?)
希望您能解决我的问题,因为我不知道下一步该怎么做。
谢谢。
好的,我按照您的步骤做了一些改动,
Java:
@Resource(lookup = "java:jboss/infinispan/container/myCache")
public CacheContainer myCache;
Standalone.xml
<replicated-cache name="sessions" mode="SYNC">
<transaction mode="BATCH"/> //added this line
</replicated-cache>
此外,在同一个 standalone.xml
文件中,我遇到了 jgroup
子系统
缺少依赖项的错误
<subsystem xmlns="urn:jboss:domain:jgroups:4.0">
这个解决方案,我在 standalone-full-ha.xml 中找到了你需要的关于 jgroups
的所有依赖项,并将它们全部复制到 standalone.xml
(我推荐 Total Commander 来完成这个任务,他有内置的工具来比较两个文件)
你的MANIFEST.MF
文件是正确的,他在src/META-INF文件夹中的位置也是正确的。
我曾经遇到过类似的问题 infinispan
,所有这些都与 Maven 及其依赖项一起工作,但有一个解决方法。
你需要去wildfly
文件夹,在那里你会找到文件夹module\system\layers\base\org\infinispan\main
在那里你会找到这个文件:infinispan-core-8.2.4.Final(也许是其他版本)
然后你必须去:
Wildfly\module\system\layers\base\org\infinispan\commons\main
在那里你会找到这个文件:infinispan-commons-8.2.4.Final(也许是其他版本)
这些文件是 您的 wildfly
使用的(显然 :)),并且它们具有您需要的正确版本的 infinispan
函数。
将这两个文件复制到 WEB/WebContent/WEB-INF/lib(我相信你那里还有其他 jar)
如果还有其他 infinispan
罐子,请将其删除,因为使用与服务器相同的版本很重要。
完成后,您可以执行以下操作:
Java:
private List<Session> sessions() {
Cache<Integer, List<Session>> c = myCache.getCache("sessions");
// since you List is not a HashMap, you will need to make sure that
// you get this right
List<Session> l = c.get(1); // this returns the List, but with the key 1, read all the code, you will understand
if (l != null) { // if its ok, then return the list
return l;
} else { // you need to make sure the list exist in the cache, just for the first time, all the other times, l will be different then null
l = new ArrayList<Session>(); // make an empty list
c.put(1, l); //add it to the cache
return l; // use the list as you wish
}
}
这将允许您使用直接从缓存中获取的会话列表。
希望能帮到你。否则,祝你好运,你将需要它:)
问题是:
我有一个 Dynamic Web Application
,那里有一个 sessions
列表作为静态字段,我现在正在处理将来可能出现的集群问题。
我想将我的静态 HashMap
移动到一个可以独立于服务器访问的地方,换句话说,一旦我有 2 个服务器,一个有静态 HashMap
死亡,其他服务器应该能够使用 infinispan
缓存恢复 HashMap
, 不会因服务器故障而丢失。
所以,我尝试的是实现一些 EmbededCacheManager
和一些 CashContainers
,但在大多数情况下,我遇到的问题是我根本无法添加 infinispan
jar 到我的项目,并使用该死的缓存。
找了一圈,没找到给自己的WEB项目添加依赖的方法。网上的所有教程,例如这个:http://infinispan.org/docs/stable/getting_started/getting_started.html,都在使用 Maven,但我没有。我需要一个 Maven 免费解决方案。
此外,我的代码:
static List<Session> sessions = new ArrayList<Session>();
以及我想从事的工作:
@Resource(lookup = "java:jboss/infinispan/container/myCache")
public CacheContainer myCache;
但我就是做不对。 我在网上搜索了一下,发现我需要在 MANIFEST.MF 文件中将 infinispan 依赖项添加到我的项目中,一旦我这样做了:
Manifest-Version: 1.0
Dependencies: org.infinispan export
我将我的 manifest
文件夹添加到 src\META-INF 文件夹(我也创建了那个文件夹,因为它不在那里),现在我可以导入 infinispan.cache
但是,我无法构建我的整个项目,它总是在我的 standalone.xml
文件中显示一些错误,在我添加的部分。
代码如下:
<subsystem xmlns="urn:jboss:domain:infinispan:4.0">
<cache-container name="myCache" default-cache="default" module="org.wildfly.clustering.server">
<transport lock-timeout="60000"/>
<replicated-cache name="sessions" mode="SYNC">
</replicated-cache>
</cache-container>
...
<\subsystem>
在控制台中,WildFly 10 顺便说一句,是一行显示出现问题的行和列,问题出在第 2 行和第 4 列(我不知道第 4 列在哪里是,因为在 standalone.xml 中,前几个字符是制表符...?)
希望您能解决我的问题,因为我不知道下一步该怎么做。 谢谢。
好的,我按照您的步骤做了一些改动,
Java:
@Resource(lookup = "java:jboss/infinispan/container/myCache")
public CacheContainer myCache;
Standalone.xml
<replicated-cache name="sessions" mode="SYNC">
<transaction mode="BATCH"/> //added this line
</replicated-cache>
此外,在同一个 standalone.xml
文件中,我遇到了 jgroup
子系统
<subsystem xmlns="urn:jboss:domain:jgroups:4.0">
这个解决方案,我在 standalone-full-ha.xml 中找到了你需要的关于 jgroups
的所有依赖项,并将它们全部复制到 standalone.xml
(我推荐 Total Commander 来完成这个任务,他有内置的工具来比较两个文件)
你的MANIFEST.MF
文件是正确的,他在src/META-INF文件夹中的位置也是正确的。
我曾经遇到过类似的问题 infinispan
,所有这些都与 Maven 及其依赖项一起工作,但有一个解决方法。
你需要去wildfly
文件夹,在那里你会找到文件夹module\system\layers\base\org\infinispan\main
在那里你会找到这个文件:infinispan-core-8.2.4.Final(也许是其他版本)
然后你必须去:
Wildfly\module\system\layers\base\org\infinispan\commons\main
在那里你会找到这个文件:infinispan-commons-8.2.4.Final(也许是其他版本)
这些文件是 您的 wildfly
使用的(显然 :)),并且它们具有您需要的正确版本的 infinispan
函数。
将这两个文件复制到 WEB/WebContent/WEB-INF/lib(我相信你那里还有其他 jar)
如果还有其他 infinispan
罐子,请将其删除,因为使用与服务器相同的版本很重要。
完成后,您可以执行以下操作:
Java:
private List<Session> sessions() {
Cache<Integer, List<Session>> c = myCache.getCache("sessions");
// since you List is not a HashMap, you will need to make sure that
// you get this right
List<Session> l = c.get(1); // this returns the List, but with the key 1, read all the code, you will understand
if (l != null) { // if its ok, then return the list
return l;
} else { // you need to make sure the list exist in the cache, just for the first time, all the other times, l will be different then null
l = new ArrayList<Session>(); // make an empty list
c.put(1, l); //add it to the cache
return l; // use the list as you wish
}
}
这将允许您使用直接从缓存中获取的会话列表。
希望能帮到你。否则,祝你好运,你将需要它:)