Jboss7中如何设置crossContext和enptySessionPath?

发布于 2024-12-22 15:04:58 字数 219 浏览 2 评论 0原文

我正在尝试将一些应用程序的部署从 tomcat 6 迁移到 jboss-as 7。

这些项目已经实现了单点登录机制,为了工作,需要在tomcat context.xml 文件和 server.xml 中连接器配置中的emptySessionPath="true"。

如何在jboss7中模仿这些设置?我知道jboss使用修改后的tomcat作为servlet容器,但我一直找不到任何这些设置。

I am trying to migrate the deployment of some applications from tomcat 6 to jboss-as 7.

A single sign-on mechanism has been implemented for these projects, which, in order to work, needs to have crossContext="true" set in the tomcat context.xml file and emptySessionPath="true" in the connector configuration found within server.xml.

How can these settings be mimicked in jboss7? I know that jboss uses a modified tomcat as a servlet container, but I have been unable to find any of these settings.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丶情人眼里出诗心の 2024-12-29 15:04:58

发现这个: http://community.jboss.org/message/617186

不确定它是否有效尽管...

Found this: http://community.jboss.org/message/617186

Not sure if it works though...

超可爱的懒熊 2024-12-29 15:04:58

JBoss 7.1 支持的 Servlet 3.0 规范允许在 web.xml 中指定会话 cookie 路径。只需将此片段放入您想要共享其上下文的所有战争中即可:

<session-config>
    <cookie-config>
        <path>/</path>
    </cookie-config>
</session-config>

Servlet 3.0 specification supported by JBoss 7.1 allows specification of session cookie path in web.xml. Just put this fragment to all of your wars whose context you want to be shared:

<session-config>
    <cookie-config>
        <path>/</path>
    </cookie-config>
</session-config>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文