При деплое получаю следующую ошибку со статусом 500:
java.lang.IllegalArgumentException: The resource path [/../webapp/WEB-INF/spring/appServlet/servlet-context.xml] has been normalized to [null] which is not valid
По какой причине это могло произойти? Я не верно настраивал servlet-context?
Как я понял, файл не прошел валидацию.
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
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">
<context:component-scan base-package="ru.goestowork" />
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" >
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jspx" />
</beans:bean>
<resources mapping="/resources/**" location="/resources/" />
<annotation-driven />
</beans:beans>