<%@ include file="head.jsp" %>:inlcude指令 写在include.jsp文件中
<jsp:include page="head.jsp"/>inlucde行为
区别:
指令:是把head.jsp的源代码添加到include.jsp中 然后编译成一个class文件,属于先包含,后编译
行为:则是运行时单独执行head.jsp 然后把执行结果包含到include.jsp中,属于先运行后包含行为。
<%@ include file="head.jsp" %>:inlcude指令 写在include.jsp文件中
<jsp:include page="head.jsp"/>inlucde行为
区别:
指令:是把head.jsp的源代码添加到include.jsp中 然后编译成一个class文件,属于先包含,后编译
行为:则是运行时单独执行head.jsp 然后把执行结果包含到include.jsp中,属于先运行后包含行为。