I'm migrating a Spring MVC 3 application to Spring boot, this application had its web.xml with the prelude.jspf configuration where it contained all JSTL imports from jsps. I want to migrate this configuration from xml to java config but found no reference. Following web.xml configuration
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<page-encoding>UTF-8</page-encoding>
<include-prelude>/WEB-INF/pages/prelude.jspf</include-prelude>
</jsp-property-group>
</jsp-config>
Does anyone have any ideas?