Tomcat 的 server.xml 的 JBoss 等价物是什么?

发布于 2024-08-10 02:23:48 字数 473 浏览 3 评论 0原文

我正在运行一个部署在 JBoss 上的应用程序。

只有 Tomcat 的文档,没有 JBoss 的文档。

我需要更改一些连接器标记属性,如下所示:

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="100" debug="0" scheme="https" secure="true"
useURIValidationHack="false" disableUploadTimeout="true">
</Connector>

Where can I find the file equal to server.xml in JBoss?

谢谢

I am running an application which was deployed on JBoss.

There is only documentation for Tomcat, none for JBoss.

I need to change some connector tag attributes to look like so:

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="100" debug="0" scheme="https" secure="true"
useURIValidationHack="false" disableUploadTimeout="true">
</Connector>

Where can I find the file equivalent to server.xml in JBoss?

Thanks

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

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

发布评论

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

评论(2

伪心 2024-08-17 02:23:48

默认的 jboss 配置(Jboss 版本 4.2.x)文件设置在这里有详细描述:服务器配置文件集 JBoss 使用 Tomcat 作为 Web 引擎,这旨在直接配置,以便将其解压部署为文件夹(server/default/deploy/jbossweb -tomcat50.sar)而不是 JAR 文件。您可以像配置任何其他部署一样配置此 Tomcat 部署。

The default jboss configuration (Jboss version 4.2.x) file setup is well described here: Server Configuration File Set JBoss uses Tomcat as web engine, this intended to be configured directly so it is deployed un-packed as a folder (server/default/deploy/jbossweb-tomcat50.sar) rather than a JAR file. You can configure this Tomcat deployment as you would any other.

長街聽風 2024-08-17 02:23:48

在 jboss-4.2.2.GA 中,我在以下位置找到了它:
服务器/默认/部署/jboss-web.deployer/

In jboss-4.2.2.GA I found it at :
server/default/deploy/jboss-web.deployer/

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