這是一種用於處理ajax請求的方法。所以輸出寫入response
IllegalStateException:調用response.getWriter時發生STREAM
public ModelAndView myAction(HttpServletRequest request, HttpServletResponse response, BindException errors) throws Exception
{
//call other methods and send the response as arg
//call getWriter on the response
}
據this doc,我一定會有一個IllegalStateException如果我叫的getWriter在已經叫的getOutputStream(),所以我懷疑方法我傳給這樣做,雖然我的反應不真的看到他們這樣做... 唯一可以肯定的是,在某些時候,其中一種方法可能會做response.sendError()。 這是否有一些如何調用getOutputStream()?
向我們展示您返回的'ModelAndView',並且如果它映射到其他資源,例如'jsp'。 –
我認爲它不一定是'ModelAndView'。我可以很好地用'void'來代替它。 – 0x56794E