当前位置: 代码迷 >> Web前端 >> Java开发工具上载
  详细解决方案

Java开发工具上载

热度:138   发布时间:2012-09-23 10:28:11.0
Java开发工具下载

1、tomact    http://tomact.apache.org大笑

配置tomact的端口号:

    <Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />

conf/server.xml 大概是70行左右

让tomact列出web根路径下的所有页面

<init-param>
            <param-name>listings</param-name>
            <param-value>false</param-value>
        </init-param>

false改为true

conf/web.xml  103行左右

 

  相关解决方案