我曾经制作过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
有什么建议可以这样做吗?预先谢谢你!