FAIL - Application at context path /Hello could not be started

前端 未结 6 2335
無奈伤痛
無奈伤痛 2021-02-19 09:25

I\'m trying to deploy new web application in Tomcat 6.0, but whenever I click on start button, I repeatedly getting FAIL - Application at context path /Hello could not

6条回答
  •  清酒与你
    2021-02-19 09:48

    I've had the same problem, was missing a slash in servlet url in web.xml

    replace

    
        jsonservice
        jsonservice
    
    

    with

    
        jsonservice
        /jsonservice
    
    

提交回复
热议问题