Tomcat 的 server.xml 的 JBoss 等价物是什么?
我正在运行一个部署在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认的 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.在 jboss-4.2.2.GA 中,我在以下位置找到了它:
服务器/默认/部署/jboss-web.deployer/
In jboss-4.2.2.GA I found it at :
server/default/deploy/jboss-web.deployer/