org.springframework.web.servlet.PageNotFound noHandlerFound - 找不到带URI的HTTP请求的映射

时间:2015-03-14 19:46:38

标签: java spring spring-mvc

我知道有这样的一千个问题,但我失明了,找不到错误。对于.jsp页面的此设置,一切正常(指向http://localhost:8082/spring/之后,在http://localhost:8082/spring/WEB-INF/spring/static/index.jsp页面未加载之后)。我是新手,所以我可能会误解我在做什么/

当我切换到<property name="suffix" value=".html" />时(我有2个文件index.jsp和index.html)我无法从http://localhost:8082/spring/或此http://localhost:8082/spring/WEB-INF/spring/static/index.html链接加载页面。

mar 14, 2015 8:38:07 PM org.springframework.web.servlet.PageNotFound noHandlerFound
WARNING: No mapping found for HTTP request with URI [/spring/WEB-INF/spring/static/index.html] in DispatcherServlet with name 'appServlet'

servlet的context.xml中:

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

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <mvc:annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <mvc:resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/spring/static/" />
        <property name="suffix" value=".html" />
    </bean>

    <context:component-scan base-package="net.codejava.spring" />

    <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/usersdb"/>
        <property name="username" value="root"/>
        <property name="password" value="1234"/>
    </bean> 

    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation" value="classpath:hibernate.cfg.xml" />
    </bean>

    <tx:annotation-driven />
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <bean id="userDao" class="net.codejava.spring.dao.UserDAOImpl">
        <constructor-arg>
            <ref bean="sessionFactory" />
        </constructor-arg>
    </bean>     
</beans>

HomeController中:

@Controller
public class HomeController {

    @Autowired
    private UserDAO userDao;

    @RequestMapping(value="/")
    public ModelAndView home() {
        List<User> listUsers = userDao.list();
        //ModelAndView model = new ModelAndView("home");
        ModelAndView model = new ModelAndView("index");
        model.addObject("userList", listUsers);
        return model;
    }

}

的web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

    <!-- The definition of the Root Spring Container shared by all Servlets 
        and Filters -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/root-context.xml</param-value>
    </context-param>


    <!-- Creates the Spring Container shared by all Servlets and Filters -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- Processes application requests -->
    <servlet>
        <servlet-name>appServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>appServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>

2 个答案:

答案 0 :(得分:2)

要了解问题的原因,有几点需要了解

首先,您无法直接访问 WEB-INF 下的页面,这就是直接尝试http://localhost:8082/spring/WEB-INF/spring/static/index.jsp

时未呈现JSP的原因

对于html文件的问题,问题是当你点击控制器时,会构建一个视图名称并在请求转发中使用。您的视图名称将为/WEB-INF/spring/static/index.html,它将搜索应该使用此扩展处理请求的servlet,它将失败(如果它是.jsp,它将由JSPServlet处理)。由于没有servlet能够处理请求,因此默认servlet将启动并尝试查找处理它的控制器方法,并且将失败并显示消息no mapping found for /WEB-INF/spring/static/index.html

最好的办法是将控制器的视图结果配置为JSP。否则,配置似乎适用于以下answer或尝试注册要由JSP servlet处理的html文件,如here所述

答案 1 :(得分:1)

首先 - 您的web.xml不仅仅是放在文件中。例如,在Tomcat中,您的web.xml文件与Tomcat默认web.xml合并(请参阅Tomcat的目录中的conf/web.xml)。在那里,您可以找到*.jsp形式的URL映射到JSP Servlet。

Java Web Apps在servlet方面工作(您将它们映射到web.xml中的URL)。例如,您已将DispatchServlet映射到/的网址。 这个调度servlet“神奇地”与Spring一起工作并加载你的控制器 - 并在“内部”处理它们的映射。这就是你使用@RequestMapping(value="/")的原因。

在控制器内部,您基本上可以命令将您的请求发送到名为index的视图,然后由InternalResourceViewResolver解析,形成/WEB-INF/spring/static/ + index的路径+ .jsp - 就像您在上下文的描述符文件中配置一样。

这基本上发出了一个内部调度请求(不完全是,但你现在可以这样思考) - 然后在第一次请求时使用完全相同的规则处理它 - 例如被{{1然后处理servlet然后进行处理。但是,绝不能处理*.jsp之类的请求 - 无法找到匹配规则。

要回答您的问题 - 您可以在JSP文件中放置任何HTML - 使用任何不是必需的JSP标记。 但是,如果你想真正使用普通的HTML文件而不进行任何解析 - 那么考虑使用静态资源 - 你已经在/WEB-INF/spring/static/index.html中设置了它 - 这基本上将你的/ resources /目录的内容暴露给世界而没有任何处理