Java开发工具下载

时间:2021-11-15 15:13:20

1、tomact    http://tomact.apache.orgJava开发工具下载

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