尝试将.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>
任何指针都会非常感激..