У меня есть сервлет, который выполняет всю бэкэнд-выборку и передает данные для рендеринга jsp.
request.setAttribute("name", "ASDADAS");
request.getRequestDispatcher("/home.jsp").forward(request, response);
, а внутри моего home.jsp я назвал значение
<%= request.getAttribute("name")%>
но я получаю ошибку ниже
java.io.IOException: Error - getOutputStream() called on a request that has already returned a Writer - enable debug logging on com.isomorphic.servlet.ProxyHttpServletResponse to see a stack trace of the previous caller.