I am trying to understand how exactly scope
attribute in jsp:useBean
JSP action tag works. In my understanding scope
is used to indicate where the bean is located (request,session,application etc.), but after some testing I came across an interesting situation where it's not the case, please consider the following JSP code (I am using scriplets here just for the sake of simplicity):
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" import="package2JSP.User" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Title</title>
</head>
<body>
<%
User user1 = new User("id1","name1");
User user2 = new User("id2","name2");
request.setAttribute("user", user1);
session.setAttribute("user", user2);
%>
<%-- Here I expect to create user bean that represents user2 from session scope--%>
<jsp:useBean id="user" class="package2JSP.User" scope="session"/>
<%-- Here I expect user name to be name2 but it is name1 instead--%>
<jsp:getProperty property="name" name="user"/>
</body>
</html>
So basically here I created 2 users objects and set them as "user" attributes in request and session scopes, when I tried to retrieve "user" from "session" scope using jsp:useBean
it seems as if "user" from "request" scope was retrieved.
Can you please explain me why it happened? And what was the development reason to make jsp:useBean
work this way instead of normally selecting the attribute from the specified scope, are there any advantages of it?
Now I know I could use JSTL/EL to retrieve the needed value i.e. <c:out value="${sessionScope.user.name}" />
but I just want to know how jsp:useBean
works.
In this situation are 2 tags involved:
The jsp:useBean
According to Specification - CHAPTER JSP.5 - JSP.5.1
<jsp:useBean>
:The compiled java code is:
If you want to access this user object you can use a scriptlet(expression)
<%=user.getName()%>
The jsp:getProperty
According to Specification - CHAPTER JSP.5 - JSP.5.3
<jsp:getProperty>
say:The JSP Compiler make from the
jsp:getProperty
tag a call to thefindAttribute()
:Basically: the first match is returned.
Using
useBean
andgetProperty
is considered bad practice.Using JSTL/EL is the better way to work with attributes.