Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道为什么 JSP 指令被称为指令?
JSP中有三个指令:
<%@ page ... %> <%@ include ... %> <%@ taglib ... %>
关于它们如何被称为指令的任何见解?
指令是将消息中继到 JSP 容器并影响其编译 JSP 页面的方式的元素。换句话说,JSP 指令为容器提供方向和指令,告诉它如何处理 JSP 处理的某些方面。
现在,如果有人给容器提供了这么多的指示,那么为什么在逻辑上不被称为指令!