我的目的是:把tomcat设置的默认页面设立成我的页面
我的站点目录:zf,默认网页:index.jsp
我已经在zf的web.xml里设置成了
   <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
我在tomcat里的里的conf的server.xml里:
在<host></host>标签之间添加了:
<Context path="" docBase="link" debug="0" reloadable="true" />
然后在myEclipse中运行,成功。
问题在中间:就是在运行里时候,在控制台下出现的文字是红色的,里面有这个警告:
警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
我想问下,这个debug是什么意思,我能不能去掉?