用于春季启动项目的jsp-config

时间:2019-12-25 09:00:19

标签: java spring spring-boot jsp

我曾经制作过header.jspf文件,并在jsp-configuration中使用web.xml,如下所示:

header.jspf:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>

web.xml:

<jsp-config>
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <include-prelude>/WEB-INF/views/common/header.jspf</include-prelude>
    </jsp-property-group>
</jsp-config>

由于没有web.xml,因为我现在正在使用spring boot 2.2.2 有什么建议可以这样做吗?预先谢谢你!

0 个答案:

没有答案