Byte limit Exceed problem when reloading a jsp page?

前端 未结 7 1864
日久生厌
日久生厌 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:11

    Rather making multiple files i found above mentioned answer's solution more good i-e Adding

    
            mappedfile
            false
        
    

    into Web.XML file. but i did not found "JspServlet" in my web.XML file and found a ref link and placed the complete mapping

     
             jsp
             org.apache.jasper.servlet.JspServlet
         
                mappedfile
                 false
            
          
    

    that worked for me. hope this will help someone.

提交回复
热议问题