一劳永逸地启用 JSTL 支持 JSP 个页面(不是在 "per-every-single-page" 基础上)

Enable JSTL support once and for all JSP pages (not on "per-every-single-page" basis)

为了在我的所有 JSP 页面中启用 JSTL 支持,我需要在每个页面中插入 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 标记。

是否可以写一次声明,使我项目中的每个 JSP 页都默认启用 jstl?

我可以创建 JSP 页面的模板,但我需要为之前创建的许多 JSP 页面启用 jstl 支持(然后我将编辑它们)。

你不能,你必须在每个页面上声明库 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>,没有任何神奇的配置文件可以为你实现这个。但是,您可以更轻松地在 JSP 中插入此行。