java.lang.IllegalStateException異常產生的緣由及解決辦法

問題描述:web

在進行ssh框架整合的時候,引入struts測試的action的時候出現的問題spring

解決辦法:app

這是由於沒有找到WebApplicationContext這個配置文件,no ContextLoaderListener registered缺乏監聽器,在web.xml配置中配置監聽器就能夠了框架

  <!-- 讓spring在系統啓動時開始工做 -->
  <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
ssh

這樣就解決這個問題了測試

相關文章
相關標籤/搜索