404错误代表Tomcat正常启动,但是访问地址不正确
可能是web.xml文件配置错误
如果index.jsp放在了WEB-INF目录下,注意要在web.xml文件里设置一下主页
<welcome-file-list>
<welcome-file>/WEB-INF/index.jsp</welcome-file>
</welcome-file-list>
WebContent是新建时Dynamic Web Project时的根目录
访问index.jsp时,只需访问http://localhost:8888/TomcatTest可以了
8888是双击tomcat后
自己设置的
如果设置了主页仍然提示404,可能是web.xml的其他配置出错,先将其他的配置删除,看是否可以显示主页,再找到具体错误的地方修改