我需要将我的网址映射到spring mvc中
www.xyz.com \管理员\ addProduct命令, www.xyz.com \ ADMIN \ usermanagement, www.xyz.com \管理员\报告,
我在我的web.xml中试过
<url-pattern>/</url-pattern>
我也读过上一篇关于此的文章 Spring MVC url-mapping
但是当我在dispatcher-servlet.xml文件中添加mvc资源时,我收到以下错误
此行找到多个注释: - 配置问题:找不到元素[resources]的资源:文件的BeanDefinitionParser [d:/STS-3.0-Workspace/Sale365/WebContent/WEB-INF/dispatcher-
的BeanDefinitionParser
servlet.xml中] - 找不到元素[resources]
调度-servlet.xml中
<context:component-scan base-package="com.company" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
<mvc:annotation-driven /> <mvc:resources mapping="/res/**" location="/admin/" />
答案 0 :(得分:0)
您不应将资源/ **映射到您在Spring控制器中映射的相同URL。
在控制器中,您将映射/ admin / usermanagement,/ admin / report映射到spring方法,同时将资源定义到/ admin / path。
更改:
<mvc:resources mapping="/res/**" location="/admin/" />
到存储静态资源的其他路径。例如/ WebContent / resources
<mvc:resources mapping="/res/**" location="/resources/" />
如果有效,请告诉我。