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.
检索以下所有范围中存在相同属性键的属性值的优先顺序是什么
例如,
以下将是什么输出
<c:out value="test"/>
如果属性定义为
session.setAttribute("test", "Session"); request.setAttribute("test", "Request"); pageContext.setAttribute("test", "Page");
?
它总是从较小的范围到更广泛的范围:页面、请求、会话、应用程序。
请参阅PageContext.findAttribute()。
因此,在您的示例中,将显示“页面”。