I have an GAE + Java + Spring app, with very simple controller:
@RequestMapping(value = ['/_warmup', '/_ah/warmup'])
@ResponseBody
String warmup() {
return 'OK'
}
It just return string, and when i call this url from a browser I get it without a problem.
Btw, when it deployed on GAE, and when it called by gae, i see following exception in logs:
java.lang.IllegalStateException: WRITER
at org.mortbay.jetty.Response.getOutputStream(Response.java:594)
at javax.servlet.ServletResponseWrapper.getOutputStream(ServletResponseWrapper.java:102)
at org.springframework.http.server.ServletServerHttpResponse.getBody(ServletServerHttpResponse.java:64)
at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:99)
at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:1)
at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:181)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter$ServletHandlerMethodInvoker.writeWithMessageConverters(AnnotationMethodHandlerAdapter.java:975)
at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter$ServletHandlerMethodInvoker.handleResponseBody(AnnotationMethodHandlerAdapter.java:933)
As I see, I uses same message converter, but always got illegal state of Jetty. Anybody had same issue?
PS when i'm trying to open this url from browser, on production server, it works too. This happens only when this url is called by GAE (cron or warmup request)
public String warmup()declaration? Is there some other error occuring that is writing to the output? – Fly Dec 15 '11 at 4:40