Я получаю следующую ошибку в моих журналах:
Причина: org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: соответствующий шаблон подстановки является строгим, нодля элемента 'mvc: resources' невозможно найти объявление.
Это появляется, когда я пытаюсь просмотреть свое приложение в браузере:
Ошибка 500: javax.servlet.ServletException: SRVE0207E: Необработанное исключение инициализации, созданное сервлетом
Вот мой 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 не загружается.
<mvc:resources
Редактировать: возможно, у меня возникли другие проблемы, потому что теперь я 'я не получаю эту ошибку, хотя мое приложение не появляется - я просто получаю 404. Я действительно получаю это в журнале, который выглядит многообещающе:
SimpleUrlH и я org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler Сопоставленный путь URL [/ resources / **] к обработчику 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler # 0'
Вы сделали ошибку в объявлении пространства имен в spring-servlet.xml. Пожалуйста, измените:
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.
(...)/schema/spring-mvc
В итоге я следовал этому руководству , создав новый проект Spring Template Project с использованием шаблона Spring MVC Project. Затем я создал EAR (новый проект корпоративных приложений в Rational Application Developer), который включал мой новый проект Spring MVC. Развернул EAR на мою WAS 7, все нормально. Я помещаю свои файлы CSS и JavaScript в src / main / webapp / resources и связываю их с моими представлениями с помощью resources/stylesheet.css. Проект шаблона поставляется с уже настроенным каталогом ресурсов.
resources/stylesheet.css
Я заметил, что его контекстный файл ссылается на http://www.springframework.org/schema/mvc в xmlns и xsi:schemaLocation, а не http://www.springframework.org/schema/mvc/spring-mvc, как я делал в xsi:schemaLocation, поэтому я думаю, ответ Петра , вероятно, правильный.
http://www.springframework.org/schema/mvc
xsi:schemaLocation
http://www.springframework.org/schema/mvc/spring-mvc