How to include Prelude.jspf in java config spring boot

Asked

Viewed 122 times

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?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.