I'm getting the following error
_jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
I know that with Apache Tomcat the following tag in tomcat's web.xml fixes the issue
<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>
But I'm using embedded tomcat with Spring Boot. So there is no web.xml I'm not sure were this configuration will go or if there is another workaround.