Error 404 - Not Found Spring MVC application

1

I'm getting the error

  

Error 404 - Not Found: The server has not found anything matching the Request-URI

When trying to access any url of my application, the strange thing is that the index.jsp page works normally, including loading the resources that I set in springmv-servlet.xml .

Project structure:

+ siebelutilities
+-- WebContent/
  +-- META-INF/
  +-- resources/
  +-- WEB-INF/
    +-- jsp/
     +-- lib/
     +-- springmvc-servlet.xml
     +-- tiles.xml
     +-- web.xml
     +-- weblogic.xml

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>siebelutilities</display-name>
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <listener>
        <listener-class>org.apache.tiles.extras.complete.CompleteAutoloadTilesListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>Tiles Dispatch Servlet</servlet-name>
        <servlet-class>org.apache.tiles.web.util.TilesDispatchServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Tiles Dispatch Servlet</servlet-name>
        <url-pattern>*.tiles</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

springmvc-servlet.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:p="http://www.springframework.org/schema/p"  
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.1.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

    <context:component-scan base-package="com.eduardo.siebutil.service" />

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <mvc:resources mapping="/resources/**" location="/resources/" cache-period="31556926" />
    <mvc:annotation-driven />
</beans>

I am @RequestMapping like this:

@RequestMapping(value = "/account/create")
public ModelAndView create() {
    ModelAndView model = new ModelAndView("/account/create");

    return model;
}
    
asked by anonymous 28.09.2015 / 22:04

1 answer

1

Resolved, but strangely, I detected a% of% of a lib I did not have in my import and eclipse did not accuse me of this error ( classpath ). When I made a change in The import xxx cannot be resolved I did an update of the maven project and it was detected there, so I made a Project > Clean and my pages are being called.

    
28.09.2015 / 22:41