Byte limit Exceed problem when reloading a jsp page?

前端 未结 7 1873
日久生厌
日久生厌 2020-12-06 07:38

Im new to jsp.I\'m getting error is The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit

I am using s

7条回答
  •  隐瞒了意图╮
    2020-12-06 08:09

    When you run Jsp, by default it converts into java code. And in Java, only 65K code can be accommodated inside an single try catch loop. So don't put much code in a single jsp, instead you can import the number of Jsp files into an single jsp file. or else use JSTL.

提交回复
热议问题