一、Web项目的启动位置在哪?【类是main()的地方】
我: 默认从index.html出开始。 不过可以从服务器那边配置修改来改变启动位置。
IIS服务器设定的欢迎页面是 main.asp
比如tomcat服务器里也可以在web.xml设定
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
第一种格式就是默认打开index.html,如果改成main.html则是打开main.html
二、