多个视图解析器的优先级问题 及 jar 包冲突 <exclusions> 标签的使用

本文探讨了在Spring MVC应用中遇到的多个视图解析器优先级问题,以及如何配置和理解解析器的顺序。同时,文章也详细介绍了在解决jar包冲突时,如何利用<exclusions>标签来排除不需要的依赖,以避免NoSuchMethodError等错误的发生。
摘要由CSDN通过智能技术生成
多个视图解析器的优先级问题 ,暂时如下,有待继续深入了解
<?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: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.2.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-3.2.xsd
      http://www.springframework.org/schema/mvc
      http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">


    <!--<mvc:resources mapping="/resources/**" location="/resources/" />-->
    <!--<mvc:resources mapping="/src/**" location="/src/" />-->
    <mvc:default-servlet-handler/>

    <mvc:annotation-driven/>
    <context:component-scan base-package="com.smart.web"/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="order" value="100"/>
        <property name="prefix" value="/WEB-INF/view/"/>
        <property name="suffix" value=".jsp"/>
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值