com.google.apphosting.api.DeadlineExceededException: This request (0f20277dbc01399e) started at 2011/07/30 16:48:24.109 UTC and was still executing at 2011/07/30 16:48:54.931 UTC.
Uncaught exception from servlet
org.apache.xerces.parsers.ObjectFactory$ConfigurationError: Provider org.apache.xerces.parsers.XIncludeAwareParserConfiguration could not be instantiated: com.google.apphosting.api.DeadlineExceededException: This request (a58ff55da93c9c6a) started at 2011/07/30 17:28:38.326 UTC and was still executing at 2011/07/30 17:29:07.985 UTC.
estou usando objectify e spring no projeto, alguém já teve isso ou o que pode ser?
--
You received this message because you are subscribed to the Google Groups "caelum-vraptor" group.
To view this discussion on the web visit https://groups.google.com/d/msg/caelum-vraptor/-/iyfnhcMVdTgJ.
To post to this group, send email to caelum-...@googlegroups.com.
To unsubscribe from this group, send email to caelum-vrapto...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/caelum-vraptor?hl=en.
--
You received this message because you are subscribed to the Google Groups "caelum-vraptor" group.
To view this discussion on the web visit https://groups.google.com/d/msg/caelum-vraptor/-/iyfnhcMVdTgJ.
To post to this group, send email to caelum-...@googlegroups.com.
To unsubscribe from this group, send email to caelum-vrapto...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/caelum-vraptor?hl=en.
<context-param>
<param-name>br.com.caelum.vraptor.provider</param-name>
<param-value>br.com.suaapp.vraptor.CustomProvider</param-value>
</context-param>
<context-param>
<param-name>br.com.caelum.vraptor.scanning</param-name>
<param-value>disabled</param-value>
</context-param>
<servlet>
<servlet-name>appstats</servlet-name>
<servlet-class>com.google.appengine.tools.appstats.AppstatsServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>appstats</servlet-name>
<url-pattern>/appstats/*</url-pattern>
</servlet-mapping>
<filter>
<filter-name>appstats</filter-name>
<filter-class>com.google.appengine.tools.appstats.AppstatsFilter</filter-class>
<init-param>
<param-name>logMessage</param-name>
<param-value>Appstats available: /appstats/details?time={ID}</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>appstats</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
public class CustomVRaptor extends VRaptor {
@Override
public void doFilter(ServletRequest req, ServletResponse res,
FilterChain chain) throws IOException, ServletException {
String uri = ((HttpServletRequest)req).getRequestURI();
if (uri.startsWith("/_ah") || uri.startsWith("/appstats")) {
chain.doFilter(req, res);
} else {
super.doFilter(req, res, chain);
}
}
}
e alterar no webxml:
<filter>
<filter-name>vraptor</filter-name>
<filter-class>br.com.suaapp.vraptor.CustomVRaptor</filter-class>
</filter>