Согласно подсказке ptomli , определяющей бин MockServletContext
, добиваться цели.
<bean class="org.springframework.mock.web.MockServletContext"/>
Другая проблема, которая появилась, была tileConfigurer , которая неработа:
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tilesConfigurer' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NullPointerException
Soultion: отделить конфигурацию плиток от applicationContext.xml и не использовать плитки в тестах jUnit.
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:applicationContext.xml
classpath:tilesConfig.xml
</param-value>
</context-param>
</web-app>