HTTP Status 500 - Unable to compile class for JSP: 오류
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
오류시
[Tomcat_Home]/conf/web.xml 파일에 JspServlet에 init-param을 추가해 준다.
이클립스의 경우 server등록한 파일에 web.xml이 있습니다.
<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
위의 코드를 아래에 추가
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>fork</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>
추가 후 tomcat 재기동 하여 해결 완료!
'웹개발 > 오류' 카테고리의 다른 글
jsp에서 html태그 노란줄, (section, nav, article 오류) (0) | 2017.04.20 |
---|---|
크롬 오류 Failed to load resource :: ERR_CONNECTION_RESET (0) | 2017.04.18 |
리눅스 vi 비정상 종료시 .swp 삭제 (1) | 2017.04.12 |
Putty 한글 깨짐 (0) | 2017.04.12 |
eclipse workspace in use error (0) | 2017.03.30 |