0

STRUTS-SPRING 統合の起動中に致命的なエラーが発生しました* *** Spring リスナーが Web アプリ用に構成されていないようです! WebApplicationContextUtils が有効な ApplicationContext を返すまで、何も機能しません。以下を web.xml に追加する必要がある場合があります。

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
4

3 に答える 3

1

追加してみましたか...

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

あなたのweb.xmlに?エラーはかなり明確に見えます。

于 2013-03-26T11:37:17.560 に答える
1
Looks like the Spring listener was not configured for your web app! Nothing will work until WebApplicationContextUtils returns a valid ApplicationContext. You might need to add the following to web.xml: org.springframework.web.context.ContextLoaderListener

これ以上明確になることはありません。に a を追加して、起動時にアプリ コンテキストを取得ContextLoaderListenerします。web.xml

あなたの質問は何ですか?

于 2013-03-26T11:37:37.167 に答える