Почему файл ресурсов не загружается в spring-mvc - PullRequest
0 голосов
/ 03 апреля 2019

Я добавил ниже тег mvc: resource в servlet.xml, но Мое приложение не получает файл ресурсов. Я пытаюсь разработать приложение Spring mvc на основе XML. почему файл ресурса не загружается?

    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd">

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

    <bean name="/welcome.htm" 
        class="com.debasish.common.controller.HelloWorldController" />
    <mvc:resources location="/resources/" mapping="/test/**"></mvc:resources>
    <mvc:annotation-driven></mvc:annotation-driven>
</beans>

1 Ответ

1 голос
/ 03 апреля 2019

как уже упоминалось здесь попробуйте изменить порядок отображения и местоположение, как это

<mvc:resources mapping="/client/**" location="/optimized-scripts/visualize/" />
<mvc:annotation-driven />
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...