Weblogic 12C:未找到Guice Injector

时间:2015-03-02 17:14:55

标签: java-ee weblogic guice web.xml

尝试将.war文件部署到Weblogic12C上的托管服务器时会出现以下错误:

  

引起:javax.servlet.UnavailableException:找不到Guice Injector!确保您将org.apache.shindig.common.servlet.GuiceServletContextListener注册为监听器

但是,web.xml已经有了它们(见下文):

<context-param>
        <param-name>guice-modules</param-name>
        <param-value>
            org.apache.shindig.common.PropertiesModule:
            org.apache.shindig.gadgets.DefaultGuiceModule:
            org.apache.shindig.gadgets.servlet.AuthenticationModule:
            org.apache.shindig.gadgets.oauth.OAuthModule:
            org.apache.shindig.common.cache.ehcache.EhCacheModule
        </param-value>
    </context-param>

<listener>
        <listener-class>org.apache.shindig.common.servlet.GuiceServletContextListener</listener-class>
    </listener>

任何指针都会非常感激..

0 个答案:

没有答案