一、采用配置文件的方式配置
例如:
将tomcat-6.0.30.rar解压到D:Program Files目录,并将pas.xml文件拷贝到D:Program Files tomcat-6.0.30confCatalinalocalhost目录。(Tomcat的部署方式有多种,这里我们采用配置文件的方式部署,即上面用到的pas.xml配置文件。wx:输入pas可以访问到项目,如果配置了这个项目发布的时候发布的是另一个项目那么是访问不到的。)
<Context docBase="D: iancomworkspaceTAPASWebRoot" privileged="true" antiResourceLocking="false" antiJARLocking="false" useHttpOnly="true"></Context>
这样输入pas就可以访问tapas项目了,然后走web.xml配置文件访问首页。这样的好处是项目可以直接用tomcat发布项目
二、web.xml文件配置
打http://localhost:8080/ssh这样他就会打开index.jsp,因为这样他会默认找WebRoot下面的index.jsp,这个是在web.xml中配置welcome-file。
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>