<?xml version = "1.0" encoding = "UTF-8"?> <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/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/context/spring-mvc.xsd "> <!-- scan all the packages to identify all the controller --> <context:component-scan base-package="net.aymwus.onlineshopping.controller" /> <!-- configure the InternalResource View Resolver --> <bean id="viewResolver" class="InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/" /> <property name="suffix" value=".jsp"></property> </bean> <!-- load static resource --> <mvc:annotation-driven /> <mvc:resource location="/assets/" mapping="/resource/**" /> </beans>
, когда я пытаюсь загрузить статический ресурс и определить его
mvc: на основе аннотации
я получаю эту ошибку. Хорошо, я хочузагрузить статический ресурс, но я не могу этого сделать. Может кто-нибудь объяснить, как решить эту проблему?