精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (1)
|
|
---|---|
作者 | 正文 |
发表时间:2011-02-14
最后修改:2011-02-14
在配置spring - mvc 的时候,有针对resource资源的配置
<!-- http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-static-resources --> <mvc:resources mapping="/static/**" location="/static/" />
该配置的xml命名空间为:
<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:p="http://www.springframework.org/schema/p"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
但是eclipse 在 <mvc:resources mapping="/static/**" location="/static/" /> 这行中总是报错,提示:
cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for
element 'mvc:resources'.
问题小,但是工程有个错误提示总是不爽,具体解决如下:
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-02-22
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
下载替换MyEclipse里面的就可以了 |
|
返回顶楼 | |
发表时间:2011-02-23
AnnBaby 写道 http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 下载替换MyEclipse里面的就可以了 不知道为什么我的帖子样式会变成这样。 我的文章就是描述怎么找到该mvc.xsd文件 |
|
返回顶楼 | |
浏览 4724 次