lvhaowen的gravatar头像
lvhaowen 2016-08-13 09:52:26

java web项目登不上去了,为什么抛出No mapping found for HTTP request with URI的错误?

  • WARN - No mapping found for HTTP request with URI [/qlestore/views/sysadmin/saveLogin.htm] in DispatcherServlet with name 'estore'

  •  

    web.xml

     

       
        <servlet>
            <servlet-name>estore</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <init-param>
                <param-name>contextConfigLocation</param-name>
                <param-value>classpath:config/estore-servlet.xml</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
        </servlet>

        <servlet-mapping>
            <servlet-name>estore</servlet-name>
            <url-pattern>*.htm</url-pattern>
        </servlet-mapping>
        
     

  •  

    estore.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.1.xsd"
        default-autowire="byName">

        <!--排除扫描的包, 对web包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能 -->
        <context:component-scan base-package="com.qlestore.cms">
            <context:include-filter type="regex"
                expression="com.qlestore.cms.*.web.*" />
        </context:component-scan>

        <mvc:annotation-driven>
            <mvc:message-converters>
                <bean
                    class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
                    <property name="objectMapper" ref="customObjectMapper"></property>
                </bean>
            </mvc:message-converters>
        </mvc:annotation-driven>


        <!--添加拦截器,类级别的处理器映射 -->
        <mvc:interceptors>
            <bean class="com.qlestore.cms.common.util.SystemInterceptor" />
        </mvc:interceptors>
        <!-- 支持文件上传 -->
        <bean id="multipartResolver"
            class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="defaultEncoding" value="UTF-8" />
            <property name="maxUploadSize">  
                <value>104857600</value>  
            </property>  
            <property name="maxInMemorySize">  
                <value>4096</value>  
            </property>
        </bean>

        <!-- 异常处理 -->
        <bean id="exceptionResolver"
            class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
            <property name="defaultErrorView">
                <value>errorPages/error</value>
            </property>
            <property name="defaultStatusCode">
                <value>500</value>
            </property>
            <property name="warnLogCategory">
                <value>org.springframework.web.servlet.handler.SimpleMappingExceptionResolver
                </value>
            </property>
            <property name="exceptionMappings">
                <props>
                    <prop
                        key="org.springframework.web.multipart.MaxUploadSizeExceededException">errorPages/maxUploadExceeded</prop>
                </props>
            </property>
        </bean>

        <!-- 视图解析类 -->
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="viewClass"
                value="org.springframework.web.servlet.view.JstlView" />
            <property name="prefix" value="/views/" />
            <property name="suffix" value=".jsp" />
        </bean>
    </beans>

     

所有回答列表(2)
lvhaowen的gravatar头像
lvhaowen  LV20 2016年8月15日

已解决

评论(0) 最佳答案
wentao的gravatar头像
wentao  LV24 2016年8月14日

可有controller的映射的地址不?

最近浏览
wscjwacs  LV2 2022年3月30日
ssssss123 2021年5月13日
暂无贡献等级
hitlerqq 2021年1月9日
暂无贡献等级
iamfgtbb 2020年11月15日
暂无贡献等级
somuns 2020年3月13日
暂无贡献等级
1838681743  LV1 2019年8月5日
liujun099302392332 2019年7月24日
暂无贡献等级
1360561942 2018年8月5日
暂无贡献等级
李朝磊  LV18 2018年5月3日
houchun  LV1 2018年3月27日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友