当前位置 : 主页 > 编程语言 > java >

在哪个阶段评估JSP JSTL?

来源:互联网 收集:自由互联 发布时间:2021-06-25
我知道JSP页面的生命周期,但我想知道我什么时候开始使用JSTL.我的问题是这个JSTL标签评估的JSP生命周期的哪个阶段?例如,在jsp转换阶段或服务阶段. 在 translation phase Custom tags are conver
我知道JSP页面的生命周期,但我想知道我什么时候开始使用JSTL.我的问题是这个JSTL标签评估的JSP生命周期的哪个阶段?例如,在jsp转换阶段或服务阶段. 在 translation phase

Custom tags are converted into calls to the tag handler that implements the custom tag.

当您执行该JSP(在成功编译(转换)之后发生)时,它们实际运行并将输出呈现为响应.

网友评论