我的日志中出现以下错误:
引起:org.xml.sax.SAXParseException:cvc-complex-type.2.4.c:匹配的通配符是strict,但是找不到元素'mvc:resources'的声明。
当我尝试在浏览器中查看我的应用程序时显示:
错误500:javax.servlet.ServletException:SRVE0207E:servlet创建的未捕获的初始化异常
这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app
id="WebApp_ID"
version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>MyAwesomeApp</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
这是我的spring-servlet.xml:
<?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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc/spring-mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan
base-package="org.myapp.controllers" />
<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/views/" />
<property
name="suffix"
value=".jsp" />
</bean>
<mvc:resources
mapping="/resources/**"
location="/resources/" />
</beans>
我做错了什么?如果我取出<mvc:resources
标记,我的应用就会显示,但其CSS不会加载。
编辑:也许我还有其他问题,因为现在我没有收到这个错误,虽然我的应用程序没有显示 - 我只是得到了404.我确实得到了现在这在日志中,看起来很有希望:
SimpleUrlHand I org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler将映射的URL路径[/ resources / **]映射到处理程序'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
答案 0 :(得分:2)
您在spring-servlet.xml
中的命名空间声明中出错了。
请改变:
xsi:schemaLocation="
(...)
http://www.springframework.org/schema/mvc/spring-mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
(...)"
为:
xsi:schemaLocation="
(...)
http://www.springframework.org/schema/mvc/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
(...)"
因为你声明了
xmlns:mvc="http://www.springframework.org/schema/mvc"
不是(...)/schema/spring-mvc
。
答案 1 :(得分:0)
我最终关注this tutorial,使用Spring MVC Project模板创建了一个新的Spring模板项目。然后我创建了一个EAR(Rational Application Developer中的新企业应用程序项目),其中包括我的新Spring MVC项目。将EAR部署到我的WAS 7,一切都很好。我将我的CSS和JavaScript文件放在src / main / webapp / resources中,并使用resources/stylesheet.css
在我的视图中链接到它们。模板项目附带了一个已设置的资源目录。
我确实注意到它的上下文文件在xmlns和http://www.springframework.org/schema/mvc
中都引用了xsi:schemaLocation
,而不是http://www.springframework.org/schema/mvc/spring-mvc
中引用xsi:schemaLocation
,所以我认为{{ 3}}可能是正确的。