一般是http://localhost:7001/MyApp
MyApp就是你部署应时用的名字

解决方案 »

  1.   

    一楼说的对,这个路径默认打开的是你的web.xml里配置页面。
    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>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    顺序打开。
      

  2.   

    默认的web-inf的上级目录是啥名字你就写啥
      

  3.   

    另外也可以在控制台看你的web应用的相关属性,Context Root就是你的应用的上下文,访问网址就是http://yourip:yourport/contextroot