728x90
반응형
개발을 하다가 갑자기 특정 페이지에 들어가는데 이클립스 로그창에 이런 메세지가 나오더니 페이지 에러가 났다. -_-;
The code of method _jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) is exceeding the 65535 bytes limit |
구글링을 해보니 JVM의 Method Size 는 64K로 제한이 된다고 글들이 써있었다.
일단 해결 방법은 서버에 있는 web.xml에 아래와 같이 설정해주면 된다.
- <servlet>
- <servlet-name>jsp</servlet-name>
- <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
- <init-param>
- <param-name>mappedfile</param-name>
- <param-value>false</param-value>
- </init-param>
- </servlet>
JVM spec : Limitations of the Java Virtual Machine
위 링크로 들어가보면 어떤것들을 포함해서 64K로 제한되어있는지 설명이 되어있다.. 물론 영어로.
728x90
반응형
'Development > Java' 카테고리의 다른 글
Mybatis 동적쿼리 사용시 NuberFormatException:For input String 해결방법 (0) | 2014.10.30 |
---|---|
util.Date vs sql.Date 차이 (0) | 2014.07.01 |
Reflection 활용한 값 비교 (0) | 2013.11.13 |
Integer.paserInt 를 사용한 진법 변환 (0) | 2013.11.12 |
Null Object 사용 (0) | 2013.07.05 |