0

私が構築したSpring MVCアプリケーションがあります。出力またはアーティファクトは WAR ファイルです。WAR ファイルが WildFly に正常にデプロイされます。しかし、API を呼び出すと、Internal Server Error がスローされます。私が行った変更の下では、この変更の前に 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>

エラーは何ですか?エラーの原因をデバッグして確認するにはどうすればよいですか? これに関連するログ ファイルを確認できません。

4

0 に答える 0