Question: Given the two snippets of code, what will be displayed in the following scenario : (In Controller.java) request.getSession().setAttribute(data,dataBean); (In edit.jsp) Your hobby is ${param.hobby}

Given the two snippets of code, what will be displayed in the following scenario :

(In Controller.java)

request.getSession().setAttribute("data",dataBean);

(In edit.jsp)

<html>

<body>

Your hobby is  <p>${param.hobby}</p>

</body>

</html>

Step by Step Solution

3.43 Rating (159 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The question is incomplete because it lacks information o... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!