Java开发工具下载

来源:互联网 发布:java面向对象项目 编辑:程序博客网 时间:2024/06/09 19:14

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行左右

 

原创粉丝点击