У меня есть приложение Spring MVC, которое я собрал.Вывод или артефакт - файл WAR.Файл WAR успешно развернут в WildFly.Но когда я делаю вызов API, он выдает внутреннюю ошибку сервера.Ниже изменений, которые я сделал, до этого изменения API-вызовы работали нормально.
mvc-dispatcher-servlet.xml
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.xsd ">
<cache:annotation-driven cache-manager="ehCacheManager"/>
<bean id="ehCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
<property name="cacheManager">
<bean class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="/WEB-INF/ehcache.xml" />
</bean>
</property>
</bean>
pom.xml
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
В чем может быть ошибка?Как я могу отладить и посмотреть, что вызывает ошибку?Я не вижу никаких файлов журналов, связанных с этим.