我似乎无法让 Weblogic 的会话复制工作。我在 web.xml 中进行了设置,以便所有请求都需要管理员凭据:
<security-constraint>
<web-resource-collection>
<web-resource-name>redirect</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>Admin</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>FORM</auth-method>
<realm-name>myrealm</realm-name>
<form-login-config>
<form-login-page>
/login.jsp
</form-login-page>
<form-error-page>
/login.jsp
</form-error-page>
</form-login-config>
</login-config>
在我的 weblogic.xml 中,我设置了:
<session-descriptor>
<persistent-store-type>replicated_if_clustered</persistent-store-type>
</session-descriptor>
我的测试用例是两台托管服务器。
- 导航到我的网页。
- 关闭一台托管服务器。(我当前连接的那个)
- 发生故障转移,我被要求提供我的凭据。
我希望故障转移能够顺利进行,而无需我重新登录。