java.lang.IllegalStateException 예외 해결
최근에 xwiki를 디버깅할 때java를 만났어요.lang.Illegal State Exception 이상, 구글에서baidu
분석을 통해 jdk 문서를 보고 드디어 해결 방안을 찾았습니다.response.sendRedirect("") 메서드에 return 문을 추가하면 됩니다.
프로그램에서 response를 두 번 호출했기 때문입니다.sendRedirect("") 방법
j2ee5.0의 설명:
sendRedirect
void sendRedirect(java.lang.String location)
throws java.io.IOException
Sends a temporary redirect response to the client using the specified redirect location URL. This method can accept relative URLs; the servlet container must convert the relative URL to an absolute URL before sending the response to the client. If the location is relative without a leading '/' the container interprets it as relative to the current request URI. If the location is relative with a leading '/' the container interprets it as relative to the servlet container root.
If the response has already been committed, this method throws an IllegalStateException. After using this method, the response should be considered to be committed and should not be written to.
Parameters:
location
- the redirect location URL Throws:
java.io.IOException
- If an input or output exception occurs java.lang.IllegalStateException
- If the response was committed or if a partial URL is given and cannot be converted into a valid URL
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.