このWEB-INFのweb.xmlファイル
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<filter>
<filter-name>LoginFilter</filter-name>
<filter-class>glpi.filter.LoginFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>LoginFilter</filter-name>
<url-pattern>/index.jsp</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.Apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>/login.jsp</welcome-file>
</welcome-file-list>
</web-app>
コンテキストローダーリスナーが不足していると思います(スプリングコンテキストファイルを選択するため)。
これをweb.xmlに追加します
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
また、初期のWeb設定セクション@ http://static.springsource.org/spring/docs/2.0.xをチェックアウトすることもできます/reference/beans.html
Load-on-startup = 1に設定されたContextLoaderServletとDispatcherServletの両方があります。つまり、どちらか一方が最初に起動でき、最初にContextLoaderServletを起動する必要があることを意味します。したがって、ContextLoaderServletの起動時のロードを1のままにして、DispatcherServletを2以上に変更します。
実際、リスナーが適切に動作しない本当に古いコンテナを使用している場合を除き、サーブレットの代わりに ContextLoaderListener を使用することをお勧めします。
Web.xmlファイルに次のコードを追加します。bcsはロードするcontexを探すため、最初に宣言する必要があります。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/HelloWeb-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
私は最近同じ問題に出くわしましたが、workingTomcat全体をコピーしたため、誤設定が原因ではないことを確信していました別のマシンからのインストール。それでも、私は同じ例外を受け取り続けました:
Java.lang.IllegalStateException: No WebApplicationContext found: not in a DispatcherServlet request and no ContextLoaderListener registered?
最終的にわかったように、アプリケーションを壊したのは間違ったJVMバージョンでした:これはJava 7を使用していましたが、作業インスタンス(およびwebapp)はオンJava 8。
この直感に反するエラーメッセージに苦しんでいる人の助けになることを願っています。