본문 바로가기
728x90

JSP6

jstl 대 소문자 ${fn:toLowerCase(list.col_name)} ${fn:toUpperCase(list.col_name)} 이렇게 넣어주기만 하면 값이 나옵니다 ex) ${list.col_name} = Korea 1. 소문자 변환 : ${fn:toLowerCase(list.col_name)} = korea 2. 대문자 변환 : ${fn:toUpperCase(list.col_name)} = KOREA 2022. 12. 7.
getOutputStream() has already been called for this response out.clear(); 심각: Servlet.service() for servlet [jsp] in context with path [] threw exception [java.lang.IllegalStateException: getOutputStream() has already been called for this response] with root cause java.lang.IllegalStateException: getOutputStream() has already been called for this response jsp 안에 out.clear(); 입력 2020. 4. 7.
jar check [Example] Document Builder Factory - org.apache.xerces.jaxp.DocumentBuilderFactoryImpl SAX Parser Factory - org.apache.xerces.jaxp.SAXParserFactoryImpl Transformer Factory - org.apache.xalan.processor.TransformerFactoryImpl (ex) javax.servlet.http.HttpServlet [Search Result] 2016. 8. 25.
페이지 이동 1. 포워드(forward) - request스코프에 담긴값이 유효하다.(request,response가 유지된다.) - 이동된 url이 화면에 안보인다.(사용자는 이동했는지 알수없음) - 포워드하는 방법 1) pageContext.forward("이동할페이지"); 2) ; 3) RequestDispatcher rd = request.getRequestDispatcher("이동할페이지"); rd.forward(request,response); 2. 리다이렉트(redirect) - 클라이언트가 새로 페이지를 요청한 것과 같은 방식으로 페이지가 이동됨. request, response가 유지되지 않는다.(새로 만들어짐.) - 이동된 url이 화면에 보인다. - 리다이렉트 하는 방법 response.sendR.. 2015. 10. 26.
728x90