Spring5.0升级到5.3的配置变动,路径404

web.xml映射配置变为/,不再是.action。

Controller映射必须加.action或.do,页面路径中才能写后缀.action或.do,否则404。不会自动识别.action后缀。

版本变动害死人!

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <display-name>Archetype Created Web Application</display-name>
    
    <welcome-file-list>
        <welcome-file>/index.action</welcome-file>
    </welcome-file-list>
    

    <!-- post乱码过虑器 -->
    <filter>
        <filter-name>CharacterEncodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>utf-8</param-value>
        </init-param>
    </filter>

    <filter-mapping>
        <filter-name>CharacterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>




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

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

    
</web-app>

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


    <context:component-scan base-package="com.shopping"/>

    <mvc:annotation-driven />

    <mvc:annotation-driven conversion-service="conversionService"/>

    <!-- mapping是在相对项目根目录的路径,location是资源在webapp下的绝对路径。
    第一行的意思是:页面中写 src="js/xxxx.js",就会去/WEB-INF/ui/js/文件夹下查找xxxx.js。
    当然src="js/xxxx.js"最终生成的完整路径必须相对于项目根路径,因为js父目录即为项目根目录。
    最好使用前述相对路径写法,写src="<c:url value='/js/xxxx.js'/>"也可以,但编程时点不过去。
    好处是所有的html资源全部在/WEB-INF/ui/下,编程时相对路径好引用;执行时全部拦截,后缀随意,@Controller中映射配置好即可。
    且.jsp必须过Controller就可以加附带功能,静态页面又可以直接过。
    <script type="application/javascript" src="js/hello.js"></script>
    <script type="application/javascript" src="<c:url value='/js/hello.js'/>"></script>
    生成
    <script type="application/javascript" src="js/hello.js"></script>
    <script type="application/javascript" src="/demo04_war_exploded/js/hello.js"></script>
    注意web.xml中的url-pattern不是/*,是/。
    -->
    <mvc:resources mapping="js/**"      location="/WEB-INF/ui/js/" />
    <mvc:resources mapping="image/**"   location="/WEB-INF/ui/image/" />
    <mvc:resources mapping="css/**"     location="/WEB-INF/ui/css/" />
    <mvc:resources mapping="dtree/**"   location="/WEB-INF/ui/dtree/" />


    <!-- 视图解析器。定义跳转的文件的前后缀 ,视图模式配置 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 这里的配置我的理解是自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->
        <property name="prefix" value="/WEB-INF/ui/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

    <!-- 配置文件上传,如果没有使用文件上传可以不用配置,当然如果不配,那么配置文件中也不必引入上传组件包 -->
    <bean id="multipartResolver"
          class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!-- 默认编码 -->
        <property name="defaultEncoding" value="utf-8"/>
        <!-- 文件大小最大值 -->
        <property name="maxUploadSize" value="10485760000"/>
        <!-- 内存中的最大值 -->
        <property name="maxInMemorySize" value="40960"/>
    </bean>


    <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <list>
                <bean class="com.shopping.controller.converter.CustomDateConverter"/>
            </list>
        </property>
    </bean>
</beans>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

rosyouth

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值