首页 > 解决方案 > Tomcact 404 error after deploying my WAR into Tomcat

问题描述

I have deployed my WAR into Tomcat 8.5.32 and getting 404 error after successful deployment.

This is a GWT application using spring security and Maven.

I have checked my context path,URL pattern and the index.jsp is having redirection to my . The flow is also as expected.

<display-name>*21 Portal</display-name>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/spring/infrastructure.xml,
        /WEB-INF/spring/resource.xml,
        /WEB-INF/spring/integration.xml,
        /WEB-INF/spring/service.xml,
        /WEB-INF/spring/security.xml
    </param-value>
</context-param>

Getting the error shown below:

404 Error
404 /dzd/login.htm Page Not Available or Internal Error
Please Contact Administrator

what went wrong and what i missed which has resulted in this above error.

标签: javatomcatgwt

解决方案


推荐阅读