1
I am migrating a Spring MVC 3 application to Spring boot, this application had its web.xml with the Prelude.jspf configuration where it contained all the jsps JSTL Imports. I want to migrate this xml configuration to java config but found no reference. Follow web configuration.xml
<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 idea?