mardi 3 novembre 2015

JSP Page not found

I have suspicious problem with WildFly (8.1 or 9.0 without difference). When I deploy app to server, everything compile ok, but when put url in browser i receive "Not Found" message and log:

[org.springframework.web.servlet.PageNotFound] (default task-48) No mapping found for HTTP request with URI 

and main part of my web.xml file:

 <servlet>
    <servlet-name>autodealer-dispatcher</servlet-name>
    <servlet-class>
                       org.springframework.web.servlet.DispatcherServlet
                </servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>autodealer-dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
  <listener>
    <listener-class>
          org.springframework.web.context.ContextLoaderListener
                </listener-class>
  </listener>


   <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>

            /WEB-INF/applicationContext.xml
        </param-value>
    </context-param>

    <servlet>
            <servlet-name>jsp</servlet-name>
            <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
            <init-param>
                <param-name>development</param-name>
                <param-value>true</param-value>
            </init-param>
            <load-on-startup>2</load-on-startup>
        </servlet>

      <servlet-mapping>
        <servlet-name>jsp</servlet-name>

            <url-pattern>/WEB-INF/pages/*</url-pattern>
    </servlet-mapping>
    <jsp-config>
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <page-encoding>UTF-8</page-encoding>
    </jsp-property-group>
    </jsp-config> 

Most strange is that configuration work correctly on Jboss 7.1.1 final. Thanks for help!

Aucun commentaire:

Enregistrer un commentaire