2

JSF Web アプリケーションを 2 つのノードを持つ「ドメイン」クラスタにデプロイしようとしています。

ノード間で複製された HTTP セッションを取得できません。

web.xmlを構成しました

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

    <session-config>
        <session-timeout>30</session-timeout>
    <tracking-mode>URL</tracking-mode>
    </session-config>

  <distributable></distributable>

</web-app>

およびjboss-web.xml

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
    <context-root>thumbzup-admin</context-root>

    <!--replication-config>
      <replication-trigger>SET_AND_NON_PRIMITIVE_GET</replication-trigger>
      <replication-granularity>SESSION</replication-granularity>
    </replication-config-->
  <replication-config>
    <cache-name>custom-session-cache</cache-name>
    <replication-trigger>SET</replication-trigger>
    <replication-granularity>ATTRIBUTE</replication-granularity>
    <!--replication-field-batch-mode>true</replication-field-batch-mode-->
    <use-jk>false</use-jk>
    <max-unreplicated-interval>30</max-unreplicated-interval>
    <snapshot-mode>INSTANT</snapshot-mode>
    <snapshot-interval>1000</snapshot-interval>
    <replication-mode>SYNCHRONOUS</replication-mode>
    <!--session-notification-policy>com.example.CustomSessionNotificationPolicy</session-notification-policy-->
  </replication-config>
</jboss-web>

domain.xml内の Infinispan Cache Container ;

<cache-container name="web" aliases="standard-session-cache" default-cache="repl" module="org.jboss.as.clustering.web.infinispan">
                    <transport lock-timeout="60000"/>
                    <replicated-cache name="repl" mode="ASYNC" batching="true">
                        <file-store/>
                    </replicated-cache>
                    <replicated-cache name="sso" mode="SYNC" batching="true"/>
                    <distributed-cache name="dist" l1-lifespan="0" mode="ASYNC" batching="true">
                        <file-store/>
                    </distributed-cache>
                </cache-container>

しかし、NODE2 で同じ SESSIONID を使用すると、NODE1 で作成されたセッションを取得できません。

助言がありますか?

4

1 に答える 1

2

jboss-web.xml で定義した「custom-session-cache」という名前は、domain.xml 内のどのキャッシュにも一致しないようです。「web」コンテナの「default-cache」プロパティの値を使用するには、 「 cache-name 」プロパティを完全に削除するか、その名前のキャッシュ エントリを追加します。

于 2014-09-11T11:21:10.107 に答える